drm/amdgpu: use common fences for VMID management v2
[deliverable/linux.git] / drivers / gpu / drm / amd / amdgpu / amdgpu_vm.c
CommitLineData
d38ceaf9
AD
1/*
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));
3d5a08c1 95 if (!list) {
d38ceaf9 96 return NULL;
3d5a08c1 97 }
d38ceaf9
AD
98
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 *
d38ceaf9 127 * @vm: vm to allocate id for
7f8a5290
CK
128 * @ring: ring we want to submit job to
129 * @sync: sync object where we add dependencies
d38ceaf9 130 *
7f8a5290 131 * Allocate an id for the vm, adding fences to the sync obj as necessary.
d38ceaf9 132 *
7f8a5290 133 * Global mutex must be locked!
d38ceaf9 134 */
7f8a5290
CK
135int amdgpu_vm_grab_id(struct amdgpu_vm *vm, struct amdgpu_ring *ring,
136 struct amdgpu_sync *sync)
d38ceaf9 137{
d5283298 138 struct fence *best[AMDGPU_MAX_RINGS] = {};
d38ceaf9
AD
139 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 */
146 if (vm_id->id && vm_id->last_id_use &&
39ff8449
CK
147 vm_id->last_id_use == adev->vm_manager.active[vm_id->id]) {
148 trace_amdgpu_vm_grab_id(vm_id->id, ring->idx);
7f8a5290 149 return 0;
39ff8449 150 }
d38ceaf9
AD
151
152 /* we definately need to flush */
153 vm_id->pd_gpu_addr = ~0ll;
154
155 /* skip over VMID 0, since it is the system VM */
156 for (i = 1; i < adev->vm_manager.nvm; ++i) {
d5283298
CK
157 struct fence *fence = adev->vm_manager.active[i];
158 struct amdgpu_ring *fring;
d38ceaf9
AD
159
160 if (fence == NULL) {
161 /* found a free one */
162 vm_id->id = i;
163 trace_amdgpu_vm_grab_id(i, ring->idx);
7f8a5290 164 return 0;
d38ceaf9
AD
165 }
166
d5283298
CK
167 fring = amdgpu_ring_from_fence(fence);
168 if (best[fring->idx] == NULL ||
169 fence_is_later(best[fring->idx], fence)) {
170 best[fring->idx] = fence;
171 choices[fring == ring ? 0 : 1] = i;
d38ceaf9
AD
172 }
173 }
174
175 for (i = 0; i < 2; ++i) {
176 if (choices[i]) {
d5283298 177 struct fence *fence;
7f8a5290
CK
178
179 fence = adev->vm_manager.active[choices[i]];
d38ceaf9 180 vm_id->id = choices[i];
7f8a5290 181
d38ceaf9 182 trace_amdgpu_vm_grab_id(choices[i], ring->idx);
d5283298 183 return amdgpu_sync_fence(ring->adev, sync, fence);
d38ceaf9
AD
184 }
185 }
186
187 /* should never happen */
188 BUG();
7f8a5290 189 return -EINVAL;
d38ceaf9
AD
190}
191
192/**
193 * amdgpu_vm_flush - hardware flush the vm
194 *
195 * @ring: ring to use for flush
196 * @vm: vm we want to flush
197 * @updates: last vm update that we waited for
198 *
199 * Flush the vm (cayman+).
200 *
201 * Global and local mutex must be locked!
202 */
203void amdgpu_vm_flush(struct amdgpu_ring *ring,
204 struct amdgpu_vm *vm,
3c62338c 205 struct fence *updates)
d38ceaf9
AD
206{
207 uint64_t pd_addr = amdgpu_bo_gpu_offset(vm->page_directory);
208 struct amdgpu_vm_id *vm_id = &vm->ids[ring->idx];
3c62338c
CZ
209 struct fence *flushed_updates = vm_id->flushed_updates;
210 bool is_earlier = false;
211
212 if (flushed_updates && updates) {
213 BUG_ON(flushed_updates->context != updates->context);
214 is_earlier = (updates->seqno - flushed_updates->seqno <=
215 INT_MAX) ? true : false;
216 }
d38ceaf9 217
fc8fa5e4 218 if (pd_addr != vm_id->pd_gpu_addr || !flushed_updates ||
3c62338c 219 is_earlier) {
d38ceaf9
AD
220
221 trace_amdgpu_vm_flush(pd_addr, ring->idx, vm_id->id);
3c62338c
CZ
222 if (is_earlier) {
223 vm_id->flushed_updates = fence_get(updates);
224 fence_put(flushed_updates);
225 }
226 if (!flushed_updates)
227 vm_id->flushed_updates = fence_get(updates);
d38ceaf9
AD
228 vm_id->pd_gpu_addr = pd_addr;
229 amdgpu_ring_emit_vm_flush(ring, vm_id->id, vm_id->pd_gpu_addr);
230 }
231}
232
233/**
234 * amdgpu_vm_fence - remember fence for vm
235 *
236 * @adev: amdgpu_device pointer
237 * @vm: vm we want to fence
238 * @fence: fence to remember
239 *
240 * Fence the vm (cayman+).
241 * Set the fence used to protect page table and id.
242 *
243 * Global and local mutex must be locked!
244 */
245void amdgpu_vm_fence(struct amdgpu_device *adev,
246 struct amdgpu_vm *vm,
247 struct amdgpu_fence *fence)
248{
249 unsigned ridx = fence->ring->idx;
250 unsigned vm_id = vm->ids[ridx].id;
251
d5283298
CK
252 fence_put(adev->vm_manager.active[vm_id]);
253 adev->vm_manager.active[vm_id] = fence_get(&fence->base);
d38ceaf9 254
d5283298
CK
255 fence_put(vm->ids[ridx].last_id_use);
256 vm->ids[ridx].last_id_use = fence_get(&fence->base);
d38ceaf9
AD
257}
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
4c7eb91c 321int amdgpu_vm_free_job(struct amdgpu_job *job)
d5fc5e82
CZ
322{
323 int i;
4c7eb91c
JZ
324 for (i = 0; i < job->num_ibs; i++)
325 amdgpu_ib_free(job->adev, &job->ibs[i]);
326 kfree(job->ibs);
d5fc5e82
CZ
327 return 0;
328}
329
d38ceaf9
AD
330/**
331 * amdgpu_vm_clear_bo - initially clear the page dir/table
332 *
333 * @adev: amdgpu_device pointer
334 * @bo: bo to clear
335 */
336static int amdgpu_vm_clear_bo(struct amdgpu_device *adev,
337 struct amdgpu_bo *bo)
338{
339 struct amdgpu_ring *ring = adev->vm_manager.vm_pte_funcs_ring;
4af9f07c 340 struct fence *fence = NULL;
d5fc5e82 341 struct amdgpu_ib *ib;
d38ceaf9
AD
342 unsigned entries;
343 uint64_t addr;
344 int r;
345
346 r = amdgpu_bo_reserve(bo, false);
347 if (r)
348 return r;
349
ca952613 350 r = reservation_object_reserve_shared(bo->tbo.resv);
351 if (r)
352 return r;
353
d38ceaf9
AD
354 r = ttm_bo_validate(&bo->tbo, &bo->placement, true, false);
355 if (r)
356 goto error_unreserve;
357
358 addr = amdgpu_bo_gpu_offset(bo);
359 entries = amdgpu_bo_size(bo) / 8;
360
d5fc5e82
CZ
361 ib = kzalloc(sizeof(struct amdgpu_ib), GFP_KERNEL);
362 if (!ib)
d38ceaf9
AD
363 goto error_unreserve;
364
d5fc5e82 365 r = amdgpu_ib_get(ring, NULL, entries * 2 + 64, ib);
d38ceaf9
AD
366 if (r)
367 goto error_free;
368
d5fc5e82
CZ
369 ib->length_dw = 0;
370
371 amdgpu_vm_update_pages(adev, ib, addr, 0, entries, 0, 0, 0);
372 amdgpu_vm_pad_ib(adev, ib);
373 WARN_ON(ib->length_dw > 64);
4af9f07c
CZ
374 r = amdgpu_sched_ib_submit_kernel_helper(adev, ring, ib, 1,
375 &amdgpu_vm_free_job,
376 AMDGPU_FENCE_OWNER_VM,
377 &fence);
378 if (!r)
379 amdgpu_bo_fence(bo, fence, true);
281b4223 380 fence_put(fence);
d5fc5e82 381 if (amdgpu_enable_scheduler) {
d5fc5e82
CZ
382 amdgpu_bo_unreserve(bo);
383 return 0;
d5fc5e82 384 }
d38ceaf9 385error_free:
d5fc5e82
CZ
386 amdgpu_ib_free(adev, ib);
387 kfree(ib);
d38ceaf9
AD
388
389error_unreserve:
390 amdgpu_bo_unreserve(bo);
391 return r;
392}
393
394/**
395 * amdgpu_vm_map_gart - get the physical address of a gart page
396 *
397 * @adev: amdgpu_device pointer
398 * @addr: the unmapped addr
399 *
400 * Look up the physical address of the page that the pte resolves
401 * to (cayman+).
402 * Returns the physical address of the page.
403 */
404uint64_t amdgpu_vm_map_gart(struct amdgpu_device *adev, uint64_t addr)
405{
406 uint64_t result;
407
408 /* page table offset */
409 result = adev->gart.pages_addr[addr >> PAGE_SHIFT];
410
411 /* in case cpu page size != gpu page size*/
412 result |= addr & (~PAGE_MASK);
413
414 return result;
415}
416
417/**
418 * amdgpu_vm_update_pdes - make sure that page directory is valid
419 *
420 * @adev: amdgpu_device pointer
421 * @vm: requested vm
422 * @start: start of GPU address range
423 * @end: end of GPU address range
424 *
425 * Allocates new page tables if necessary
426 * and updates the page directory (cayman+).
427 * Returns 0 for success, error for failure.
428 *
429 * Global and local mutex must be locked!
430 */
431int amdgpu_vm_update_page_directory(struct amdgpu_device *adev,
432 struct amdgpu_vm *vm)
433{
434 struct amdgpu_ring *ring = adev->vm_manager.vm_pte_funcs_ring;
435 struct amdgpu_bo *pd = vm->page_directory;
436 uint64_t pd_addr = amdgpu_bo_gpu_offset(pd);
437 uint32_t incr = AMDGPU_VM_PTE_COUNT * 8;
438 uint64_t last_pde = ~0, last_pt = ~0;
439 unsigned count = 0, pt_idx, ndw;
d5fc5e82 440 struct amdgpu_ib *ib;
4af9f07c 441 struct fence *fence = NULL;
d5fc5e82 442
d38ceaf9
AD
443 int r;
444
445 /* padding, etc. */
446 ndw = 64;
447
448 /* assume the worst case */
449 ndw += vm->max_pde_used * 6;
450
451 /* update too big for an IB */
452 if (ndw > 0xfffff)
453 return -ENOMEM;
454
d5fc5e82
CZ
455 ib = kzalloc(sizeof(struct amdgpu_ib), GFP_KERNEL);
456 if (!ib)
457 return -ENOMEM;
458
459 r = amdgpu_ib_get(ring, NULL, ndw * 4, ib);
d38ceaf9
AD
460 if (r)
461 return r;
d5fc5e82 462 ib->length_dw = 0;
d38ceaf9
AD
463
464 /* walk over the address space and update the page directory */
465 for (pt_idx = 0; pt_idx <= vm->max_pde_used; ++pt_idx) {
466 struct amdgpu_bo *bo = vm->page_tables[pt_idx].bo;
467 uint64_t pde, pt;
468
469 if (bo == NULL)
470 continue;
471
472 pt = amdgpu_bo_gpu_offset(bo);
473 if (vm->page_tables[pt_idx].addr == pt)
474 continue;
475 vm->page_tables[pt_idx].addr = pt;
476
477 pde = pd_addr + pt_idx * 8;
478 if (((last_pde + 8 * count) != pde) ||
479 ((last_pt + incr * count) != pt)) {
480
481 if (count) {
d5fc5e82 482 amdgpu_vm_update_pages(adev, ib, last_pde,
d38ceaf9
AD
483 last_pt, count, incr,
484 AMDGPU_PTE_VALID, 0);
485 }
486
487 count = 1;
488 last_pde = pde;
489 last_pt = pt;
490 } else {
491 ++count;
492 }
493 }
494
495 if (count)
d5fc5e82 496 amdgpu_vm_update_pages(adev, ib, last_pde, last_pt, count,
d38ceaf9
AD
497 incr, AMDGPU_PTE_VALID, 0);
498
d5fc5e82
CZ
499 if (ib->length_dw != 0) {
500 amdgpu_vm_pad_ib(adev, ib);
501 amdgpu_sync_resv(adev, &ib->sync, pd->tbo.resv, AMDGPU_FENCE_OWNER_VM);
502 WARN_ON(ib->length_dw > ndw);
4af9f07c
CZ
503 r = amdgpu_sched_ib_submit_kernel_helper(adev, ring, ib, 1,
504 &amdgpu_vm_free_job,
505 AMDGPU_FENCE_OWNER_VM,
506 &fence);
507 if (r)
508 goto error_free;
05906dec 509
4af9f07c 510 amdgpu_bo_fence(pd, fence, true);
05906dec
BN
511 fence_put(vm->page_directory_fence);
512 vm->page_directory_fence = fence_get(fence);
281b4223 513 fence_put(fence);
d38ceaf9 514 }
d5fc5e82
CZ
515
516 if (!amdgpu_enable_scheduler || ib->length_dw == 0) {
517 amdgpu_ib_free(adev, ib);
518 kfree(ib);
519 }
d38ceaf9
AD
520
521 return 0;
d5fc5e82
CZ
522
523error_free:
d5fc5e82
CZ
524 amdgpu_ib_free(adev, ib);
525 kfree(ib);
4af9f07c 526 return r;
d38ceaf9
AD
527}
528
529/**
530 * amdgpu_vm_frag_ptes - add fragment information to PTEs
531 *
532 * @adev: amdgpu_device pointer
533 * @ib: IB for the update
534 * @pe_start: first PTE to handle
535 * @pe_end: last PTE to handle
536 * @addr: addr those PTEs should point to
537 * @flags: hw mapping flags
538 * @gtt_flags: GTT hw mapping flags
539 *
540 * Global and local mutex must be locked!
541 */
542static void amdgpu_vm_frag_ptes(struct amdgpu_device *adev,
543 struct amdgpu_ib *ib,
544 uint64_t pe_start, uint64_t pe_end,
545 uint64_t addr, uint32_t flags,
546 uint32_t gtt_flags)
547{
548 /**
549 * The MC L1 TLB supports variable sized pages, based on a fragment
550 * field in the PTE. When this field is set to a non-zero value, page
551 * granularity is increased from 4KB to (1 << (12 + frag)). The PTE
552 * flags are considered valid for all PTEs within the fragment range
553 * and corresponding mappings are assumed to be physically contiguous.
554 *
555 * The L1 TLB can store a single PTE for the whole fragment,
556 * significantly increasing the space available for translation
557 * caching. This leads to large improvements in throughput when the
558 * TLB is under pressure.
559 *
560 * The L2 TLB distributes small and large fragments into two
561 * asymmetric partitions. The large fragment cache is significantly
562 * larger. Thus, we try to use large fragments wherever possible.
563 * Userspace can support this by aligning virtual base address and
564 * allocation size to the fragment size.
565 */
566
567 /* SI and newer are optimized for 64KB */
568 uint64_t frag_flags = AMDGPU_PTE_FRAG_64KB;
569 uint64_t frag_align = 0x80;
570
571 uint64_t frag_start = ALIGN(pe_start, frag_align);
572 uint64_t frag_end = pe_end & ~(frag_align - 1);
573
574 unsigned count;
575
576 /* system pages are non continuously */
577 if ((flags & AMDGPU_PTE_SYSTEM) || !(flags & AMDGPU_PTE_VALID) ||
578 (frag_start >= frag_end)) {
579
580 count = (pe_end - pe_start) / 8;
581 amdgpu_vm_update_pages(adev, ib, pe_start, addr, count,
582 AMDGPU_GPU_PAGE_SIZE, flags, gtt_flags);
583 return;
584 }
585
586 /* handle the 4K area at the beginning */
587 if (pe_start != frag_start) {
588 count = (frag_start - pe_start) / 8;
589 amdgpu_vm_update_pages(adev, ib, pe_start, addr, count,
590 AMDGPU_GPU_PAGE_SIZE, flags, gtt_flags);
591 addr += AMDGPU_GPU_PAGE_SIZE * count;
592 }
593
594 /* handle the area in the middle */
595 count = (frag_end - frag_start) / 8;
596 amdgpu_vm_update_pages(adev, ib, frag_start, addr, count,
597 AMDGPU_GPU_PAGE_SIZE, flags | frag_flags,
598 gtt_flags);
599
600 /* handle the 4K area at the end */
601 if (frag_end != pe_end) {
602 addr += AMDGPU_GPU_PAGE_SIZE * count;
603 count = (pe_end - frag_end) / 8;
604 amdgpu_vm_update_pages(adev, ib, frag_end, addr, count,
605 AMDGPU_GPU_PAGE_SIZE, flags, gtt_flags);
606 }
607}
608
609/**
610 * amdgpu_vm_update_ptes - make sure that page tables are valid
611 *
612 * @adev: amdgpu_device pointer
613 * @vm: requested vm
614 * @start: start of GPU address range
615 * @end: end of GPU address range
616 * @dst: destination address to map to
617 * @flags: mapping flags
618 *
619 * Update the page tables in the range @start - @end (cayman+).
620 *
621 * Global and local mutex must be locked!
622 */
623static int amdgpu_vm_update_ptes(struct amdgpu_device *adev,
624 struct amdgpu_vm *vm,
625 struct amdgpu_ib *ib,
626 uint64_t start, uint64_t end,
627 uint64_t dst, uint32_t flags,
628 uint32_t gtt_flags)
629{
630 uint64_t mask = AMDGPU_VM_PTE_COUNT - 1;
631 uint64_t last_pte = ~0, last_dst = ~0;
a60c4232 632 void *owner = AMDGPU_FENCE_OWNER_VM;
d38ceaf9
AD
633 unsigned count = 0;
634 uint64_t addr;
635
a60c4232
CK
636 /* sync to everything on unmapping */
637 if (!(flags & AMDGPU_PTE_VALID))
638 owner = AMDGPU_FENCE_OWNER_UNDEFINED;
639
d38ceaf9
AD
640 /* walk over the address space and update the page tables */
641 for (addr = start; addr < end; ) {
642 uint64_t pt_idx = addr >> amdgpu_vm_block_size;
643 struct amdgpu_bo *pt = vm->page_tables[pt_idx].bo;
644 unsigned nptes;
645 uint64_t pte;
646 int r;
647
a60c4232 648 amdgpu_sync_resv(adev, &ib->sync, pt->tbo.resv, owner);
d38ceaf9
AD
649 r = reservation_object_reserve_shared(pt->tbo.resv);
650 if (r)
651 return r;
652
653 if ((addr & ~mask) == (end & ~mask))
654 nptes = end - addr;
655 else
656 nptes = AMDGPU_VM_PTE_COUNT - (addr & mask);
657
658 pte = amdgpu_bo_gpu_offset(pt);
659 pte += (addr & mask) * 8;
660
661 if ((last_pte + 8 * count) != pte) {
662
663 if (count) {
664 amdgpu_vm_frag_ptes(adev, ib, last_pte,
665 last_pte + 8 * count,
666 last_dst, flags,
667 gtt_flags);
668 }
669
670 count = nptes;
671 last_pte = pte;
672 last_dst = dst;
673 } else {
674 count += nptes;
675 }
676
677 addr += nptes;
678 dst += nptes * AMDGPU_GPU_PAGE_SIZE;
679 }
680
681 if (count) {
682 amdgpu_vm_frag_ptes(adev, ib, last_pte,
683 last_pte + 8 * count,
684 last_dst, flags, gtt_flags);
685 }
686
687 return 0;
688}
689
d38ceaf9
AD
690/**
691 * amdgpu_vm_bo_update_mapping - update a mapping in the vm page table
692 *
693 * @adev: amdgpu_device pointer
694 * @vm: requested vm
695 * @mapping: mapped range and flags to use for the update
696 * @addr: addr to set the area to
697 * @gtt_flags: flags as they are used for GTT
698 * @fence: optional resulting fence
699 *
700 * Fill in the page table entries for @mapping.
701 * Returns 0 for success, -EINVAL for failure.
702 *
703 * Object have to be reserved and mutex must be locked!
704 */
705static int amdgpu_vm_bo_update_mapping(struct amdgpu_device *adev,
706 struct amdgpu_vm *vm,
707 struct amdgpu_bo_va_mapping *mapping,
708 uint64_t addr, uint32_t gtt_flags,
bb1e38a4 709 struct fence **fence)
d38ceaf9
AD
710{
711 struct amdgpu_ring *ring = adev->vm_manager.vm_pte_funcs_ring;
712 unsigned nptes, ncmds, ndw;
713 uint32_t flags = gtt_flags;
d5fc5e82 714 struct amdgpu_ib *ib;
4af9f07c 715 struct fence *f = NULL;
d38ceaf9
AD
716 int r;
717
718 /* normally,bo_va->flags only contians READABLE and WIRTEABLE bit go here
719 * but in case of something, we filter the flags in first place
720 */
721 if (!(mapping->flags & AMDGPU_PTE_READABLE))
722 flags &= ~AMDGPU_PTE_READABLE;
723 if (!(mapping->flags & AMDGPU_PTE_WRITEABLE))
724 flags &= ~AMDGPU_PTE_WRITEABLE;
725
726 trace_amdgpu_vm_bo_update(mapping);
727
728 nptes = mapping->it.last - mapping->it.start + 1;
729
730 /*
731 * reserve space for one command every (1 << BLOCK_SIZE)
732 * entries or 2k dwords (whatever is smaller)
733 */
734 ncmds = (nptes >> min(amdgpu_vm_block_size, 11)) + 1;
735
736 /* padding, etc. */
737 ndw = 64;
738
739 if ((flags & AMDGPU_PTE_SYSTEM) && (flags == gtt_flags)) {
740 /* only copy commands needed */
741 ndw += ncmds * 7;
742
743 } else if (flags & AMDGPU_PTE_SYSTEM) {
744 /* header for write data commands */
745 ndw += ncmds * 4;
746
747 /* body of write data command */
748 ndw += nptes * 2;
749
750 } else {
751 /* set page commands needed */
752 ndw += ncmds * 10;
753
754 /* two extra commands for begin/end of fragment */
755 ndw += 2 * 10;
756 }
757
758 /* update too big for an IB */
759 if (ndw > 0xfffff)
760 return -ENOMEM;
761
d5fc5e82
CZ
762 ib = kzalloc(sizeof(struct amdgpu_ib), GFP_KERNEL);
763 if (!ib)
764 return -ENOMEM;
765
766 r = amdgpu_ib_get(ring, NULL, ndw * 4, ib);
767 if (r) {
768 kfree(ib);
d38ceaf9 769 return r;
d5fc5e82
CZ
770 }
771
772 ib->length_dw = 0;
d38ceaf9 773
d5fc5e82 774 r = amdgpu_vm_update_ptes(adev, vm, ib, mapping->it.start,
d38ceaf9
AD
775 mapping->it.last + 1, addr + mapping->offset,
776 flags, gtt_flags);
777
778 if (r) {
d5fc5e82
CZ
779 amdgpu_ib_free(adev, ib);
780 kfree(ib);
d38ceaf9
AD
781 return r;
782 }
783
d5fc5e82
CZ
784 amdgpu_vm_pad_ib(adev, ib);
785 WARN_ON(ib->length_dw > ndw);
4af9f07c
CZ
786 r = amdgpu_sched_ib_submit_kernel_helper(adev, ring, ib, 1,
787 &amdgpu_vm_free_job,
788 AMDGPU_FENCE_OWNER_VM,
789 &f);
790 if (r)
791 goto error_free;
d38ceaf9 792
bf60efd3 793 amdgpu_bo_fence(vm->page_directory, f, true);
4af9f07c
CZ
794 if (fence) {
795 fence_put(*fence);
796 *fence = fence_get(f);
797 }
281b4223 798 fence_put(f);
4af9f07c 799 if (!amdgpu_enable_scheduler) {
d5fc5e82
CZ
800 amdgpu_ib_free(adev, ib);
801 kfree(ib);
802 }
d38ceaf9 803 return 0;
d5fc5e82
CZ
804
805error_free:
d5fc5e82
CZ
806 amdgpu_ib_free(adev, ib);
807 kfree(ib);
4af9f07c 808 return r;
d38ceaf9
AD
809}
810
811/**
812 * amdgpu_vm_bo_update - update all BO mappings in the vm page table
813 *
814 * @adev: amdgpu_device pointer
815 * @bo_va: requested BO and VM object
816 * @mem: ttm mem
817 *
818 * Fill in the page table entries for @bo_va.
819 * Returns 0 for success, -EINVAL for failure.
820 *
821 * Object have to be reserved and mutex must be locked!
822 */
823int amdgpu_vm_bo_update(struct amdgpu_device *adev,
824 struct amdgpu_bo_va *bo_va,
825 struct ttm_mem_reg *mem)
826{
827 struct amdgpu_vm *vm = bo_va->vm;
828 struct amdgpu_bo_va_mapping *mapping;
829 uint32_t flags;
830 uint64_t addr;
831 int r;
832
833 if (mem) {
b7d698d7 834 addr = (u64)mem->start << PAGE_SHIFT;
d38ceaf9
AD
835 if (mem->mem_type != TTM_PL_TT)
836 addr += adev->vm_manager.vram_base_offset;
837 } else {
838 addr = 0;
839 }
840
d38ceaf9
AD
841 flags = amdgpu_ttm_tt_pte_flags(adev, bo_va->bo->tbo.ttm, mem);
842
7fc11959
CK
843 spin_lock(&vm->status_lock);
844 if (!list_empty(&bo_va->vm_status))
845 list_splice_init(&bo_va->valids, &bo_va->invalids);
846 spin_unlock(&vm->status_lock);
847
848 list_for_each_entry(mapping, &bo_va->invalids, list) {
d38ceaf9
AD
849 r = amdgpu_vm_bo_update_mapping(adev, vm, mapping, addr,
850 flags, &bo_va->last_pt_update);
851 if (r)
852 return r;
853 }
854
d6c10f6b
CK
855 if (trace_amdgpu_vm_bo_mapping_enabled()) {
856 list_for_each_entry(mapping, &bo_va->valids, list)
857 trace_amdgpu_vm_bo_mapping(mapping);
858
859 list_for_each_entry(mapping, &bo_va->invalids, list)
860 trace_amdgpu_vm_bo_mapping(mapping);
861 }
862
d38ceaf9 863 spin_lock(&vm->status_lock);
6d1d0ef7 864 list_splice_init(&bo_va->invalids, &bo_va->valids);
d38ceaf9 865 list_del_init(&bo_va->vm_status);
7fc11959
CK
866 if (!mem)
867 list_add(&bo_va->vm_status, &vm->cleared);
d38ceaf9
AD
868 spin_unlock(&vm->status_lock);
869
870 return 0;
871}
872
873/**
874 * amdgpu_vm_clear_freed - clear freed BOs in the PT
875 *
876 * @adev: amdgpu_device pointer
877 * @vm: requested vm
878 *
879 * Make sure all freed BOs are cleared in the PT.
880 * Returns 0 for success.
881 *
882 * PTs have to be reserved and mutex must be locked!
883 */
884int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
885 struct amdgpu_vm *vm)
886{
887 struct amdgpu_bo_va_mapping *mapping;
888 int r;
889
890 while (!list_empty(&vm->freed)) {
891 mapping = list_first_entry(&vm->freed,
892 struct amdgpu_bo_va_mapping, list);
893 list_del(&mapping->list);
894
895 r = amdgpu_vm_bo_update_mapping(adev, vm, mapping, 0, 0, NULL);
896 kfree(mapping);
897 if (r)
898 return r;
899
900 }
901 return 0;
902
903}
904
905/**
906 * amdgpu_vm_clear_invalids - clear invalidated BOs in the PT
907 *
908 * @adev: amdgpu_device pointer
909 * @vm: requested vm
910 *
911 * Make sure all invalidated BOs are cleared in the PT.
912 * Returns 0 for success.
913 *
914 * PTs have to be reserved and mutex must be locked!
915 */
916int amdgpu_vm_clear_invalids(struct amdgpu_device *adev,
cfe2c978 917 struct amdgpu_vm *vm, struct amdgpu_sync *sync)
d38ceaf9 918{
cfe2c978 919 struct amdgpu_bo_va *bo_va = NULL;
91e1a520 920 int r = 0;
d38ceaf9
AD
921
922 spin_lock(&vm->status_lock);
923 while (!list_empty(&vm->invalidated)) {
924 bo_va = list_first_entry(&vm->invalidated,
925 struct amdgpu_bo_va, vm_status);
926 spin_unlock(&vm->status_lock);
927
928 r = amdgpu_vm_bo_update(adev, bo_va, NULL);
929 if (r)
930 return r;
931
932 spin_lock(&vm->status_lock);
933 }
934 spin_unlock(&vm->status_lock);
935
cfe2c978 936 if (bo_va)
bb1e38a4 937 r = amdgpu_sync_fence(adev, sync, bo_va->last_pt_update);
91e1a520
CK
938
939 return r;
d38ceaf9
AD
940}
941
942/**
943 * amdgpu_vm_bo_add - add a bo to a specific vm
944 *
945 * @adev: amdgpu_device pointer
946 * @vm: requested vm
947 * @bo: amdgpu buffer object
948 *
949 * Add @bo into the requested vm (cayman+).
950 * Add @bo to the list of bos associated with the vm
951 * Returns newly added bo_va or NULL for failure
952 *
953 * Object has to be reserved!
954 */
955struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
956 struct amdgpu_vm *vm,
957 struct amdgpu_bo *bo)
958{
959 struct amdgpu_bo_va *bo_va;
960
961 bo_va = kzalloc(sizeof(struct amdgpu_bo_va), GFP_KERNEL);
962 if (bo_va == NULL) {
963 return NULL;
964 }
965 bo_va->vm = vm;
966 bo_va->bo = bo;
d38ceaf9
AD
967 bo_va->ref_count = 1;
968 INIT_LIST_HEAD(&bo_va->bo_list);
7fc11959
CK
969 INIT_LIST_HEAD(&bo_va->valids);
970 INIT_LIST_HEAD(&bo_va->invalids);
d38ceaf9
AD
971 INIT_LIST_HEAD(&bo_va->vm_status);
972
d38ceaf9 973 list_add_tail(&bo_va->bo_list, &bo->va);
d38ceaf9
AD
974
975 return bo_va;
976}
977
978/**
979 * amdgpu_vm_bo_map - map bo inside a vm
980 *
981 * @adev: amdgpu_device pointer
982 * @bo_va: bo_va to store the address
983 * @saddr: where to map the BO
984 * @offset: requested offset in the BO
985 * @flags: attributes of pages (read/write/valid/etc.)
986 *
987 * Add a mapping of the BO at the specefied addr into the VM.
988 * Returns 0 for success, error for failure.
989 *
990 * Object has to be reserved and gets unreserved by this function!
991 */
992int amdgpu_vm_bo_map(struct amdgpu_device *adev,
993 struct amdgpu_bo_va *bo_va,
994 uint64_t saddr, uint64_t offset,
995 uint64_t size, uint32_t flags)
996{
997 struct amdgpu_bo_va_mapping *mapping;
998 struct amdgpu_vm *vm = bo_va->vm;
999 struct interval_tree_node *it;
1000 unsigned last_pfn, pt_idx;
1001 uint64_t eaddr;
1002 int r;
1003
0be52de9
CK
1004 /* validate the parameters */
1005 if (saddr & AMDGPU_GPU_PAGE_MASK || offset & AMDGPU_GPU_PAGE_MASK ||
1006 size == 0 || size & AMDGPU_GPU_PAGE_MASK) {
1007 amdgpu_bo_unreserve(bo_va->bo);
1008 return -EINVAL;
1009 }
1010
d38ceaf9
AD
1011 /* make sure object fit at this offset */
1012 eaddr = saddr + size;
1013 if ((saddr >= eaddr) || (offset + size > amdgpu_bo_size(bo_va->bo))) {
1014 amdgpu_bo_unreserve(bo_va->bo);
1015 return -EINVAL;
1016 }
1017
1018 last_pfn = eaddr / AMDGPU_GPU_PAGE_SIZE;
1019 if (last_pfn > adev->vm_manager.max_pfn) {
1020 dev_err(adev->dev, "va above limit (0x%08X > 0x%08X)\n",
1021 last_pfn, adev->vm_manager.max_pfn);
1022 amdgpu_bo_unreserve(bo_va->bo);
1023 return -EINVAL;
1024 }
1025
d38ceaf9
AD
1026 saddr /= AMDGPU_GPU_PAGE_SIZE;
1027 eaddr /= AMDGPU_GPU_PAGE_SIZE;
1028
1029 it = interval_tree_iter_first(&vm->va, saddr, eaddr - 1);
1030 if (it) {
1031 struct amdgpu_bo_va_mapping *tmp;
1032 tmp = container_of(it, struct amdgpu_bo_va_mapping, it);
1033 /* bo and tmp overlap, invalid addr */
1034 dev_err(adev->dev, "bo %p va 0x%010Lx-0x%010Lx conflict with "
1035 "0x%010lx-0x%010lx\n", bo_va->bo, saddr, eaddr,
1036 tmp->it.start, tmp->it.last + 1);
1037 amdgpu_bo_unreserve(bo_va->bo);
1038 r = -EINVAL;
f48b2659 1039 goto error;
d38ceaf9
AD
1040 }
1041
1042 mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
1043 if (!mapping) {
1044 amdgpu_bo_unreserve(bo_va->bo);
1045 r = -ENOMEM;
f48b2659 1046 goto error;
d38ceaf9
AD
1047 }
1048
1049 INIT_LIST_HEAD(&mapping->list);
1050 mapping->it.start = saddr;
1051 mapping->it.last = eaddr - 1;
1052 mapping->offset = offset;
1053 mapping->flags = flags;
1054
7fc11959 1055 list_add(&mapping->list, &bo_va->invalids);
d38ceaf9 1056 interval_tree_insert(&mapping->it, &vm->va);
93e3e438 1057 trace_amdgpu_vm_bo_map(bo_va, mapping);
d38ceaf9
AD
1058
1059 /* Make sure the page tables are allocated */
1060 saddr >>= amdgpu_vm_block_size;
1061 eaddr >>= amdgpu_vm_block_size;
1062
1063 BUG_ON(eaddr >= amdgpu_vm_num_pdes(adev));
1064
1065 if (eaddr > vm->max_pde_used)
1066 vm->max_pde_used = eaddr;
1067
1068 amdgpu_bo_unreserve(bo_va->bo);
1069
1070 /* walk over the address space and allocate the page tables */
1071 for (pt_idx = saddr; pt_idx <= eaddr; ++pt_idx) {
bf60efd3 1072 struct reservation_object *resv = vm->page_directory->tbo.resv;
d38ceaf9
AD
1073 struct amdgpu_bo *pt;
1074
1075 if (vm->page_tables[pt_idx].bo)
1076 continue;
1077
bf60efd3 1078 ww_mutex_lock(&resv->lock, NULL);
d38ceaf9
AD
1079 r = amdgpu_bo_create(adev, AMDGPU_VM_PTE_COUNT * 8,
1080 AMDGPU_GPU_PAGE_SIZE, true,
857d913d
AD
1081 AMDGPU_GEM_DOMAIN_VRAM,
1082 AMDGPU_GEM_CREATE_NO_CPU_ACCESS,
bf60efd3
CK
1083 NULL, resv, &pt);
1084 ww_mutex_unlock(&resv->lock);
d38ceaf9
AD
1085 if (r)
1086 goto error_free;
1087
1088 r = amdgpu_vm_clear_bo(adev, pt);
1089 if (r) {
1090 amdgpu_bo_unref(&pt);
1091 goto error_free;
1092 }
1093
d38ceaf9
AD
1094 vm->page_tables[pt_idx].addr = 0;
1095 vm->page_tables[pt_idx].bo = pt;
1096 }
1097
d38ceaf9
AD
1098 return 0;
1099
1100error_free:
d38ceaf9
AD
1101 list_del(&mapping->list);
1102 interval_tree_remove(&mapping->it, &vm->va);
93e3e438 1103 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
d38ceaf9
AD
1104 kfree(mapping);
1105
f48b2659 1106error:
d38ceaf9
AD
1107 return r;
1108}
1109
1110/**
1111 * amdgpu_vm_bo_unmap - remove bo mapping from vm
1112 *
1113 * @adev: amdgpu_device pointer
1114 * @bo_va: bo_va to remove the address from
1115 * @saddr: where to the BO is mapped
1116 *
1117 * Remove a mapping of the BO at the specefied addr from the VM.
1118 * Returns 0 for success, error for failure.
1119 *
1120 * Object has to be reserved and gets unreserved by this function!
1121 */
1122int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
1123 struct amdgpu_bo_va *bo_va,
1124 uint64_t saddr)
1125{
1126 struct amdgpu_bo_va_mapping *mapping;
1127 struct amdgpu_vm *vm = bo_va->vm;
7fc11959 1128 bool valid = true;
d38ceaf9 1129
6c7fc503
CK
1130 saddr /= AMDGPU_GPU_PAGE_SIZE;
1131
7fc11959 1132 list_for_each_entry(mapping, &bo_va->valids, list) {
d38ceaf9
AD
1133 if (mapping->it.start == saddr)
1134 break;
1135 }
1136
7fc11959
CK
1137 if (&mapping->list == &bo_va->valids) {
1138 valid = false;
1139
1140 list_for_each_entry(mapping, &bo_va->invalids, list) {
1141 if (mapping->it.start == saddr)
1142 break;
1143 }
1144
1145 if (&mapping->list == &bo_va->invalids) {
1146 amdgpu_bo_unreserve(bo_va->bo);
1147 return -ENOENT;
1148 }
d38ceaf9
AD
1149 }
1150
d38ceaf9
AD
1151 list_del(&mapping->list);
1152 interval_tree_remove(&mapping->it, &vm->va);
93e3e438 1153 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
d38ceaf9 1154
7fc11959 1155 if (valid)
d38ceaf9 1156 list_add(&mapping->list, &vm->freed);
7fc11959 1157 else
d38ceaf9 1158 kfree(mapping);
d38ceaf9
AD
1159 amdgpu_bo_unreserve(bo_va->bo);
1160
1161 return 0;
1162}
1163
1164/**
1165 * amdgpu_vm_bo_rmv - remove a bo to a specific vm
1166 *
1167 * @adev: amdgpu_device pointer
1168 * @bo_va: requested bo_va
1169 *
1170 * Remove @bo_va->bo from the requested vm (cayman+).
1171 *
1172 * Object have to be reserved!
1173 */
1174void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
1175 struct amdgpu_bo_va *bo_va)
1176{
1177 struct amdgpu_bo_va_mapping *mapping, *next;
1178 struct amdgpu_vm *vm = bo_va->vm;
1179
1180 list_del(&bo_va->bo_list);
1181
d38ceaf9
AD
1182 spin_lock(&vm->status_lock);
1183 list_del(&bo_va->vm_status);
1184 spin_unlock(&vm->status_lock);
1185
7fc11959 1186 list_for_each_entry_safe(mapping, next, &bo_va->valids, list) {
d38ceaf9
AD
1187 list_del(&mapping->list);
1188 interval_tree_remove(&mapping->it, &vm->va);
93e3e438 1189 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
7fc11959
CK
1190 list_add(&mapping->list, &vm->freed);
1191 }
1192 list_for_each_entry_safe(mapping, next, &bo_va->invalids, list) {
1193 list_del(&mapping->list);
1194 interval_tree_remove(&mapping->it, &vm->va);
1195 kfree(mapping);
d38ceaf9 1196 }
7fc11959 1197
bb1e38a4 1198 fence_put(bo_va->last_pt_update);
d38ceaf9 1199 kfree(bo_va);
d38ceaf9
AD
1200}
1201
1202/**
1203 * amdgpu_vm_bo_invalidate - mark the bo as invalid
1204 *
1205 * @adev: amdgpu_device pointer
1206 * @vm: requested vm
1207 * @bo: amdgpu buffer object
1208 *
1209 * Mark @bo as invalid (cayman+).
1210 */
1211void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
1212 struct amdgpu_bo *bo)
1213{
1214 struct amdgpu_bo_va *bo_va;
1215
1216 list_for_each_entry(bo_va, &bo->va, bo_list) {
7fc11959
CK
1217 spin_lock(&bo_va->vm->status_lock);
1218 if (list_empty(&bo_va->vm_status))
d38ceaf9 1219 list_add(&bo_va->vm_status, &bo_va->vm->invalidated);
7fc11959 1220 spin_unlock(&bo_va->vm->status_lock);
d38ceaf9
AD
1221 }
1222}
1223
1224/**
1225 * amdgpu_vm_init - initialize a vm instance
1226 *
1227 * @adev: amdgpu_device pointer
1228 * @vm: requested vm
1229 *
1230 * Init @vm fields (cayman+).
1231 */
1232int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm)
1233{
1234 const unsigned align = min(AMDGPU_VM_PTB_ALIGN_SIZE,
1235 AMDGPU_VM_PTE_COUNT * 8);
1236 unsigned pd_size, pd_entries, pts_size;
1237 int i, r;
1238
1239 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
1240 vm->ids[i].id = 0;
1241 vm->ids[i].flushed_updates = NULL;
1242 vm->ids[i].last_id_use = NULL;
1243 }
1244 mutex_init(&vm->mutex);
1245 vm->va = RB_ROOT;
1246 spin_lock_init(&vm->status_lock);
1247 INIT_LIST_HEAD(&vm->invalidated);
7fc11959 1248 INIT_LIST_HEAD(&vm->cleared);
d38ceaf9
AD
1249 INIT_LIST_HEAD(&vm->freed);
1250
1251 pd_size = amdgpu_vm_directory_size(adev);
1252 pd_entries = amdgpu_vm_num_pdes(adev);
1253
1254 /* allocate page table array */
1255 pts_size = pd_entries * sizeof(struct amdgpu_vm_pt);
1256 vm->page_tables = kzalloc(pts_size, GFP_KERNEL);
1257 if (vm->page_tables == NULL) {
1258 DRM_ERROR("Cannot allocate memory for page table array\n");
1259 return -ENOMEM;
1260 }
1261
05906dec
BN
1262 vm->page_directory_fence = NULL;
1263
d38ceaf9 1264 r = amdgpu_bo_create(adev, pd_size, align, true,
857d913d
AD
1265 AMDGPU_GEM_DOMAIN_VRAM,
1266 AMDGPU_GEM_CREATE_NO_CPU_ACCESS,
72d7668b 1267 NULL, NULL, &vm->page_directory);
d38ceaf9
AD
1268 if (r)
1269 return r;
1270
1271 r = amdgpu_vm_clear_bo(adev, vm->page_directory);
1272 if (r) {
1273 amdgpu_bo_unref(&vm->page_directory);
1274 vm->page_directory = NULL;
1275 return r;
1276 }
1277
1278 return 0;
1279}
1280
1281/**
1282 * amdgpu_vm_fini - tear down a vm instance
1283 *
1284 * @adev: amdgpu_device pointer
1285 * @vm: requested vm
1286 *
1287 * Tear down @vm (cayman+).
1288 * Unbind the VM and remove all bos from the vm bo list
1289 */
1290void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
1291{
1292 struct amdgpu_bo_va_mapping *mapping, *tmp;
1293 int i;
1294
1295 if (!RB_EMPTY_ROOT(&vm->va)) {
1296 dev_err(adev->dev, "still active bo inside vm\n");
1297 }
1298 rbtree_postorder_for_each_entry_safe(mapping, tmp, &vm->va, it.rb) {
1299 list_del(&mapping->list);
1300 interval_tree_remove(&mapping->it, &vm->va);
1301 kfree(mapping);
1302 }
1303 list_for_each_entry_safe(mapping, tmp, &vm->freed, list) {
1304 list_del(&mapping->list);
1305 kfree(mapping);
1306 }
1307
1308 for (i = 0; i < amdgpu_vm_num_pdes(adev); i++)
1309 amdgpu_bo_unref(&vm->page_tables[i].bo);
1310 kfree(vm->page_tables);
1311
1312 amdgpu_bo_unref(&vm->page_directory);
05906dec 1313 fence_put(vm->page_directory_fence);
d38ceaf9
AD
1314
1315 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
3c62338c 1316 fence_put(vm->ids[i].flushed_updates);
d5283298 1317 fence_put(vm->ids[i].last_id_use);
d38ceaf9
AD
1318 }
1319
1320 mutex_destroy(&vm->mutex);
1321}
This page took 0.108522 seconds and 5 git commands to generate.