blob: 159ce54bbd8d42137b1b47a4797b88aec3a6fd5e [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
53/**
54 * amdgpu_vm_num_pde - return the number of page directory entries
55 *
56 * @adev: amdgpu_device pointer
57 *
58 * Calculate the number of page directory entries (cayman+).
59 */
60static unsigned amdgpu_vm_num_pdes(struct amdgpu_device *adev)
61{
62 return adev->vm_manager.max_pfn >> amdgpu_vm_block_size;
63}
64
65/**
66 * amdgpu_vm_directory_size - returns the size of the page directory in bytes
67 *
68 * @adev: amdgpu_device pointer
69 *
70 * Calculate the size of the page directory in bytes (cayman+).
71 */
72static unsigned amdgpu_vm_directory_size(struct amdgpu_device *adev)
73{
74 return AMDGPU_GPU_PAGE_ALIGN(amdgpu_vm_num_pdes(adev) * 8);
75}
76
77/**
78 * amdgpu_vm_get_bos - add the vm BOs to a validation list
79 *
80 * @vm: vm providing the BOs
81 * @head: head of validation list
82 *
83 * Add the page directory to the list of BOs to
84 * validate for command submission (cayman+).
85 */
86struct amdgpu_bo_list_entry *amdgpu_vm_get_bos(struct amdgpu_device *adev,
87 struct amdgpu_vm *vm,
88 struct list_head *head)
89{
90 struct amdgpu_bo_list_entry *list;
91 unsigned i, idx;
92
93 list = drm_malloc_ab(vm->max_pde_used + 2,
94 sizeof(struct amdgpu_bo_list_entry));
monk.liu3d5a08c2015-05-26 10:22:41 +080095 if (!list) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -040096 return NULL;
monk.liu3d5a08c2015-05-26 10:22:41 +080097 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -040098
99 /* add the vm page table to the list */
100 list[0].robj = vm->page_directory;
101 list[0].prefered_domains = AMDGPU_GEM_DOMAIN_VRAM;
102 list[0].allowed_domains = AMDGPU_GEM_DOMAIN_VRAM;
103 list[0].priority = 0;
104 list[0].tv.bo = &vm->page_directory->tbo;
105 list[0].tv.shared = true;
106 list_add(&list[0].tv.head, head);
107
108 for (i = 0, idx = 1; i <= vm->max_pde_used; i++) {
109 if (!vm->page_tables[i].bo)
110 continue;
111
112 list[idx].robj = vm->page_tables[i].bo;
113 list[idx].prefered_domains = AMDGPU_GEM_DOMAIN_VRAM;
114 list[idx].allowed_domains = AMDGPU_GEM_DOMAIN_VRAM;
115 list[idx].priority = 0;
116 list[idx].tv.bo = &list[idx].robj->tbo;
117 list[idx].tv.shared = true;
118 list_add(&list[idx++].tv.head, head);
119 }
120
121 return list;
122}
123
124/**
125 * amdgpu_vm_grab_id - allocate the next free VMID
126 *
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400127 * @vm: vm to allocate id for
Christian König7f8a5292015-07-20 16:09:40 +0200128 * @ring: ring we want to submit job to
129 * @sync: sync object where we add dependencies
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400130 *
Christian König7f8a5292015-07-20 16:09:40 +0200131 * Allocate an id for the vm, adding fences to the sync obj as necessary.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400132 *
Christian König7f8a5292015-07-20 16:09:40 +0200133 * Global mutex must be locked!
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400134 */
Christian König7f8a5292015-07-20 16:09:40 +0200135int amdgpu_vm_grab_id(struct amdgpu_vm *vm, struct amdgpu_ring *ring,
136 struct amdgpu_sync *sync)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400137{
Christian Königd5283292015-10-22 11:55:58 +0200138 struct fence *best[AMDGPU_MAX_RINGS] = {};
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400139 struct amdgpu_vm_id *vm_id = &vm->ids[ring->idx];
140 struct amdgpu_device *adev = ring->adev;
141
142 unsigned choices[2] = {};
143 unsigned i;
144
145 /* check if the id is still valid */
Christian König1c16c0a2015-11-14 21:31:40 +0100146 if (vm_id->id) {
147 unsigned id = vm_id->id;
148 long owner;
149
150 owner = atomic_long_read(&adev->vm_manager.ids[id].owner);
151 if (owner == (long)vm) {
152 trace_amdgpu_vm_grab_id(vm_id->id, ring->idx);
153 return 0;
154 }
Christian König39ff8442015-09-28 12:01:20 +0200155 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400156
157 /* we definately need to flush */
158 vm_id->pd_gpu_addr = ~0ll;
159
160 /* skip over VMID 0, since it is the system VM */
161 for (i = 1; i < adev->vm_manager.nvm; ++i) {
Christian König1c16c0a2015-11-14 21:31:40 +0100162 struct fence *fence = adev->vm_manager.ids[i].active;
Christian Königd5283292015-10-22 11:55:58 +0200163 struct amdgpu_ring *fring;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400164
165 if (fence == NULL) {
166 /* found a free one */
167 vm_id->id = i;
168 trace_amdgpu_vm_grab_id(i, ring->idx);
Christian König7f8a5292015-07-20 16:09:40 +0200169 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400170 }
171
Christian Königd5283292015-10-22 11:55:58 +0200172 fring = amdgpu_ring_from_fence(fence);
173 if (best[fring->idx] == NULL ||
174 fence_is_later(best[fring->idx], fence)) {
175 best[fring->idx] = fence;
176 choices[fring == ring ? 0 : 1] = i;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400177 }
178 }
179
180 for (i = 0; i < 2; ++i) {
181 if (choices[i]) {
Christian Königd5283292015-10-22 11:55:58 +0200182 struct fence *fence;
Christian König7f8a5292015-07-20 16:09:40 +0200183
Christian König1c16c0a2015-11-14 21:31:40 +0100184 fence = adev->vm_manager.ids[choices[i]].active;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400185 vm_id->id = choices[i];
Christian König7f8a5292015-07-20 16:09:40 +0200186
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400187 trace_amdgpu_vm_grab_id(choices[i], ring->idx);
Christian Königd5283292015-10-22 11:55:58 +0200188 return amdgpu_sync_fence(ring->adev, sync, fence);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400189 }
190 }
191
192 /* should never happen */
193 BUG();
Christian König7f8a5292015-07-20 16:09:40 +0200194 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400195}
196
197/**
198 * amdgpu_vm_flush - hardware flush the vm
199 *
200 * @ring: ring to use for flush
201 * @vm: vm we want to flush
202 * @updates: last vm update that we waited for
203 *
204 * Flush the vm (cayman+).
205 *
206 * Global and local mutex must be locked!
207 */
208void amdgpu_vm_flush(struct amdgpu_ring *ring,
209 struct amdgpu_vm *vm,
Chunming Zhou3c623382015-08-20 18:33:59 +0800210 struct fence *updates)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400211{
212 uint64_t pd_addr = amdgpu_bo_gpu_offset(vm->page_directory);
213 struct amdgpu_vm_id *vm_id = &vm->ids[ring->idx];
Chunming Zhou3c623382015-08-20 18:33:59 +0800214 struct fence *flushed_updates = vm_id->flushed_updates;
Christian Königb56c2282015-10-29 17:01:19 +0100215 bool is_later;
Chunming Zhou3c623382015-08-20 18:33:59 +0800216
Christian Königb56c2282015-10-29 17:01:19 +0100217 if (!flushed_updates)
218 is_later = true;
219 else if (!updates)
220 is_later = false;
221 else
222 is_later = fence_is_later(updates, flushed_updates);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400223
Christian Königb56c2282015-10-29 17:01:19 +0100224 if (pd_addr != vm_id->pd_gpu_addr || is_later) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400225 trace_amdgpu_vm_flush(pd_addr, ring->idx, vm_id->id);
Christian Königb56c2282015-10-29 17:01:19 +0100226 if (is_later) {
Chunming Zhou3c623382015-08-20 18:33:59 +0800227 vm_id->flushed_updates = fence_get(updates);
228 fence_put(flushed_updates);
229 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400230 vm_id->pd_gpu_addr = pd_addr;
231 amdgpu_ring_emit_vm_flush(ring, vm_id->id, vm_id->pd_gpu_addr);
232 }
233}
234
235/**
236 * amdgpu_vm_fence - remember fence for vm
237 *
238 * @adev: amdgpu_device pointer
239 * @vm: vm we want to fence
240 * @fence: fence to remember
241 *
242 * Fence the vm (cayman+).
243 * Set the fence used to protect page table and id.
244 *
245 * Global and local mutex must be locked!
246 */
247void amdgpu_vm_fence(struct amdgpu_device *adev,
248 struct amdgpu_vm *vm,
Christian König16ae42f2015-11-03 14:53:28 +0100249 struct fence *fence)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400250{
Christian König16ae42f2015-11-03 14:53:28 +0100251 struct amdgpu_ring *ring = amdgpu_ring_from_fence(fence);
252 unsigned vm_id = vm->ids[ring->idx].id;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400253
Christian König1c16c0a2015-11-14 21:31:40 +0100254 fence_put(adev->vm_manager.ids[vm_id].active);
255 adev->vm_manager.ids[vm_id].active = fence_get(fence);
256 atomic_long_set(&adev->vm_manager.ids[vm_id].owner, (long)vm);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400257}
258
259/**
260 * amdgpu_vm_bo_find - find the bo_va for a specific vm & bo
261 *
262 * @vm: requested vm
263 * @bo: requested buffer object
264 *
265 * Find @bo inside the requested vm (cayman+).
266 * Search inside the @bos vm list for the requested vm
267 * Returns the found bo_va or NULL if none is found
268 *
269 * Object has to be reserved!
270 */
271struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
272 struct amdgpu_bo *bo)
273{
274 struct amdgpu_bo_va *bo_va;
275
276 list_for_each_entry(bo_va, &bo->va, bo_list) {
277 if (bo_va->vm == vm) {
278 return bo_va;
279 }
280 }
281 return NULL;
282}
283
284/**
285 * amdgpu_vm_update_pages - helper to call the right asic function
286 *
287 * @adev: amdgpu_device pointer
288 * @ib: indirect buffer to fill with commands
289 * @pe: addr of the page entry
290 * @addr: dst addr to write into pe
291 * @count: number of page entries to update
292 * @incr: increase next addr by incr bytes
293 * @flags: hw access flags
294 * @gtt_flags: GTT hw access flags
295 *
296 * Traces the parameters and calls the right asic functions
297 * to setup the page table using the DMA.
298 */
299static void amdgpu_vm_update_pages(struct amdgpu_device *adev,
300 struct amdgpu_ib *ib,
301 uint64_t pe, uint64_t addr,
302 unsigned count, uint32_t incr,
303 uint32_t flags, uint32_t gtt_flags)
304{
305 trace_amdgpu_vm_set_page(pe, addr, count, incr, flags);
306
307 if ((flags & AMDGPU_PTE_SYSTEM) && (flags == gtt_flags)) {
308 uint64_t src = adev->gart.table_addr + (addr >> 12) * 8;
309 amdgpu_vm_copy_pte(adev, ib, pe, src, count);
310
311 } else if ((flags & AMDGPU_PTE_SYSTEM) || (count < 3)) {
312 amdgpu_vm_write_pte(adev, ib, pe, addr,
313 count, incr, flags);
314
315 } else {
316 amdgpu_vm_set_pte_pde(adev, ib, pe, addr,
317 count, incr, flags);
318 }
319}
320
Junwei Zhang4c7eb912015-09-09 09:05:55 +0800321int amdgpu_vm_free_job(struct amdgpu_job *job)
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800322{
323 int i;
Junwei Zhang4c7eb912015-09-09 09:05:55 +0800324 for (i = 0; i < job->num_ibs; i++)
325 amdgpu_ib_free(job->adev, &job->ibs[i]);
326 kfree(job->ibs);
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800327 return 0;
328}
329
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400330/**
331 * amdgpu_vm_clear_bo - initially clear the page dir/table
332 *
333 * @adev: amdgpu_device pointer
334 * @bo: bo to clear
Chunming Zhouef9f0a82015-11-13 13:43:22 +0800335 *
336 * need to reserve bo first before calling it.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400337 */
338static int amdgpu_vm_clear_bo(struct amdgpu_device *adev,
339 struct amdgpu_bo *bo)
340{
341 struct amdgpu_ring *ring = adev->vm_manager.vm_pte_funcs_ring;
Chunming Zhou4af9f072015-08-03 12:57:31 +0800342 struct fence *fence = NULL;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800343 struct amdgpu_ib *ib;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400344 unsigned entries;
345 uint64_t addr;
346 int r;
347
monk.liuca952612015-05-25 14:44:05 +0800348 r = reservation_object_reserve_shared(bo->tbo.resv);
349 if (r)
350 return r;
351
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400352 r = ttm_bo_validate(&bo->tbo, &bo->placement, true, false);
353 if (r)
Chunming Zhouef9f0a82015-11-13 13:43:22 +0800354 goto error;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400355
356 addr = amdgpu_bo_gpu_offset(bo);
357 entries = amdgpu_bo_size(bo) / 8;
358
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800359 ib = kzalloc(sizeof(struct amdgpu_ib), GFP_KERNEL);
360 if (!ib)
Chunming Zhouef9f0a82015-11-13 13:43:22 +0800361 goto error;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400362
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800363 r = amdgpu_ib_get(ring, NULL, entries * 2 + 64, ib);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400364 if (r)
365 goto error_free;
366
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800367 ib->length_dw = 0;
368
369 amdgpu_vm_update_pages(adev, ib, addr, 0, entries, 0, 0, 0);
370 amdgpu_vm_pad_ib(adev, ib);
371 WARN_ON(ib->length_dw > 64);
Chunming Zhou4af9f072015-08-03 12:57:31 +0800372 r = amdgpu_sched_ib_submit_kernel_helper(adev, ring, ib, 1,
373 &amdgpu_vm_free_job,
374 AMDGPU_FENCE_OWNER_VM,
375 &fence);
376 if (!r)
377 amdgpu_bo_fence(bo, fence, true);
Chunming Zhou281b4222015-08-12 12:58:31 +0800378 fence_put(fence);
Chunming Zhouef9f0a82015-11-13 13:43:22 +0800379 if (amdgpu_enable_scheduler)
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800380 return 0;
Chunming Zhouef9f0a82015-11-13 13:43:22 +0800381
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400382error_free:
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800383 amdgpu_ib_free(adev, ib);
384 kfree(ib);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400385
Chunming Zhouef9f0a82015-11-13 13:43:22 +0800386error:
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400387 return r;
388}
389
390/**
391 * amdgpu_vm_map_gart - get the physical address of a gart page
392 *
393 * @adev: amdgpu_device pointer
394 * @addr: the unmapped addr
395 *
396 * Look up the physical address of the page that the pte resolves
397 * to (cayman+).
398 * Returns the physical address of the page.
399 */
400uint64_t amdgpu_vm_map_gart(struct amdgpu_device *adev, uint64_t addr)
401{
402 uint64_t result;
403
404 /* page table offset */
405 result = adev->gart.pages_addr[addr >> PAGE_SHIFT];
406
407 /* in case cpu page size != gpu page size*/
408 result |= addr & (~PAGE_MASK);
409
410 return result;
411}
412
413/**
414 * amdgpu_vm_update_pdes - make sure that page directory is valid
415 *
416 * @adev: amdgpu_device pointer
417 * @vm: requested vm
418 * @start: start of GPU address range
419 * @end: end of GPU address range
420 *
421 * Allocates new page tables if necessary
422 * and updates the page directory (cayman+).
423 * Returns 0 for success, error for failure.
424 *
425 * Global and local mutex must be locked!
426 */
427int amdgpu_vm_update_page_directory(struct amdgpu_device *adev,
428 struct amdgpu_vm *vm)
429{
430 struct amdgpu_ring *ring = adev->vm_manager.vm_pte_funcs_ring;
431 struct amdgpu_bo *pd = vm->page_directory;
432 uint64_t pd_addr = amdgpu_bo_gpu_offset(pd);
433 uint32_t incr = AMDGPU_VM_PTE_COUNT * 8;
434 uint64_t last_pde = ~0, last_pt = ~0;
435 unsigned count = 0, pt_idx, ndw;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800436 struct amdgpu_ib *ib;
Chunming Zhou4af9f072015-08-03 12:57:31 +0800437 struct fence *fence = NULL;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800438
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400439 int r;
440
441 /* padding, etc. */
442 ndw = 64;
443
444 /* assume the worst case */
445 ndw += vm->max_pde_used * 6;
446
447 /* update too big for an IB */
448 if (ndw > 0xfffff)
449 return -ENOMEM;
450
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800451 ib = kzalloc(sizeof(struct amdgpu_ib), GFP_KERNEL);
452 if (!ib)
453 return -ENOMEM;
454
455 r = amdgpu_ib_get(ring, NULL, ndw * 4, ib);
Sudip Mukherjee7a574552015-10-08 19:28:01 +0530456 if (r) {
457 kfree(ib);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400458 return r;
Sudip Mukherjee7a574552015-10-08 19:28:01 +0530459 }
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800460 ib->length_dw = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400461
462 /* walk over the address space and update the page directory */
463 for (pt_idx = 0; pt_idx <= vm->max_pde_used; ++pt_idx) {
464 struct amdgpu_bo *bo = vm->page_tables[pt_idx].bo;
465 uint64_t pde, pt;
466
467 if (bo == NULL)
468 continue;
469
470 pt = amdgpu_bo_gpu_offset(bo);
471 if (vm->page_tables[pt_idx].addr == pt)
472 continue;
473 vm->page_tables[pt_idx].addr = pt;
474
475 pde = pd_addr + pt_idx * 8;
476 if (((last_pde + 8 * count) != pde) ||
477 ((last_pt + incr * count) != pt)) {
478
479 if (count) {
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800480 amdgpu_vm_update_pages(adev, ib, last_pde,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400481 last_pt, count, incr,
482 AMDGPU_PTE_VALID, 0);
483 }
484
485 count = 1;
486 last_pde = pde;
487 last_pt = pt;
488 } else {
489 ++count;
490 }
491 }
492
493 if (count)
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800494 amdgpu_vm_update_pages(adev, ib, last_pde, last_pt, count,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400495 incr, AMDGPU_PTE_VALID, 0);
496
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800497 if (ib->length_dw != 0) {
498 amdgpu_vm_pad_ib(adev, ib);
499 amdgpu_sync_resv(adev, &ib->sync, pd->tbo.resv, AMDGPU_FENCE_OWNER_VM);
500 WARN_ON(ib->length_dw > ndw);
Chunming Zhou4af9f072015-08-03 12:57:31 +0800501 r = amdgpu_sched_ib_submit_kernel_helper(adev, ring, ib, 1,
502 &amdgpu_vm_free_job,
503 AMDGPU_FENCE_OWNER_VM,
504 &fence);
505 if (r)
506 goto error_free;
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +0200507
Chunming Zhou4af9f072015-08-03 12:57:31 +0800508 amdgpu_bo_fence(pd, fence, true);
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +0200509 fence_put(vm->page_directory_fence);
510 vm->page_directory_fence = fence_get(fence);
Chunming Zhou281b4222015-08-12 12:58:31 +0800511 fence_put(fence);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400512 }
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800513
514 if (!amdgpu_enable_scheduler || ib->length_dw == 0) {
515 amdgpu_ib_free(adev, ib);
516 kfree(ib);
517 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400518
519 return 0;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800520
521error_free:
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800522 amdgpu_ib_free(adev, ib);
523 kfree(ib);
Chunming Zhou4af9f072015-08-03 12:57:31 +0800524 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400525}
526
527/**
528 * amdgpu_vm_frag_ptes - add fragment information to PTEs
529 *
530 * @adev: amdgpu_device pointer
531 * @ib: IB for the update
532 * @pe_start: first PTE to handle
533 * @pe_end: last PTE to handle
534 * @addr: addr those PTEs should point to
535 * @flags: hw mapping flags
536 * @gtt_flags: GTT hw mapping flags
537 *
538 * Global and local mutex must be locked!
539 */
540static void amdgpu_vm_frag_ptes(struct amdgpu_device *adev,
541 struct amdgpu_ib *ib,
542 uint64_t pe_start, uint64_t pe_end,
543 uint64_t addr, uint32_t flags,
544 uint32_t gtt_flags)
545{
546 /**
547 * The MC L1 TLB supports variable sized pages, based on a fragment
548 * field in the PTE. When this field is set to a non-zero value, page
549 * granularity is increased from 4KB to (1 << (12 + frag)). The PTE
550 * flags are considered valid for all PTEs within the fragment range
551 * and corresponding mappings are assumed to be physically contiguous.
552 *
553 * The L1 TLB can store a single PTE for the whole fragment,
554 * significantly increasing the space available for translation
555 * caching. This leads to large improvements in throughput when the
556 * TLB is under pressure.
557 *
558 * The L2 TLB distributes small and large fragments into two
559 * asymmetric partitions. The large fragment cache is significantly
560 * larger. Thus, we try to use large fragments wherever possible.
561 * Userspace can support this by aligning virtual base address and
562 * allocation size to the fragment size.
563 */
564
565 /* SI and newer are optimized for 64KB */
566 uint64_t frag_flags = AMDGPU_PTE_FRAG_64KB;
567 uint64_t frag_align = 0x80;
568
569 uint64_t frag_start = ALIGN(pe_start, frag_align);
570 uint64_t frag_end = pe_end & ~(frag_align - 1);
571
572 unsigned count;
573
574 /* system pages are non continuously */
575 if ((flags & AMDGPU_PTE_SYSTEM) || !(flags & AMDGPU_PTE_VALID) ||
576 (frag_start >= frag_end)) {
577
578 count = (pe_end - pe_start) / 8;
579 amdgpu_vm_update_pages(adev, ib, pe_start, addr, count,
580 AMDGPU_GPU_PAGE_SIZE, flags, gtt_flags);
581 return;
582 }
583
584 /* handle the 4K area at the beginning */
585 if (pe_start != frag_start) {
586 count = (frag_start - pe_start) / 8;
587 amdgpu_vm_update_pages(adev, ib, pe_start, addr, count,
588 AMDGPU_GPU_PAGE_SIZE, flags, gtt_flags);
589 addr += AMDGPU_GPU_PAGE_SIZE * count;
590 }
591
592 /* handle the area in the middle */
593 count = (frag_end - frag_start) / 8;
594 amdgpu_vm_update_pages(adev, ib, frag_start, addr, count,
595 AMDGPU_GPU_PAGE_SIZE, flags | frag_flags,
596 gtt_flags);
597
598 /* handle the 4K area at the end */
599 if (frag_end != pe_end) {
600 addr += AMDGPU_GPU_PAGE_SIZE * count;
601 count = (pe_end - frag_end) / 8;
602 amdgpu_vm_update_pages(adev, ib, frag_end, addr, count,
603 AMDGPU_GPU_PAGE_SIZE, flags, gtt_flags);
604 }
605}
606
607/**
608 * amdgpu_vm_update_ptes - make sure that page tables are valid
609 *
610 * @adev: amdgpu_device pointer
611 * @vm: requested vm
612 * @start: start of GPU address range
613 * @end: end of GPU address range
614 * @dst: destination address to map to
615 * @flags: mapping flags
616 *
617 * Update the page tables in the range @start - @end (cayman+).
618 *
619 * Global and local mutex must be locked!
620 */
621static int amdgpu_vm_update_ptes(struct amdgpu_device *adev,
622 struct amdgpu_vm *vm,
623 struct amdgpu_ib *ib,
624 uint64_t start, uint64_t end,
625 uint64_t dst, uint32_t flags,
626 uint32_t gtt_flags)
627{
628 uint64_t mask = AMDGPU_VM_PTE_COUNT - 1;
629 uint64_t last_pte = ~0, last_dst = ~0;
Christian Königa60c4232015-09-01 15:33:25 +0200630 void *owner = AMDGPU_FENCE_OWNER_VM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400631 unsigned count = 0;
632 uint64_t addr;
633
Christian Königa60c4232015-09-01 15:33:25 +0200634 /* sync to everything on unmapping */
635 if (!(flags & AMDGPU_PTE_VALID))
636 owner = AMDGPU_FENCE_OWNER_UNDEFINED;
637
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400638 /* walk over the address space and update the page tables */
639 for (addr = start; addr < end; ) {
640 uint64_t pt_idx = addr >> amdgpu_vm_block_size;
641 struct amdgpu_bo *pt = vm->page_tables[pt_idx].bo;
642 unsigned nptes;
643 uint64_t pte;
644 int r;
645
Christian Königa60c4232015-09-01 15:33:25 +0200646 amdgpu_sync_resv(adev, &ib->sync, pt->tbo.resv, owner);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400647 r = reservation_object_reserve_shared(pt->tbo.resv);
648 if (r)
649 return r;
650
651 if ((addr & ~mask) == (end & ~mask))
652 nptes = end - addr;
653 else
654 nptes = AMDGPU_VM_PTE_COUNT - (addr & mask);
655
656 pte = amdgpu_bo_gpu_offset(pt);
657 pte += (addr & mask) * 8;
658
659 if ((last_pte + 8 * count) != pte) {
660
661 if (count) {
662 amdgpu_vm_frag_ptes(adev, ib, last_pte,
663 last_pte + 8 * count,
664 last_dst, flags,
665 gtt_flags);
666 }
667
668 count = nptes;
669 last_pte = pte;
670 last_dst = dst;
671 } else {
672 count += nptes;
673 }
674
675 addr += nptes;
676 dst += nptes * AMDGPU_GPU_PAGE_SIZE;
677 }
678
679 if (count) {
680 amdgpu_vm_frag_ptes(adev, ib, last_pte,
681 last_pte + 8 * count,
682 last_dst, flags, gtt_flags);
683 }
684
685 return 0;
686}
687
688/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400689 * amdgpu_vm_bo_update_mapping - update a mapping in the vm page table
690 *
691 * @adev: amdgpu_device pointer
692 * @vm: requested vm
693 * @mapping: mapped range and flags to use for the update
694 * @addr: addr to set the area to
695 * @gtt_flags: flags as they are used for GTT
696 * @fence: optional resulting fence
697 *
698 * Fill in the page table entries for @mapping.
699 * Returns 0 for success, -EINVAL for failure.
700 *
701 * Object have to be reserved and mutex must be locked!
702 */
703static int amdgpu_vm_bo_update_mapping(struct amdgpu_device *adev,
704 struct amdgpu_vm *vm,
705 struct amdgpu_bo_va_mapping *mapping,
706 uint64_t addr, uint32_t gtt_flags,
Chunming Zhoubb1e38a42015-08-03 18:19:38 +0800707 struct fence **fence)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400708{
709 struct amdgpu_ring *ring = adev->vm_manager.vm_pte_funcs_ring;
710 unsigned nptes, ncmds, ndw;
711 uint32_t flags = gtt_flags;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800712 struct amdgpu_ib *ib;
Chunming Zhou4af9f072015-08-03 12:57:31 +0800713 struct fence *f = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400714 int r;
715
716 /* normally,bo_va->flags only contians READABLE and WIRTEABLE bit go here
717 * but in case of something, we filter the flags in first place
718 */
719 if (!(mapping->flags & AMDGPU_PTE_READABLE))
720 flags &= ~AMDGPU_PTE_READABLE;
721 if (!(mapping->flags & AMDGPU_PTE_WRITEABLE))
722 flags &= ~AMDGPU_PTE_WRITEABLE;
723
724 trace_amdgpu_vm_bo_update(mapping);
725
726 nptes = mapping->it.last - mapping->it.start + 1;
727
728 /*
729 * reserve space for one command every (1 << BLOCK_SIZE)
730 * entries or 2k dwords (whatever is smaller)
731 */
732 ncmds = (nptes >> min(amdgpu_vm_block_size, 11)) + 1;
733
734 /* padding, etc. */
735 ndw = 64;
736
737 if ((flags & AMDGPU_PTE_SYSTEM) && (flags == gtt_flags)) {
738 /* only copy commands needed */
739 ndw += ncmds * 7;
740
741 } else if (flags & AMDGPU_PTE_SYSTEM) {
742 /* header for write data commands */
743 ndw += ncmds * 4;
744
745 /* body of write data command */
746 ndw += nptes * 2;
747
748 } else {
749 /* set page commands needed */
750 ndw += ncmds * 10;
751
752 /* two extra commands for begin/end of fragment */
753 ndw += 2 * 10;
754 }
755
756 /* update too big for an IB */
757 if (ndw > 0xfffff)
758 return -ENOMEM;
759
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800760 ib = kzalloc(sizeof(struct amdgpu_ib), GFP_KERNEL);
761 if (!ib)
762 return -ENOMEM;
763
764 r = amdgpu_ib_get(ring, NULL, ndw * 4, ib);
765 if (r) {
766 kfree(ib);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400767 return r;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800768 }
769
770 ib->length_dw = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400771
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800772 r = amdgpu_vm_update_ptes(adev, vm, ib, mapping->it.start,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400773 mapping->it.last + 1, addr + mapping->offset,
774 flags, gtt_flags);
775
776 if (r) {
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800777 amdgpu_ib_free(adev, ib);
778 kfree(ib);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400779 return r;
780 }
781
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800782 amdgpu_vm_pad_ib(adev, ib);
783 WARN_ON(ib->length_dw > ndw);
Chunming Zhou4af9f072015-08-03 12:57:31 +0800784 r = amdgpu_sched_ib_submit_kernel_helper(adev, ring, ib, 1,
785 &amdgpu_vm_free_job,
786 AMDGPU_FENCE_OWNER_VM,
787 &f);
788 if (r)
789 goto error_free;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400790
Christian Königbf60efd2015-09-04 10:47:56 +0200791 amdgpu_bo_fence(vm->page_directory, f, true);
Chunming Zhou4af9f072015-08-03 12:57:31 +0800792 if (fence) {
793 fence_put(*fence);
794 *fence = fence_get(f);
795 }
Chunming Zhou281b4222015-08-12 12:58:31 +0800796 fence_put(f);
Chunming Zhou4af9f072015-08-03 12:57:31 +0800797 if (!amdgpu_enable_scheduler) {
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800798 amdgpu_ib_free(adev, ib);
799 kfree(ib);
800 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400801 return 0;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800802
803error_free:
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800804 amdgpu_ib_free(adev, ib);
805 kfree(ib);
Chunming Zhou4af9f072015-08-03 12:57:31 +0800806 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400807}
808
809/**
810 * amdgpu_vm_bo_update - update all BO mappings in the vm page table
811 *
812 * @adev: amdgpu_device pointer
813 * @bo_va: requested BO and VM object
814 * @mem: ttm mem
815 *
816 * Fill in the page table entries for @bo_va.
817 * Returns 0 for success, -EINVAL for failure.
818 *
819 * Object have to be reserved and mutex must be locked!
820 */
821int amdgpu_vm_bo_update(struct amdgpu_device *adev,
822 struct amdgpu_bo_va *bo_va,
823 struct ttm_mem_reg *mem)
824{
825 struct amdgpu_vm *vm = bo_va->vm;
826 struct amdgpu_bo_va_mapping *mapping;
827 uint32_t flags;
828 uint64_t addr;
829 int r;
830
831 if (mem) {
Christian Königb7d698d2015-09-07 12:32:09 +0200832 addr = (u64)mem->start << PAGE_SHIFT;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400833 if (mem->mem_type != TTM_PL_TT)
834 addr += adev->vm_manager.vram_base_offset;
835 } else {
836 addr = 0;
837 }
838
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400839 flags = amdgpu_ttm_tt_pte_flags(adev, bo_va->bo->tbo.ttm, mem);
840
Christian König7fc11952015-07-30 11:53:42 +0200841 spin_lock(&vm->status_lock);
842 if (!list_empty(&bo_va->vm_status))
843 list_splice_init(&bo_va->valids, &bo_va->invalids);
844 spin_unlock(&vm->status_lock);
845
846 list_for_each_entry(mapping, &bo_va->invalids, list) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400847 r = amdgpu_vm_bo_update_mapping(adev, vm, mapping, addr,
848 flags, &bo_va->last_pt_update);
849 if (r)
850 return r;
851 }
852
Christian Königd6c10f62015-09-28 12:00:23 +0200853 if (trace_amdgpu_vm_bo_mapping_enabled()) {
854 list_for_each_entry(mapping, &bo_va->valids, list)
855 trace_amdgpu_vm_bo_mapping(mapping);
856
857 list_for_each_entry(mapping, &bo_va->invalids, list)
858 trace_amdgpu_vm_bo_mapping(mapping);
859 }
860
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400861 spin_lock(&vm->status_lock);
monk.liu6d1d0ef2015-08-14 13:36:41 +0800862 list_splice_init(&bo_va->invalids, &bo_va->valids);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400863 list_del_init(&bo_va->vm_status);
Christian König7fc11952015-07-30 11:53:42 +0200864 if (!mem)
865 list_add(&bo_va->vm_status, &vm->cleared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400866 spin_unlock(&vm->status_lock);
867
868 return 0;
869}
870
871/**
872 * amdgpu_vm_clear_freed - clear freed BOs in the PT
873 *
874 * @adev: amdgpu_device pointer
875 * @vm: requested vm
876 *
877 * Make sure all freed BOs are cleared in the PT.
878 * Returns 0 for success.
879 *
880 * PTs have to be reserved and mutex must be locked!
881 */
882int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
883 struct amdgpu_vm *vm)
884{
885 struct amdgpu_bo_va_mapping *mapping;
886 int r;
887
888 while (!list_empty(&vm->freed)) {
889 mapping = list_first_entry(&vm->freed,
890 struct amdgpu_bo_va_mapping, list);
891 list_del(&mapping->list);
892
893 r = amdgpu_vm_bo_update_mapping(adev, vm, mapping, 0, 0, NULL);
894 kfree(mapping);
895 if (r)
896 return r;
897
898 }
899 return 0;
900
901}
902
903/**
904 * amdgpu_vm_clear_invalids - clear invalidated BOs in the PT
905 *
906 * @adev: amdgpu_device pointer
907 * @vm: requested vm
908 *
909 * Make sure all invalidated BOs are cleared in the PT.
910 * Returns 0 for success.
911 *
912 * PTs have to be reserved and mutex must be locked!
913 */
914int amdgpu_vm_clear_invalids(struct amdgpu_device *adev,
monk.liucfe2c972015-05-26 15:01:54 +0800915 struct amdgpu_vm *vm, struct amdgpu_sync *sync)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400916{
monk.liucfe2c972015-05-26 15:01:54 +0800917 struct amdgpu_bo_va *bo_va = NULL;
Christian König91e1a522015-07-06 22:06:40 +0200918 int r = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400919
920 spin_lock(&vm->status_lock);
921 while (!list_empty(&vm->invalidated)) {
922 bo_va = list_first_entry(&vm->invalidated,
923 struct amdgpu_bo_va, vm_status);
924 spin_unlock(&vm->status_lock);
925
926 r = amdgpu_vm_bo_update(adev, bo_va, NULL);
927 if (r)
928 return r;
929
930 spin_lock(&vm->status_lock);
931 }
932 spin_unlock(&vm->status_lock);
933
monk.liucfe2c972015-05-26 15:01:54 +0800934 if (bo_va)
Chunming Zhoubb1e38a42015-08-03 18:19:38 +0800935 r = amdgpu_sync_fence(adev, sync, bo_va->last_pt_update);
Christian König91e1a522015-07-06 22:06:40 +0200936
937 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400938}
939
940/**
941 * amdgpu_vm_bo_add - add a bo to a specific vm
942 *
943 * @adev: amdgpu_device pointer
944 * @vm: requested vm
945 * @bo: amdgpu buffer object
946 *
947 * Add @bo into the requested vm (cayman+).
948 * Add @bo to the list of bos associated with the vm
949 * Returns newly added bo_va or NULL for failure
950 *
951 * Object has to be reserved!
952 */
953struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
954 struct amdgpu_vm *vm,
955 struct amdgpu_bo *bo)
956{
957 struct amdgpu_bo_va *bo_va;
958
959 bo_va = kzalloc(sizeof(struct amdgpu_bo_va), GFP_KERNEL);
960 if (bo_va == NULL) {
961 return NULL;
962 }
963 bo_va->vm = vm;
964 bo_va->bo = bo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400965 bo_va->ref_count = 1;
966 INIT_LIST_HEAD(&bo_va->bo_list);
Christian König7fc11952015-07-30 11:53:42 +0200967 INIT_LIST_HEAD(&bo_va->valids);
968 INIT_LIST_HEAD(&bo_va->invalids);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400969 INIT_LIST_HEAD(&bo_va->vm_status);
970
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400971 list_add_tail(&bo_va->bo_list, &bo->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400972
973 return bo_va;
974}
975
976/**
977 * amdgpu_vm_bo_map - map bo inside a vm
978 *
979 * @adev: amdgpu_device pointer
980 * @bo_va: bo_va to store the address
981 * @saddr: where to map the BO
982 * @offset: requested offset in the BO
983 * @flags: attributes of pages (read/write/valid/etc.)
984 *
985 * Add a mapping of the BO at the specefied addr into the VM.
986 * Returns 0 for success, error for failure.
987 *
Chunming Zhou49b02b12015-11-13 14:18:38 +0800988 * Object has to be reserved and unreserved outside!
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400989 */
990int amdgpu_vm_bo_map(struct amdgpu_device *adev,
991 struct amdgpu_bo_va *bo_va,
992 uint64_t saddr, uint64_t offset,
993 uint64_t size, uint32_t flags)
994{
995 struct amdgpu_bo_va_mapping *mapping;
996 struct amdgpu_vm *vm = bo_va->vm;
997 struct interval_tree_node *it;
998 unsigned last_pfn, pt_idx;
999 uint64_t eaddr;
1000 int r;
1001
Christian König0be52de2015-05-18 14:37:27 +02001002 /* validate the parameters */
1003 if (saddr & AMDGPU_GPU_PAGE_MASK || offset & AMDGPU_GPU_PAGE_MASK ||
Chunming Zhou49b02b12015-11-13 14:18:38 +08001004 size == 0 || size & AMDGPU_GPU_PAGE_MASK)
Christian König0be52de2015-05-18 14:37:27 +02001005 return -EINVAL;
Christian König0be52de2015-05-18 14:37:27 +02001006
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001007 /* make sure object fit at this offset */
1008 eaddr = saddr + size;
Chunming Zhou49b02b12015-11-13 14:18:38 +08001009 if ((saddr >= eaddr) || (offset + size > amdgpu_bo_size(bo_va->bo)))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001010 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001011
1012 last_pfn = eaddr / AMDGPU_GPU_PAGE_SIZE;
1013 if (last_pfn > adev->vm_manager.max_pfn) {
1014 dev_err(adev->dev, "va above limit (0x%08X > 0x%08X)\n",
1015 last_pfn, adev->vm_manager.max_pfn);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001016 return -EINVAL;
1017 }
1018
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001019 saddr /= AMDGPU_GPU_PAGE_SIZE;
1020 eaddr /= AMDGPU_GPU_PAGE_SIZE;
1021
Chunming Zhouc25867d2015-11-13 13:32:01 +08001022 spin_lock(&vm->it_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001023 it = interval_tree_iter_first(&vm->va, saddr, eaddr - 1);
Chunming Zhouc25867d2015-11-13 13:32:01 +08001024 spin_unlock(&vm->it_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001025 if (it) {
1026 struct amdgpu_bo_va_mapping *tmp;
1027 tmp = container_of(it, struct amdgpu_bo_va_mapping, it);
1028 /* bo and tmp overlap, invalid addr */
1029 dev_err(adev->dev, "bo %p va 0x%010Lx-0x%010Lx conflict with "
1030 "0x%010lx-0x%010lx\n", bo_va->bo, saddr, eaddr,
1031 tmp->it.start, tmp->it.last + 1);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001032 r = -EINVAL;
Chunming Zhouf48b2652015-10-16 14:06:19 +08001033 goto error;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001034 }
1035
1036 mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
1037 if (!mapping) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001038 r = -ENOMEM;
Chunming Zhouf48b2652015-10-16 14:06:19 +08001039 goto error;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001040 }
1041
1042 INIT_LIST_HEAD(&mapping->list);
1043 mapping->it.start = saddr;
1044 mapping->it.last = eaddr - 1;
1045 mapping->offset = offset;
1046 mapping->flags = flags;
1047
Christian König7fc11952015-07-30 11:53:42 +02001048 list_add(&mapping->list, &bo_va->invalids);
Chunming Zhouc25867d2015-11-13 13:32:01 +08001049 spin_lock(&vm->it_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001050 interval_tree_insert(&mapping->it, &vm->va);
Chunming Zhouc25867d2015-11-13 13:32:01 +08001051 spin_unlock(&vm->it_lock);
Christian König93e3e432015-06-09 16:58:33 +02001052 trace_amdgpu_vm_bo_map(bo_va, mapping);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001053
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001054 /* Make sure the page tables are allocated */
1055 saddr >>= amdgpu_vm_block_size;
1056 eaddr >>= amdgpu_vm_block_size;
1057
1058 BUG_ON(eaddr >= amdgpu_vm_num_pdes(adev));
1059
1060 if (eaddr > vm->max_pde_used)
1061 vm->max_pde_used = eaddr;
1062
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001063 /* walk over the address space and allocate the page tables */
1064 for (pt_idx = saddr; pt_idx <= eaddr; ++pt_idx) {
Christian Königbf60efd2015-09-04 10:47:56 +02001065 struct reservation_object *resv = vm->page_directory->tbo.resv;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001066 struct amdgpu_bo *pt;
1067
1068 if (vm->page_tables[pt_idx].bo)
1069 continue;
1070
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001071 r = amdgpu_bo_create(adev, AMDGPU_VM_PTE_COUNT * 8,
1072 AMDGPU_GPU_PAGE_SIZE, true,
Alex Deucher857d9132015-08-27 00:14:16 -04001073 AMDGPU_GEM_DOMAIN_VRAM,
1074 AMDGPU_GEM_CREATE_NO_CPU_ACCESS,
Christian Königbf60efd2015-09-04 10:47:56 +02001075 NULL, resv, &pt);
Chunming Zhou49b02b12015-11-13 14:18:38 +08001076 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001077 goto error_free;
Chunming Zhou49b02b12015-11-13 14:18:38 +08001078
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001079 r = amdgpu_vm_clear_bo(adev, pt);
1080 if (r) {
1081 amdgpu_bo_unref(&pt);
1082 goto error_free;
1083 }
1084
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001085 vm->page_tables[pt_idx].addr = 0;
1086 vm->page_tables[pt_idx].bo = pt;
1087 }
1088
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001089 return 0;
1090
1091error_free:
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001092 list_del(&mapping->list);
Chunming Zhouc25867d2015-11-13 13:32:01 +08001093 spin_lock(&vm->it_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001094 interval_tree_remove(&mapping->it, &vm->va);
Chunming Zhouc25867d2015-11-13 13:32:01 +08001095 spin_unlock(&vm->it_lock);
Christian König93e3e432015-06-09 16:58:33 +02001096 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001097 kfree(mapping);
1098
Chunming Zhouf48b2652015-10-16 14:06:19 +08001099error:
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001100 return r;
1101}
1102
1103/**
1104 * amdgpu_vm_bo_unmap - remove bo mapping from vm
1105 *
1106 * @adev: amdgpu_device pointer
1107 * @bo_va: bo_va to remove the address from
1108 * @saddr: where to the BO is mapped
1109 *
1110 * Remove a mapping of the BO at the specefied addr from the VM.
1111 * Returns 0 for success, error for failure.
1112 *
Chunming Zhou49b02b12015-11-13 14:18:38 +08001113 * Object has to be reserved and unreserved outside!
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001114 */
1115int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
1116 struct amdgpu_bo_va *bo_va,
1117 uint64_t saddr)
1118{
1119 struct amdgpu_bo_va_mapping *mapping;
1120 struct amdgpu_vm *vm = bo_va->vm;
Christian König7fc11952015-07-30 11:53:42 +02001121 bool valid = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001122
Christian König6c7fc502015-06-05 20:56:17 +02001123 saddr /= AMDGPU_GPU_PAGE_SIZE;
1124
Christian König7fc11952015-07-30 11:53:42 +02001125 list_for_each_entry(mapping, &bo_va->valids, list) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001126 if (mapping->it.start == saddr)
1127 break;
1128 }
1129
Christian König7fc11952015-07-30 11:53:42 +02001130 if (&mapping->list == &bo_va->valids) {
1131 valid = false;
1132
1133 list_for_each_entry(mapping, &bo_va->invalids, list) {
1134 if (mapping->it.start == saddr)
1135 break;
1136 }
1137
Chunming Zhou49b02b12015-11-13 14:18:38 +08001138 if (&mapping->list == &bo_va->invalids)
Christian König7fc11952015-07-30 11:53:42 +02001139 return -ENOENT;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001140 }
1141
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001142 list_del(&mapping->list);
Chunming Zhouc25867d2015-11-13 13:32:01 +08001143 spin_lock(&vm->it_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001144 interval_tree_remove(&mapping->it, &vm->va);
Chunming Zhouc25867d2015-11-13 13:32:01 +08001145 spin_unlock(&vm->it_lock);
Christian König93e3e432015-06-09 16:58:33 +02001146 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001147
Christian König7fc11952015-07-30 11:53:42 +02001148 if (valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001149 list_add(&mapping->list, &vm->freed);
Christian König7fc11952015-07-30 11:53:42 +02001150 else
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001151 kfree(mapping);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001152
1153 return 0;
1154}
1155
1156/**
1157 * amdgpu_vm_bo_rmv - remove a bo to a specific vm
1158 *
1159 * @adev: amdgpu_device pointer
1160 * @bo_va: requested bo_va
1161 *
1162 * Remove @bo_va->bo from the requested vm (cayman+).
1163 *
1164 * Object have to be reserved!
1165 */
1166void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
1167 struct amdgpu_bo_va *bo_va)
1168{
1169 struct amdgpu_bo_va_mapping *mapping, *next;
1170 struct amdgpu_vm *vm = bo_va->vm;
1171
1172 list_del(&bo_va->bo_list);
1173
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001174 spin_lock(&vm->status_lock);
1175 list_del(&bo_va->vm_status);
1176 spin_unlock(&vm->status_lock);
1177
Christian König7fc11952015-07-30 11:53:42 +02001178 list_for_each_entry_safe(mapping, next, &bo_va->valids, list) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001179 list_del(&mapping->list);
Chunming Zhouc25867d2015-11-13 13:32:01 +08001180 spin_lock(&vm->it_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001181 interval_tree_remove(&mapping->it, &vm->va);
Chunming Zhouc25867d2015-11-13 13:32:01 +08001182 spin_unlock(&vm->it_lock);
Christian König93e3e432015-06-09 16:58:33 +02001183 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Christian König7fc11952015-07-30 11:53:42 +02001184 list_add(&mapping->list, &vm->freed);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001185 }
Christian König7fc11952015-07-30 11:53:42 +02001186 list_for_each_entry_safe(mapping, next, &bo_va->invalids, list) {
1187 list_del(&mapping->list);
Chunming Zhouc25867d2015-11-13 13:32:01 +08001188 spin_lock(&vm->it_lock);
Christian König7fc11952015-07-30 11:53:42 +02001189 interval_tree_remove(&mapping->it, &vm->va);
Chunming Zhouc25867d2015-11-13 13:32:01 +08001190 spin_unlock(&vm->it_lock);
Christian König7fc11952015-07-30 11:53:42 +02001191 kfree(mapping);
1192 }
1193
Chunming Zhoubb1e38a42015-08-03 18:19:38 +08001194 fence_put(bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001195 kfree(bo_va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001196}
1197
1198/**
1199 * amdgpu_vm_bo_invalidate - mark the bo as invalid
1200 *
1201 * @adev: amdgpu_device pointer
1202 * @vm: requested vm
1203 * @bo: amdgpu buffer object
1204 *
1205 * Mark @bo as invalid (cayman+).
1206 */
1207void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
1208 struct amdgpu_bo *bo)
1209{
1210 struct amdgpu_bo_va *bo_va;
1211
1212 list_for_each_entry(bo_va, &bo->va, bo_list) {
Christian König7fc11952015-07-30 11:53:42 +02001213 spin_lock(&bo_va->vm->status_lock);
1214 if (list_empty(&bo_va->vm_status))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001215 list_add(&bo_va->vm_status, &bo_va->vm->invalidated);
Christian König7fc11952015-07-30 11:53:42 +02001216 spin_unlock(&bo_va->vm->status_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001217 }
1218}
1219
1220/**
1221 * amdgpu_vm_init - initialize a vm instance
1222 *
1223 * @adev: amdgpu_device pointer
1224 * @vm: requested vm
1225 *
1226 * Init @vm fields (cayman+).
1227 */
1228int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm)
1229{
1230 const unsigned align = min(AMDGPU_VM_PTB_ALIGN_SIZE,
1231 AMDGPU_VM_PTE_COUNT * 8);
1232 unsigned pd_size, pd_entries, pts_size;
1233 int i, r;
1234
1235 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
1236 vm->ids[i].id = 0;
1237 vm->ids[i].flushed_updates = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001238 }
1239 mutex_init(&vm->mutex);
1240 vm->va = RB_ROOT;
1241 spin_lock_init(&vm->status_lock);
1242 INIT_LIST_HEAD(&vm->invalidated);
Christian König7fc11952015-07-30 11:53:42 +02001243 INIT_LIST_HEAD(&vm->cleared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001244 INIT_LIST_HEAD(&vm->freed);
Chunming Zhouc25867d2015-11-13 13:32:01 +08001245 spin_lock_init(&vm->it_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001246 pd_size = amdgpu_vm_directory_size(adev);
1247 pd_entries = amdgpu_vm_num_pdes(adev);
1248
1249 /* allocate page table array */
1250 pts_size = pd_entries * sizeof(struct amdgpu_vm_pt);
1251 vm->page_tables = kzalloc(pts_size, GFP_KERNEL);
1252 if (vm->page_tables == NULL) {
1253 DRM_ERROR("Cannot allocate memory for page table array\n");
1254 return -ENOMEM;
1255 }
1256
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +02001257 vm->page_directory_fence = NULL;
1258
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001259 r = amdgpu_bo_create(adev, pd_size, align, true,
Alex Deucher857d9132015-08-27 00:14:16 -04001260 AMDGPU_GEM_DOMAIN_VRAM,
1261 AMDGPU_GEM_CREATE_NO_CPU_ACCESS,
Christian König72d76682015-09-03 17:34:59 +02001262 NULL, NULL, &vm->page_directory);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001263 if (r)
1264 return r;
Chunming Zhouef9f0a82015-11-13 13:43:22 +08001265 r = amdgpu_bo_reserve(vm->page_directory, false);
1266 if (r) {
1267 amdgpu_bo_unref(&vm->page_directory);
1268 vm->page_directory = NULL;
1269 return r;
1270 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001271 r = amdgpu_vm_clear_bo(adev, vm->page_directory);
Chunming Zhouef9f0a82015-11-13 13:43:22 +08001272 amdgpu_bo_unreserve(vm->page_directory);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001273 if (r) {
1274 amdgpu_bo_unref(&vm->page_directory);
1275 vm->page_directory = NULL;
1276 return r;
1277 }
1278
1279 return 0;
1280}
1281
1282/**
1283 * amdgpu_vm_fini - tear down a vm instance
1284 *
1285 * @adev: amdgpu_device pointer
1286 * @vm: requested vm
1287 *
1288 * Tear down @vm (cayman+).
1289 * Unbind the VM and remove all bos from the vm bo list
1290 */
1291void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
1292{
1293 struct amdgpu_bo_va_mapping *mapping, *tmp;
1294 int i;
1295
1296 if (!RB_EMPTY_ROOT(&vm->va)) {
1297 dev_err(adev->dev, "still active bo inside vm\n");
1298 }
1299 rbtree_postorder_for_each_entry_safe(mapping, tmp, &vm->va, it.rb) {
1300 list_del(&mapping->list);
1301 interval_tree_remove(&mapping->it, &vm->va);
1302 kfree(mapping);
1303 }
1304 list_for_each_entry_safe(mapping, tmp, &vm->freed, list) {
1305 list_del(&mapping->list);
1306 kfree(mapping);
1307 }
1308
1309 for (i = 0; i < amdgpu_vm_num_pdes(adev); i++)
1310 amdgpu_bo_unref(&vm->page_tables[i].bo);
1311 kfree(vm->page_tables);
1312
1313 amdgpu_bo_unref(&vm->page_directory);
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +02001314 fence_put(vm->page_directory_fence);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001315 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
Christian König1c16c0a2015-11-14 21:31:40 +01001316 unsigned id = vm->ids[i].id;
1317
1318 atomic_long_cmpxchg(&adev->vm_manager.ids[id].owner,
1319 (long)vm, 0);
Chunming Zhou3c623382015-08-20 18:33:59 +08001320 fence_put(vm->ids[i].flushed_updates);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001321 }
1322
1323 mutex_destroy(&vm->mutex);
1324}
Christian Königea89f8c2015-11-15 20:52:06 +01001325
1326/**
1327 * amdgpu_vm_manager_fini - cleanup VM manager
1328 *
1329 * @adev: amdgpu_device pointer
1330 *
1331 * Cleanup the VM manager and free resources.
1332 */
1333void amdgpu_vm_manager_fini(struct amdgpu_device *adev)
1334{
1335 unsigned i;
1336
1337 for (i = 0; i < AMDGPU_NUM_VM; ++i)
Christian König1c16c0a2015-11-14 21:31:40 +01001338 fence_put(adev->vm_manager.ids[i].active);
Christian Königea89f8c2015-11-15 20:52:06 +01001339}