blob: 4ca2779ed8282fa742e7e2a6c3d208a7b5b50519 [file] [log] [blame]
Christian König2280ab52014-02-20 10:25:15 +01001/*
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/radeon_drm.h>
30#include "radeon.h"
31#include "radeon_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 * radeon_vm_num_pde - return the number of page directory entries
55 *
56 * @rdev: radeon_device pointer
57 *
58 * Calculate the number of page directory entries (cayman+).
59 */
60static unsigned radeon_vm_num_pdes(struct radeon_device *rdev)
61{
Christian König4510fb92014-06-05 23:56:50 -040062 return rdev->vm_manager.max_pfn >> radeon_vm_block_size;
Christian König2280ab52014-02-20 10:25:15 +010063}
64
65/**
66 * radeon_vm_directory_size - returns the size of the page directory in bytes
67 *
68 * @rdev: radeon_device pointer
69 *
70 * Calculate the size of the page directory in bytes (cayman+).
71 */
72static unsigned radeon_vm_directory_size(struct radeon_device *rdev)
73{
74 return RADEON_GPU_PAGE_ALIGN(radeon_vm_num_pdes(rdev) * 8);
75}
76
77/**
78 * radeon_vm_manager_init - init the vm manager
79 *
80 * @rdev: radeon_device pointer
81 *
82 * Init the vm manager (cayman+).
83 * Returns 0 for success, error for failure.
84 */
85int radeon_vm_manager_init(struct radeon_device *rdev)
86{
Christian König2280ab52014-02-20 10:25:15 +010087 int r;
Christian König2280ab52014-02-20 10:25:15 +010088
89 if (!rdev->vm_manager.enabled) {
Christian König2280ab52014-02-20 10:25:15 +010090 r = radeon_asic_vm_init(rdev);
91 if (r)
92 return r;
93
94 rdev->vm_manager.enabled = true;
Christian König2280ab52014-02-20 10:25:15 +010095 }
96 return 0;
97}
98
99/**
Christian König2280ab52014-02-20 10:25:15 +0100100 * radeon_vm_manager_fini - tear down the vm manager
101 *
102 * @rdev: radeon_device pointer
103 *
104 * Tear down the VM manager (cayman+).
105 */
106void radeon_vm_manager_fini(struct radeon_device *rdev)
107{
Christian König2280ab52014-02-20 10:25:15 +0100108 int i;
109
110 if (!rdev->vm_manager.enabled)
111 return;
112
Christian König6d2f2942014-02-20 13:42:17 +0100113 for (i = 0; i < RADEON_NUM_VM; ++i)
Christian König2280ab52014-02-20 10:25:15 +0100114 radeon_fence_unref(&rdev->vm_manager.active[i]);
Christian König2280ab52014-02-20 10:25:15 +0100115 radeon_asic_vm_fini(rdev);
Christian König2280ab52014-02-20 10:25:15 +0100116 rdev->vm_manager.enabled = false;
117}
118
119/**
Christian König6d2f2942014-02-20 13:42:17 +0100120 * radeon_vm_get_bos - add the vm BOs to a validation list
Christian König2280ab52014-02-20 10:25:15 +0100121 *
Christian König6d2f2942014-02-20 13:42:17 +0100122 * @vm: vm providing the BOs
123 * @head: head of validation list
Christian König2280ab52014-02-20 10:25:15 +0100124 *
Christian König6d2f2942014-02-20 13:42:17 +0100125 * Add the page directory to the list of BOs to
126 * validate for command submission (cayman+).
Christian König2280ab52014-02-20 10:25:15 +0100127 */
Christian Königdf0af442014-03-03 12:38:08 +0100128struct radeon_cs_reloc *radeon_vm_get_bos(struct radeon_device *rdev,
129 struct radeon_vm *vm,
130 struct list_head *head)
Christian König2280ab52014-02-20 10:25:15 +0100131{
Christian Königdf0af442014-03-03 12:38:08 +0100132 struct radeon_cs_reloc *list;
Christian König7d95f6c2014-05-28 12:24:17 +0200133 unsigned i, idx;
Christian König2280ab52014-02-20 10:25:15 +0100134
Michel Dänzere5a5fd4d2014-10-20 18:40:54 +0900135 list = drm_malloc_ab(vm->max_pde_used + 2,
136 sizeof(struct radeon_cs_reloc));
Christian König6d2f2942014-02-20 13:42:17 +0100137 if (!list)
138 return NULL;
Christian König2280ab52014-02-20 10:25:15 +0100139
Christian König6d2f2942014-02-20 13:42:17 +0100140 /* add the vm page table to the list */
Christian Königdf0af442014-03-03 12:38:08 +0100141 list[0].gobj = NULL;
142 list[0].robj = vm->page_directory;
Christian Königce6758c2014-06-02 17:33:07 +0200143 list[0].prefered_domains = RADEON_GEM_DOMAIN_VRAM;
144 list[0].allowed_domains = RADEON_GEM_DOMAIN_VRAM;
Christian König6d2f2942014-02-20 13:42:17 +0100145 list[0].tv.bo = &vm->page_directory->tbo;
Christian König587cdda2014-11-19 14:01:23 +0100146 list[0].tv.shared = true;
Christian Königdf0af442014-03-03 12:38:08 +0100147 list[0].tiling_flags = 0;
148 list[0].handle = 0;
Christian König6d2f2942014-02-20 13:42:17 +0100149 list_add(&list[0].tv.head, head);
Christian König2280ab52014-02-20 10:25:15 +0100150
Christian König6d2f2942014-02-20 13:42:17 +0100151 for (i = 0, idx = 1; i <= vm->max_pde_used; i++) {
152 if (!vm->page_tables[i].bo)
153 continue;
Christian König2280ab52014-02-20 10:25:15 +0100154
Christian Königdf0af442014-03-03 12:38:08 +0100155 list[idx].gobj = NULL;
156 list[idx].robj = vm->page_tables[i].bo;
Christian Königce6758c2014-06-02 17:33:07 +0200157 list[idx].prefered_domains = RADEON_GEM_DOMAIN_VRAM;
158 list[idx].allowed_domains = RADEON_GEM_DOMAIN_VRAM;
Christian Königdf0af442014-03-03 12:38:08 +0100159 list[idx].tv.bo = &list[idx].robj->tbo;
Christian König587cdda2014-11-19 14:01:23 +0100160 list[idx].tv.shared = true;
Christian Königdf0af442014-03-03 12:38:08 +0100161 list[idx].tiling_flags = 0;
162 list[idx].handle = 0;
Christian König6d2f2942014-02-20 13:42:17 +0100163 list_add(&list[idx++].tv.head, head);
Christian König2280ab52014-02-20 10:25:15 +0100164 }
165
Christian König6d2f2942014-02-20 13:42:17 +0100166 return list;
Christian König2280ab52014-02-20 10:25:15 +0100167}
168
169/**
170 * radeon_vm_grab_id - allocate the next free VMID
171 *
172 * @rdev: radeon_device pointer
173 * @vm: vm to allocate id for
174 * @ring: ring we want to submit job to
175 *
176 * Allocate an id for the vm (cayman+).
177 * Returns the fence we need to sync to (if any).
178 *
179 * Global and local mutex must be locked!
180 */
181struct radeon_fence *radeon_vm_grab_id(struct radeon_device *rdev,
182 struct radeon_vm *vm, int ring)
183{
184 struct radeon_fence *best[RADEON_NUM_RINGS] = {};
185 unsigned choices[2] = {};
186 unsigned i;
187
188 /* check if the id is still valid */
189 if (vm->last_id_use && vm->last_id_use == rdev->vm_manager.active[vm->id])
190 return NULL;
191
192 /* we definately need to flush */
193 radeon_fence_unref(&vm->last_flush);
194
195 /* skip over VMID 0, since it is the system VM */
196 for (i = 1; i < rdev->vm_manager.nvm; ++i) {
197 struct radeon_fence *fence = rdev->vm_manager.active[i];
198
199 if (fence == NULL) {
200 /* found a free one */
201 vm->id = i;
202 trace_radeon_vm_grab_id(vm->id, ring);
203 return NULL;
204 }
205
206 if (radeon_fence_is_earlier(fence, best[fence->ring])) {
207 best[fence->ring] = fence;
208 choices[fence->ring == ring ? 0 : 1] = i;
209 }
210 }
211
212 for (i = 0; i < 2; ++i) {
213 if (choices[i]) {
214 vm->id = choices[i];
215 trace_radeon_vm_grab_id(vm->id, ring);
216 return rdev->vm_manager.active[choices[i]];
217 }
218 }
219
220 /* should never happen */
221 BUG();
222 return NULL;
223}
224
225/**
Christian Königfa688342014-02-20 10:47:05 +0100226 * radeon_vm_flush - hardware flush the vm
227 *
228 * @rdev: radeon_device pointer
229 * @vm: vm we want to flush
230 * @ring: ring to use for flush
231 *
232 * Flush the vm (cayman+).
233 *
234 * Global and local mutex must be locked!
235 */
236void radeon_vm_flush(struct radeon_device *rdev,
237 struct radeon_vm *vm,
238 int ring)
239{
Christian König6d2f2942014-02-20 13:42:17 +0100240 uint64_t pd_addr = radeon_bo_gpu_offset(vm->page_directory);
241
Christian Königfa688342014-02-20 10:47:05 +0100242 /* if we can't remember our last VM flush then flush now! */
Alex Deuchercd1c9c12014-08-19 11:48:30 -0400243 if (!vm->last_flush || pd_addr != vm->pd_gpu_addr) {
Christian Königa3a92262014-07-22 17:42:34 +0200244 trace_radeon_vm_flush(pd_addr, ring, vm->id);
Christian König6d2f2942014-02-20 13:42:17 +0100245 vm->pd_gpu_addr = pd_addr;
Christian Königfaffaf62014-11-19 14:01:19 +0100246 radeon_ring_vm_flush(rdev, &rdev->ring[ring],
247 vm->id, vm->pd_gpu_addr);
Christian König6d2f2942014-02-20 13:42:17 +0100248 }
Christian Königfa688342014-02-20 10:47:05 +0100249}
250
251/**
Christian König2280ab52014-02-20 10:25:15 +0100252 * radeon_vm_fence - remember fence for vm
253 *
254 * @rdev: radeon_device pointer
255 * @vm: vm we want to fence
256 * @fence: fence to remember
257 *
258 * Fence the vm (cayman+).
259 * Set the fence used to protect page table and id.
260 *
261 * Global and local mutex must be locked!
262 */
263void radeon_vm_fence(struct radeon_device *rdev,
264 struct radeon_vm *vm,
265 struct radeon_fence *fence)
266{
Christian König2280ab52014-02-20 10:25:15 +0100267 radeon_fence_unref(&vm->fence);
268 vm->fence = radeon_fence_ref(fence);
269
Christian Königfa688342014-02-20 10:47:05 +0100270 radeon_fence_unref(&rdev->vm_manager.active[vm->id]);
271 rdev->vm_manager.active[vm->id] = radeon_fence_ref(fence);
272
Christian König2280ab52014-02-20 10:25:15 +0100273 radeon_fence_unref(&vm->last_id_use);
274 vm->last_id_use = radeon_fence_ref(fence);
Christian Königfa688342014-02-20 10:47:05 +0100275
276 /* we just flushed the VM, remember that */
277 if (!vm->last_flush)
278 vm->last_flush = radeon_fence_ref(fence);
Christian König2280ab52014-02-20 10:25:15 +0100279}
280
281/**
282 * radeon_vm_bo_find - find the bo_va for a specific vm & bo
283 *
284 * @vm: requested vm
285 * @bo: requested buffer object
286 *
287 * Find @bo inside the requested vm (cayman+).
288 * Search inside the @bos vm list for the requested vm
289 * Returns the found bo_va or NULL if none is found
290 *
291 * Object has to be reserved!
292 */
293struct radeon_bo_va *radeon_vm_bo_find(struct radeon_vm *vm,
294 struct radeon_bo *bo)
295{
296 struct radeon_bo_va *bo_va;
297
298 list_for_each_entry(bo_va, &bo->va, bo_list) {
299 if (bo_va->vm == vm) {
300 return bo_va;
301 }
302 }
303 return NULL;
304}
305
306/**
307 * radeon_vm_bo_add - add a bo to a specific vm
308 *
309 * @rdev: radeon_device pointer
310 * @vm: requested vm
311 * @bo: radeon buffer object
312 *
313 * Add @bo into the requested vm (cayman+).
314 * Add @bo to the list of bos associated with the vm
315 * Returns newly added bo_va or NULL for failure
316 *
317 * Object has to be reserved!
318 */
319struct radeon_bo_va *radeon_vm_bo_add(struct radeon_device *rdev,
320 struct radeon_vm *vm,
321 struct radeon_bo *bo)
322{
323 struct radeon_bo_va *bo_va;
324
325 bo_va = kzalloc(sizeof(struct radeon_bo_va), GFP_KERNEL);
326 if (bo_va == NULL) {
327 return NULL;
328 }
329 bo_va->vm = vm;
330 bo_va->bo = bo;
Alex Deucher0aea5e42014-07-30 11:49:56 -0400331 bo_va->it.start = 0;
332 bo_va->it.last = 0;
Christian König2280ab52014-02-20 10:25:15 +0100333 bo_va->flags = 0;
Christian Könige31ad962014-07-18 09:24:53 +0200334 bo_va->addr = 0;
Christian König2280ab52014-02-20 10:25:15 +0100335 bo_va->ref_count = 1;
336 INIT_LIST_HEAD(&bo_va->bo_list);
Christian König036bf462014-07-18 08:56:40 +0200337 INIT_LIST_HEAD(&bo_va->vm_status);
Christian König2280ab52014-02-20 10:25:15 +0100338
339 mutex_lock(&vm->mutex);
Christian König2280ab52014-02-20 10:25:15 +0100340 list_add_tail(&bo_va->bo_list, &bo->va);
341 mutex_unlock(&vm->mutex);
342
343 return bo_va;
344}
345
346/**
Christian König03f62ab2014-07-30 21:05:17 +0200347 * radeon_vm_set_pages - helper to call the right asic function
348 *
349 * @rdev: radeon_device pointer
350 * @ib: indirect buffer to fill with commands
351 * @pe: addr of the page entry
352 * @addr: dst addr to write into pe
353 * @count: number of page entries to update
354 * @incr: increase next addr by incr bytes
355 * @flags: hw access flags
356 *
357 * Traces the parameters and calls the right asic functions
358 * to setup the page table using the DMA.
359 */
360static void radeon_vm_set_pages(struct radeon_device *rdev,
361 struct radeon_ib *ib,
362 uint64_t pe,
363 uint64_t addr, unsigned count,
364 uint32_t incr, uint32_t flags)
365{
366 trace_radeon_vm_set_page(pe, addr, count, incr, flags);
367
368 if ((flags & R600_PTE_GART_MASK) == R600_PTE_GART_MASK) {
369 uint64_t src = rdev->gart.table_addr + (addr >> 12) * 8;
370 radeon_asic_vm_copy_pages(rdev, ib, pe, src, count);
371
372 } else if ((flags & R600_PTE_SYSTEM) || (count < 3)) {
373 radeon_asic_vm_write_pages(rdev, ib, pe, addr,
374 count, incr, flags);
375
376 } else {
377 radeon_asic_vm_set_pages(rdev, ib, pe, addr,
378 count, incr, flags);
379 }
380}
381
382/**
Christian König6d2f2942014-02-20 13:42:17 +0100383 * radeon_vm_clear_bo - initially clear the page dir/table
384 *
385 * @rdev: radeon_device pointer
386 * @bo: bo to clear
387 */
388static int radeon_vm_clear_bo(struct radeon_device *rdev,
389 struct radeon_bo *bo)
390{
Christian König6d2f2942014-02-20 13:42:17 +0100391 struct radeon_ib ib;
392 unsigned entries;
393 uint64_t addr;
394 int r;
395
Christian König587cdda2014-11-19 14:01:23 +0100396 r = radeon_bo_reserve(bo, false);
397 if (r)
Christian König6d2f2942014-02-20 13:42:17 +0100398 return r;
399
Christian König587cdda2014-11-19 14:01:23 +0100400 r = ttm_bo_validate(&bo->tbo, &bo->placement, true, false);
401 if (r)
402 goto error_unreserve;
Christian König6d2f2942014-02-20 13:42:17 +0100403
404 addr = radeon_bo_gpu_offset(bo);
405 entries = radeon_bo_size(bo) / 8;
406
Christian Königcc6f3532014-07-30 21:05:18 +0200407 r = radeon_ib_get(rdev, R600_RING_TYPE_DMA_INDEX, &ib, NULL, 256);
Christian König6d2f2942014-02-20 13:42:17 +0100408 if (r)
Christian König587cdda2014-11-19 14:01:23 +0100409 goto error_unreserve;
Christian König6d2f2942014-02-20 13:42:17 +0100410
411 ib.length_dw = 0;
412
Christian König03f62ab2014-07-30 21:05:17 +0200413 radeon_vm_set_pages(rdev, &ib, addr, 0, entries, 0, 0);
414 radeon_asic_vm_pad_ib(rdev, &ib);
Christian Königcc6f3532014-07-30 21:05:18 +0200415 WARN_ON(ib.length_dw > 64);
Christian König6d2f2942014-02-20 13:42:17 +0100416
Michel Dänzer1538a9e2014-08-18 17:34:55 +0900417 r = radeon_ib_schedule(rdev, &ib, NULL, false);
Christian König6d2f2942014-02-20 13:42:17 +0100418 if (r)
Christian König587cdda2014-11-19 14:01:23 +0100419 goto error_free;
Christian König6d2f2942014-02-20 13:42:17 +0100420
Christian König587cdda2014-11-19 14:01:23 +0100421 radeon_bo_fence(bo, ib.fence, false);
422
423error_free:
Christian König6d2f2942014-02-20 13:42:17 +0100424 radeon_ib_free(rdev, &ib);
425
Christian König587cdda2014-11-19 14:01:23 +0100426error_unreserve:
427 radeon_bo_unreserve(bo);
Christian König6d2f2942014-02-20 13:42:17 +0100428 return r;
429}
430
431/**
Christian König2280ab52014-02-20 10:25:15 +0100432 * radeon_vm_bo_set_addr - set bos virtual address inside a vm
433 *
434 * @rdev: radeon_device pointer
435 * @bo_va: bo_va to store the address
436 * @soffset: requested offset of the buffer in the VM address space
437 * @flags: attributes of pages (read/write/valid/etc.)
438 *
439 * Set offset of @bo_va (cayman+).
440 * Validate and set the offset requested within the vm address space.
441 * Returns 0 for success, error for failure.
442 *
Christian König85761f62014-11-19 14:01:20 +0100443 * Object has to be reserved and gets unreserved by this function!
Christian König2280ab52014-02-20 10:25:15 +0100444 */
445int radeon_vm_bo_set_addr(struct radeon_device *rdev,
446 struct radeon_bo_va *bo_va,
447 uint64_t soffset,
448 uint32_t flags)
449{
450 uint64_t size = radeon_bo_size(bo_va->bo);
Christian König2280ab52014-02-20 10:25:15 +0100451 struct radeon_vm *vm = bo_va->vm;
Christian König6d2f2942014-02-20 13:42:17 +0100452 unsigned last_pfn, pt_idx;
Alex Deucher0aea5e42014-07-30 11:49:56 -0400453 uint64_t eoffset;
Christian König6d2f2942014-02-20 13:42:17 +0100454 int r;
Christian König2280ab52014-02-20 10:25:15 +0100455
456 if (soffset) {
457 /* make sure object fit at this offset */
458 eoffset = soffset + size;
459 if (soffset >= eoffset) {
460 return -EINVAL;
461 }
462
463 last_pfn = eoffset / RADEON_GPU_PAGE_SIZE;
464 if (last_pfn > rdev->vm_manager.max_pfn) {
465 dev_err(rdev->dev, "va above limit (0x%08X > 0x%08X)\n",
466 last_pfn, rdev->vm_manager.max_pfn);
467 return -EINVAL;
468 }
469
470 } else {
471 eoffset = last_pfn = 0;
472 }
473
474 mutex_lock(&vm->mutex);
Alex Deucher0aea5e42014-07-30 11:49:56 -0400475 if (bo_va->it.start || bo_va->it.last) {
476 if (bo_va->addr) {
477 /* add a clone of the bo_va to clear the old address */
478 struct radeon_bo_va *tmp;
479 tmp = kzalloc(sizeof(struct radeon_bo_va), GFP_KERNEL);
Dan Carpenter68b1ea32014-08-07 18:27:37 +0300480 if (!tmp) {
481 mutex_unlock(&vm->mutex);
482 return -ENOMEM;
483 }
Alex Deucher0aea5e42014-07-30 11:49:56 -0400484 tmp->it.start = bo_va->it.start;
485 tmp->it.last = bo_va->it.last;
486 tmp->vm = vm;
487 tmp->addr = bo_va->addr;
Christian Königee26d832014-07-30 21:04:57 +0200488 tmp->bo = radeon_bo_ref(bo_va->bo);
Alex Deucher0aea5e42014-07-30 11:49:56 -0400489 list_add(&tmp->vm_status, &vm->freed);
Christian König2280ab52014-02-20 10:25:15 +0100490 }
491
Alex Deucher0aea5e42014-07-30 11:49:56 -0400492 interval_tree_remove(&bo_va->it, &vm->va);
493 bo_va->it.start = 0;
494 bo_va->it.last = 0;
495 }
496
497 soffset /= RADEON_GPU_PAGE_SIZE;
498 eoffset /= RADEON_GPU_PAGE_SIZE;
499 if (soffset || eoffset) {
500 struct interval_tree_node *it;
501 it = interval_tree_iter_first(&vm->va, soffset, eoffset - 1);
502 if (it) {
503 struct radeon_bo_va *tmp;
504 tmp = container_of(it, struct radeon_bo_va, it);
Christian König2280ab52014-02-20 10:25:15 +0100505 /* bo and tmp overlap, invalid offset */
Alex Deucher0aea5e42014-07-30 11:49:56 -0400506 dev_err(rdev->dev, "bo %p va 0x%010Lx conflict with "
507 "(bo %p 0x%010lx 0x%010lx)\n", bo_va->bo,
508 soffset, tmp->bo, tmp->it.start, tmp->it.last);
Christian König2280ab52014-02-20 10:25:15 +0100509 mutex_unlock(&vm->mutex);
510 return -EINVAL;
511 }
Alex Deucher0aea5e42014-07-30 11:49:56 -0400512 bo_va->it.start = soffset;
513 bo_va->it.last = eoffset - 1;
514 interval_tree_insert(&bo_va->it, &vm->va);
Christian König2280ab52014-02-20 10:25:15 +0100515 }
516
Christian König2280ab52014-02-20 10:25:15 +0100517 bo_va->flags = flags;
Christian Könige31ad962014-07-18 09:24:53 +0200518 bo_va->addr = 0;
Christian König2280ab52014-02-20 10:25:15 +0100519
Alex Deucher0aea5e42014-07-30 11:49:56 -0400520 soffset >>= radeon_vm_block_size;
521 eoffset >>= radeon_vm_block_size;
Christian König4510fb92014-06-05 23:56:50 -0400522
523 BUG_ON(eoffset >= radeon_vm_num_pdes(rdev));
Christian König6d2f2942014-02-20 13:42:17 +0100524
525 if (eoffset > vm->max_pde_used)
526 vm->max_pde_used = eoffset;
527
528 radeon_bo_unreserve(bo_va->bo);
529
530 /* walk over the address space and allocate the page tables */
531 for (pt_idx = soffset; pt_idx <= eoffset; ++pt_idx) {
532 struct radeon_bo *pt;
533
534 if (vm->page_tables[pt_idx].bo)
535 continue;
536
537 /* drop mutex to allocate and clear page table */
538 mutex_unlock(&vm->mutex);
539
540 r = radeon_bo_create(rdev, RADEON_VM_PTE_COUNT * 8,
Christian König7dae77f2014-07-02 21:28:10 +0200541 RADEON_GPU_PAGE_SIZE, true,
Maarten Lankhorst831b6962014-09-18 14:11:56 +0200542 RADEON_GEM_DOMAIN_VRAM, 0,
543 NULL, NULL, &pt);
Christian König6d2f2942014-02-20 13:42:17 +0100544 if (r)
545 return r;
546
547 r = radeon_vm_clear_bo(rdev, pt);
548 if (r) {
549 radeon_bo_unref(&pt);
550 radeon_bo_reserve(bo_va->bo, false);
551 return r;
552 }
553
554 /* aquire mutex again */
555 mutex_lock(&vm->mutex);
556 if (vm->page_tables[pt_idx].bo) {
557 /* someone else allocated the pt in the meantime */
558 mutex_unlock(&vm->mutex);
559 radeon_bo_unref(&pt);
560 mutex_lock(&vm->mutex);
561 continue;
562 }
563
564 vm->page_tables[pt_idx].addr = 0;
565 vm->page_tables[pt_idx].bo = pt;
566 }
567
Christian König2280ab52014-02-20 10:25:15 +0100568 mutex_unlock(&vm->mutex);
Christian König85761f62014-11-19 14:01:20 +0100569 return 0;
Christian König2280ab52014-02-20 10:25:15 +0100570}
571
572/**
573 * radeon_vm_map_gart - get the physical address of a gart page
574 *
575 * @rdev: radeon_device pointer
576 * @addr: the unmapped addr
577 *
578 * Look up the physical address of the page that the pte resolves
579 * to (cayman+).
580 * Returns the physical address of the page.
581 */
582uint64_t radeon_vm_map_gart(struct radeon_device *rdev, uint64_t addr)
583{
584 uint64_t result;
585
586 /* page table offset */
587 result = rdev->gart.pages_addr[addr >> PAGE_SHIFT];
588
589 /* in case cpu page size != gpu page size*/
590 result |= addr & (~PAGE_MASK);
591
592 return result;
593}
594
595/**
596 * radeon_vm_page_flags - translate page flags to what the hw uses
597 *
598 * @flags: flags comming from userspace
599 *
600 * Translate the flags the userspace ABI uses to hw flags.
601 */
602static uint32_t radeon_vm_page_flags(uint32_t flags)
603{
604 uint32_t hw_flags = 0;
605 hw_flags |= (flags & RADEON_VM_PAGE_VALID) ? R600_PTE_VALID : 0;
606 hw_flags |= (flags & RADEON_VM_PAGE_READABLE) ? R600_PTE_READABLE : 0;
607 hw_flags |= (flags & RADEON_VM_PAGE_WRITEABLE) ? R600_PTE_WRITEABLE : 0;
608 if (flags & RADEON_VM_PAGE_SYSTEM) {
609 hw_flags |= R600_PTE_SYSTEM;
610 hw_flags |= (flags & RADEON_VM_PAGE_SNOOPED) ? R600_PTE_SNOOPED : 0;
611 }
612 return hw_flags;
613}
614
615/**
616 * radeon_vm_update_pdes - make sure that page directory is valid
617 *
618 * @rdev: radeon_device pointer
619 * @vm: requested vm
620 * @start: start of GPU address range
621 * @end: end of GPU address range
622 *
623 * Allocates new page tables if necessary
624 * and updates the page directory (cayman+).
625 * Returns 0 for success, error for failure.
626 *
627 * Global and local mutex must be locked!
628 */
Christian König6d2f2942014-02-20 13:42:17 +0100629int radeon_vm_update_page_directory(struct radeon_device *rdev,
630 struct radeon_vm *vm)
Christian König2280ab52014-02-20 10:25:15 +0100631{
Christian König37903b52014-05-30 15:21:16 +0200632 struct radeon_bo *pd = vm->page_directory;
633 uint64_t pd_addr = radeon_bo_gpu_offset(pd);
Christian König4510fb92014-06-05 23:56:50 -0400634 uint32_t incr = RADEON_VM_PTE_COUNT * 8;
Christian König2280ab52014-02-20 10:25:15 +0100635 uint64_t last_pde = ~0, last_pt = ~0;
Christian König6d2f2942014-02-20 13:42:17 +0100636 unsigned count = 0, pt_idx, ndw;
637 struct radeon_ib ib;
Christian König2280ab52014-02-20 10:25:15 +0100638 int r;
639
Christian König6d2f2942014-02-20 13:42:17 +0100640 /* padding, etc. */
641 ndw = 64;
642
643 /* assume the worst case */
Christian Königcc6f3532014-07-30 21:05:18 +0200644 ndw += vm->max_pde_used * 6;
Christian König6d2f2942014-02-20 13:42:17 +0100645
646 /* update too big for an IB */
647 if (ndw > 0xfffff)
648 return -ENOMEM;
649
650 r = radeon_ib_get(rdev, R600_RING_TYPE_DMA_INDEX, &ib, NULL, ndw * 4);
651 if (r)
652 return r;
653 ib.length_dw = 0;
Christian König2280ab52014-02-20 10:25:15 +0100654
655 /* walk over the address space and update the page directory */
Christian König6d2f2942014-02-20 13:42:17 +0100656 for (pt_idx = 0; pt_idx <= vm->max_pde_used; ++pt_idx) {
657 struct radeon_bo *bo = vm->page_tables[pt_idx].bo;
Christian König2280ab52014-02-20 10:25:15 +0100658 uint64_t pde, pt;
659
Christian König6d2f2942014-02-20 13:42:17 +0100660 if (bo == NULL)
Christian König2280ab52014-02-20 10:25:15 +0100661 continue;
662
Christian König6d2f2942014-02-20 13:42:17 +0100663 pt = radeon_bo_gpu_offset(bo);
664 if (vm->page_tables[pt_idx].addr == pt)
665 continue;
666 vm->page_tables[pt_idx].addr = pt;
Christian König2280ab52014-02-20 10:25:15 +0100667
Christian König6d2f2942014-02-20 13:42:17 +0100668 pde = pd_addr + pt_idx * 8;
Christian König2280ab52014-02-20 10:25:15 +0100669 if (((last_pde + 8 * count) != pde) ||
670 ((last_pt + incr * count) != pt)) {
671
672 if (count) {
Christian König03f62ab2014-07-30 21:05:17 +0200673 radeon_vm_set_pages(rdev, &ib, last_pde,
674 last_pt, count, incr,
675 R600_PTE_VALID);
Christian König2280ab52014-02-20 10:25:15 +0100676 }
677
678 count = 1;
679 last_pde = pde;
680 last_pt = pt;
681 } else {
682 ++count;
683 }
684 }
685
Christian König6d2f2942014-02-20 13:42:17 +0100686 if (count)
Christian König03f62ab2014-07-30 21:05:17 +0200687 radeon_vm_set_pages(rdev, &ib, last_pde, last_pt, count,
688 incr, R600_PTE_VALID);
Christian König2280ab52014-02-20 10:25:15 +0100689
Christian König6d2f2942014-02-20 13:42:17 +0100690 if (ib.length_dw != 0) {
Christian König03f62ab2014-07-30 21:05:17 +0200691 radeon_asic_vm_pad_ib(rdev, &ib);
Maarten Lankhorstf2c24b82014-04-02 17:14:48 +0200692
Christian König975700d22014-11-19 14:01:22 +0100693 radeon_sync_resv(rdev, &ib.sync, pd->tbo.resv, false);
Christian Königcc6f3532014-07-30 21:05:18 +0200694 WARN_ON(ib.length_dw > ndw);
Michel Dänzer1538a9e2014-08-18 17:34:55 +0900695 r = radeon_ib_schedule(rdev, &ib, NULL, false);
Christian König6d2f2942014-02-20 13:42:17 +0100696 if (r) {
697 radeon_ib_free(rdev, &ib);
698 return r;
699 }
Christian König587cdda2014-11-19 14:01:23 +0100700 radeon_bo_fence(pd, ib.fence, false);
Christian König6d2f2942014-02-20 13:42:17 +0100701 radeon_fence_unref(&vm->fence);
702 vm->fence = radeon_fence_ref(ib.fence);
703 radeon_fence_unref(&vm->last_flush);
Christian König2280ab52014-02-20 10:25:15 +0100704 }
Christian König6d2f2942014-02-20 13:42:17 +0100705 radeon_ib_free(rdev, &ib);
Christian König2280ab52014-02-20 10:25:15 +0100706
707 return 0;
708}
709
710/**
Christian Königec3dbbc2014-05-10 12:17:55 +0200711 * radeon_vm_frag_ptes - add fragment information to PTEs
712 *
713 * @rdev: radeon_device pointer
714 * @ib: IB for the update
715 * @pe_start: first PTE to handle
716 * @pe_end: last PTE to handle
717 * @addr: addr those PTEs should point to
718 * @flags: hw mapping flags
719 *
720 * Global and local mutex must be locked!
721 */
722static void radeon_vm_frag_ptes(struct radeon_device *rdev,
723 struct radeon_ib *ib,
724 uint64_t pe_start, uint64_t pe_end,
725 uint64_t addr, uint32_t flags)
726{
727 /**
728 * The MC L1 TLB supports variable sized pages, based on a fragment
729 * field in the PTE. When this field is set to a non-zero value, page
730 * granularity is increased from 4KB to (1 << (12 + frag)). The PTE
731 * flags are considered valid for all PTEs within the fragment range
732 * and corresponding mappings are assumed to be physically contiguous.
733 *
734 * The L1 TLB can store a single PTE for the whole fragment,
735 * significantly increasing the space available for translation
736 * caching. This leads to large improvements in throughput when the
737 * TLB is under pressure.
738 *
739 * The L2 TLB distributes small and large fragments into two
740 * asymmetric partitions. The large fragment cache is significantly
741 * larger. Thus, we try to use large fragments wherever possible.
742 * Userspace can support this by aligning virtual base address and
743 * allocation size to the fragment size.
744 */
745
746 /* NI is optimized for 256KB fragments, SI and newer for 64KB */
747 uint64_t frag_flags = rdev->family == CHIP_CAYMAN ?
748 R600_PTE_FRAG_256KB : R600_PTE_FRAG_64KB;
749 uint64_t frag_align = rdev->family == CHIP_CAYMAN ? 0x200 : 0x80;
750
751 uint64_t frag_start = ALIGN(pe_start, frag_align);
752 uint64_t frag_end = pe_end & ~(frag_align - 1);
753
754 unsigned count;
755
756 /* system pages are non continuously */
757 if ((flags & R600_PTE_SYSTEM) || !(flags & R600_PTE_VALID) ||
758 (frag_start >= frag_end)) {
759
760 count = (pe_end - pe_start) / 8;
Christian König03f62ab2014-07-30 21:05:17 +0200761 radeon_vm_set_pages(rdev, ib, pe_start, addr, count,
762 RADEON_GPU_PAGE_SIZE, flags);
Christian Königec3dbbc2014-05-10 12:17:55 +0200763 return;
764 }
765
766 /* handle the 4K area at the beginning */
767 if (pe_start != frag_start) {
768 count = (frag_start - pe_start) / 8;
Christian König03f62ab2014-07-30 21:05:17 +0200769 radeon_vm_set_pages(rdev, ib, pe_start, addr, count,
770 RADEON_GPU_PAGE_SIZE, flags);
Christian Königec3dbbc2014-05-10 12:17:55 +0200771 addr += RADEON_GPU_PAGE_SIZE * count;
772 }
773
774 /* handle the area in the middle */
775 count = (frag_end - frag_start) / 8;
Christian König03f62ab2014-07-30 21:05:17 +0200776 radeon_vm_set_pages(rdev, ib, frag_start, addr, count,
777 RADEON_GPU_PAGE_SIZE, flags | frag_flags);
Christian Königec3dbbc2014-05-10 12:17:55 +0200778
779 /* handle the 4K area at the end */
780 if (frag_end != pe_end) {
781 addr += RADEON_GPU_PAGE_SIZE * count;
782 count = (pe_end - frag_end) / 8;
Christian König03f62ab2014-07-30 21:05:17 +0200783 radeon_vm_set_pages(rdev, ib, frag_end, addr, count,
784 RADEON_GPU_PAGE_SIZE, flags);
Christian Königec3dbbc2014-05-10 12:17:55 +0200785 }
786}
787
788/**
Christian König2280ab52014-02-20 10:25:15 +0100789 * radeon_vm_update_ptes - make sure that page tables are valid
790 *
791 * @rdev: radeon_device pointer
792 * @vm: requested vm
793 * @start: start of GPU address range
794 * @end: end of GPU address range
795 * @dst: destination address to map to
796 * @flags: mapping flags
797 *
798 * Update the page tables in the range @start - @end (cayman+).
799 *
800 * Global and local mutex must be locked!
801 */
802static void radeon_vm_update_ptes(struct radeon_device *rdev,
803 struct radeon_vm *vm,
804 struct radeon_ib *ib,
805 uint64_t start, uint64_t end,
806 uint64_t dst, uint32_t flags)
807{
Christian König4510fb92014-06-05 23:56:50 -0400808 uint64_t mask = RADEON_VM_PTE_COUNT - 1;
Christian König2280ab52014-02-20 10:25:15 +0100809 uint64_t last_pte = ~0, last_dst = ~0;
810 unsigned count = 0;
811 uint64_t addr;
812
Christian König2280ab52014-02-20 10:25:15 +0100813 /* walk over the address space and update the page tables */
814 for (addr = start; addr < end; ) {
Christian König4510fb92014-06-05 23:56:50 -0400815 uint64_t pt_idx = addr >> radeon_vm_block_size;
Christian König37903b52014-05-30 15:21:16 +0200816 struct radeon_bo *pt = vm->page_tables[pt_idx].bo;
Christian König2280ab52014-02-20 10:25:15 +0100817 unsigned nptes;
818 uint64_t pte;
819
Christian König975700d22014-11-19 14:01:22 +0100820 radeon_sync_resv(rdev, &ib->sync, pt->tbo.resv, false);
Christian König37903b52014-05-30 15:21:16 +0200821
Christian König2280ab52014-02-20 10:25:15 +0100822 if ((addr & ~mask) == (end & ~mask))
823 nptes = end - addr;
824 else
825 nptes = RADEON_VM_PTE_COUNT - (addr & mask);
826
Christian König37903b52014-05-30 15:21:16 +0200827 pte = radeon_bo_gpu_offset(pt);
Christian König2280ab52014-02-20 10:25:15 +0100828 pte += (addr & mask) * 8;
829
830 if ((last_pte + 8 * count) != pte) {
831
832 if (count) {
Christian Königec3dbbc2014-05-10 12:17:55 +0200833 radeon_vm_frag_ptes(rdev, ib, last_pte,
834 last_pte + 8 * count,
835 last_dst, flags);
Christian König2280ab52014-02-20 10:25:15 +0100836 }
837
838 count = nptes;
839 last_pte = pte;
840 last_dst = dst;
841 } else {
842 count += nptes;
843 }
844
845 addr += nptes;
846 dst += nptes * RADEON_GPU_PAGE_SIZE;
847 }
848
849 if (count) {
Christian Königec3dbbc2014-05-10 12:17:55 +0200850 radeon_vm_frag_ptes(rdev, ib, last_pte,
851 last_pte + 8 * count,
852 last_dst, flags);
Christian König2280ab52014-02-20 10:25:15 +0100853 }
854}
855
856/**
Christian König587cdda2014-11-19 14:01:23 +0100857 * radeon_vm_fence_pts - fence page tables after an update
858 *
859 * @vm: requested vm
860 * @start: start of GPU address range
861 * @end: end of GPU address range
862 * @fence: fence to use
863 *
864 * Fence the page tables in the range @start - @end (cayman+).
865 *
866 * Global and local mutex must be locked!
867 */
868static void radeon_vm_fence_pts(struct radeon_vm *vm,
869 uint64_t start, uint64_t end,
870 struct radeon_fence *fence)
871{
872 unsigned i;
873
874 start >>= radeon_vm_block_size;
875 end >>= radeon_vm_block_size;
876
877 for (i = start; i <= end; ++i)
878 radeon_bo_fence(vm->page_tables[i].bo, fence, false);
879}
880
881/**
Christian König2280ab52014-02-20 10:25:15 +0100882 * radeon_vm_bo_update - map a bo into the vm page table
883 *
884 * @rdev: radeon_device pointer
885 * @vm: requested vm
886 * @bo: radeon buffer object
887 * @mem: ttm mem
888 *
889 * Fill in the page table entries for @bo (cayman+).
890 * Returns 0 for success, -EINVAL for failure.
891 *
Christian König529364e2014-02-20 19:33:15 +0100892 * Object have to be reserved and mutex must be locked!
Christian König2280ab52014-02-20 10:25:15 +0100893 */
894int radeon_vm_bo_update(struct radeon_device *rdev,
Christian König036bf462014-07-18 08:56:40 +0200895 struct radeon_bo_va *bo_va,
Christian König2280ab52014-02-20 10:25:15 +0100896 struct ttm_mem_reg *mem)
897{
Christian König036bf462014-07-18 08:56:40 +0200898 struct radeon_vm *vm = bo_va->vm;
Christian König2280ab52014-02-20 10:25:15 +0100899 struct radeon_ib ib;
Christian Königcc6f3532014-07-30 21:05:18 +0200900 unsigned nptes, ncmds, ndw;
Christian König2280ab52014-02-20 10:25:15 +0100901 uint64_t addr;
Christian Königcc6f3532014-07-30 21:05:18 +0200902 uint32_t flags;
Christian König2280ab52014-02-20 10:25:15 +0100903 int r;
904
Alex Deucher0aea5e42014-07-30 11:49:56 -0400905 if (!bo_va->it.start) {
Christian König2280ab52014-02-20 10:25:15 +0100906 dev_err(rdev->dev, "bo %p don't has a mapping in vm %p\n",
Christian König036bf462014-07-18 08:56:40 +0200907 bo_va->bo, vm);
Christian König2280ab52014-02-20 10:25:15 +0100908 return -EINVAL;
909 }
910
Christian Könige31ad962014-07-18 09:24:53 +0200911 list_del_init(&bo_va->vm_status);
Christian König2280ab52014-02-20 10:25:15 +0100912
913 bo_va->flags &= ~RADEON_VM_PAGE_VALID;
914 bo_va->flags &= ~RADEON_VM_PAGE_SYSTEM;
Michel Dänzer02376d82014-07-17 19:01:08 +0900915 bo_va->flags &= ~RADEON_VM_PAGE_SNOOPED;
Christian Königf72a113a2014-08-07 09:36:00 +0200916 if (bo_va->bo && radeon_ttm_tt_is_readonly(bo_va->bo->tbo.ttm))
917 bo_va->flags &= ~RADEON_VM_PAGE_WRITEABLE;
918
Christian König2280ab52014-02-20 10:25:15 +0100919 if (mem) {
920 addr = mem->start << PAGE_SHIFT;
921 if (mem->mem_type != TTM_PL_SYSTEM) {
922 bo_va->flags |= RADEON_VM_PAGE_VALID;
Christian König2280ab52014-02-20 10:25:15 +0100923 }
924 if (mem->mem_type == TTM_PL_TT) {
925 bo_va->flags |= RADEON_VM_PAGE_SYSTEM;
Michel Dänzer02376d82014-07-17 19:01:08 +0900926 if (!(bo_va->bo->flags & (RADEON_GEM_GTT_WC | RADEON_GEM_GTT_UC)))
927 bo_va->flags |= RADEON_VM_PAGE_SNOOPED;
928
Christian König2280ab52014-02-20 10:25:15 +0100929 } else {
930 addr += rdev->vm_manager.vram_base_offset;
931 }
932 } else {
933 addr = 0;
Christian König2280ab52014-02-20 10:25:15 +0100934 }
935
Christian Könige31ad962014-07-18 09:24:53 +0200936 if (addr == bo_va->addr)
937 return 0;
938 bo_va->addr = addr;
939
Christian König2280ab52014-02-20 10:25:15 +0100940 trace_radeon_vm_bo_update(bo_va);
941
Alex Deucher0aea5e42014-07-30 11:49:56 -0400942 nptes = bo_va->it.last - bo_va->it.start + 1;
Christian König2280ab52014-02-20 10:25:15 +0100943
Christian Königcc6f3532014-07-30 21:05:18 +0200944 /* reserve space for one command every (1 << BLOCK_SIZE) entries
945 or 2k dwords (whatever is smaller) */
946 ncmds = (nptes >> min(radeon_vm_block_size, 11)) + 1;
947
Christian König2280ab52014-02-20 10:25:15 +0100948 /* padding, etc. */
949 ndw = 64;
950
Christian Königcc6f3532014-07-30 21:05:18 +0200951 flags = radeon_vm_page_flags(bo_va->flags);
952 if ((flags & R600_PTE_GART_MASK) == R600_PTE_GART_MASK) {
953 /* only copy commands needed */
954 ndw += ncmds * 7;
Christian König2280ab52014-02-20 10:25:15 +0100955
Christian Königcc6f3532014-07-30 21:05:18 +0200956 } else if (flags & R600_PTE_SYSTEM) {
957 /* header for write data commands */
958 ndw += ncmds * 4;
959
960 /* body of write data command */
961 ndw += nptes * 2;
962
963 } else {
964 /* set page commands needed */
965 ndw += ncmds * 10;
966
967 /* two extra commands for begin/end of fragment */
968 ndw += 2 * 10;
969 }
Christian König2280ab52014-02-20 10:25:15 +0100970
Christian König2280ab52014-02-20 10:25:15 +0100971 /* update too big for an IB */
972 if (ndw > 0xfffff)
973 return -ENOMEM;
974
975 r = radeon_ib_get(rdev, R600_RING_TYPE_DMA_INDEX, &ib, NULL, ndw * 4);
976 if (r)
977 return r;
978 ib.length_dw = 0;
979
Alex Deucher0aea5e42014-07-30 11:49:56 -0400980 radeon_vm_update_ptes(rdev, vm, &ib, bo_va->it.start,
981 bo_va->it.last + 1, addr,
982 radeon_vm_page_flags(bo_va->flags));
Christian König2280ab52014-02-20 10:25:15 +0100983
Christian König03f62ab2014-07-30 21:05:17 +0200984 radeon_asic_vm_pad_ib(rdev, &ib);
Christian Königcc6f3532014-07-30 21:05:18 +0200985 WARN_ON(ib.length_dw > ndw);
986
Michel Dänzer1538a9e2014-08-18 17:34:55 +0900987 r = radeon_ib_schedule(rdev, &ib, NULL, false);
Christian König2280ab52014-02-20 10:25:15 +0100988 if (r) {
989 radeon_ib_free(rdev, &ib);
990 return r;
991 }
Christian König587cdda2014-11-19 14:01:23 +0100992 radeon_vm_fence_pts(vm, bo_va->it.start, bo_va->it.last + 1, ib.fence);
Christian König2280ab52014-02-20 10:25:15 +0100993 radeon_fence_unref(&vm->fence);
994 vm->fence = radeon_fence_ref(ib.fence);
995 radeon_ib_free(rdev, &ib);
996 radeon_fence_unref(&vm->last_flush);
997
998 return 0;
999}
1000
1001/**
Christian König036bf462014-07-18 08:56:40 +02001002 * radeon_vm_clear_freed - clear freed BOs in the PT
1003 *
1004 * @rdev: radeon_device pointer
1005 * @vm: requested vm
1006 *
1007 * Make sure all freed BOs are cleared in the PT.
1008 * Returns 0 for success.
1009 *
1010 * PTs have to be reserved and mutex must be locked!
1011 */
1012int radeon_vm_clear_freed(struct radeon_device *rdev,
1013 struct radeon_vm *vm)
1014{
1015 struct radeon_bo_va *bo_va, *tmp;
1016 int r;
1017
1018 list_for_each_entry_safe(bo_va, tmp, &vm->freed, vm_status) {
Christian König036bf462014-07-18 08:56:40 +02001019 r = radeon_vm_bo_update(rdev, bo_va, NULL);
Christian Königee26d832014-07-30 21:04:57 +02001020 radeon_bo_unref(&bo_va->bo);
Christian König036bf462014-07-18 08:56:40 +02001021 kfree(bo_va);
1022 if (r)
1023 return r;
1024 }
1025 return 0;
1026
1027}
1028
1029/**
Christian Könige31ad962014-07-18 09:24:53 +02001030 * radeon_vm_clear_invalids - clear invalidated BOs in the PT
1031 *
1032 * @rdev: radeon_device pointer
1033 * @vm: requested vm
1034 *
1035 * Make sure all invalidated BOs are cleared in the PT.
1036 * Returns 0 for success.
1037 *
1038 * PTs have to be reserved and mutex must be locked!
1039 */
1040int radeon_vm_clear_invalids(struct radeon_device *rdev,
1041 struct radeon_vm *vm)
1042{
1043 struct radeon_bo_va *bo_va, *tmp;
1044 int r;
1045
1046 list_for_each_entry_safe(bo_va, tmp, &vm->invalidated, vm_status) {
1047 r = radeon_vm_bo_update(rdev, bo_va, NULL);
1048 if (r)
1049 return r;
1050 }
1051 return 0;
1052}
1053
1054/**
Christian König2280ab52014-02-20 10:25:15 +01001055 * radeon_vm_bo_rmv - remove a bo to a specific vm
1056 *
1057 * @rdev: radeon_device pointer
1058 * @bo_va: requested bo_va
1059 *
1060 * Remove @bo_va->bo from the requested vm (cayman+).
Christian König2280ab52014-02-20 10:25:15 +01001061 *
1062 * Object have to be reserved!
1063 */
Christian König036bf462014-07-18 08:56:40 +02001064void radeon_vm_bo_rmv(struct radeon_device *rdev,
1065 struct radeon_bo_va *bo_va)
Christian König2280ab52014-02-20 10:25:15 +01001066{
Christian König036bf462014-07-18 08:56:40 +02001067 struct radeon_vm *vm = bo_va->vm;
Christian König2280ab52014-02-20 10:25:15 +01001068
Christian König2280ab52014-02-20 10:25:15 +01001069 list_del(&bo_va->bo_list);
1070
Christian König036bf462014-07-18 08:56:40 +02001071 mutex_lock(&vm->mutex);
Alex Deucher0aea5e42014-07-30 11:49:56 -04001072 interval_tree_remove(&bo_va->it, &vm->va);
Christian Könige31ad962014-07-18 09:24:53 +02001073 list_del(&bo_va->vm_status);
Christian König036bf462014-07-18 08:56:40 +02001074
Christian Könige31ad962014-07-18 09:24:53 +02001075 if (bo_va->addr) {
Christian Königee26d832014-07-30 21:04:57 +02001076 bo_va->bo = radeon_bo_ref(bo_va->bo);
Christian König036bf462014-07-18 08:56:40 +02001077 list_add(&bo_va->vm_status, &vm->freed);
1078 } else {
1079 kfree(bo_va);
1080 }
1081
1082 mutex_unlock(&vm->mutex);
Christian König2280ab52014-02-20 10:25:15 +01001083}
1084
1085/**
1086 * radeon_vm_bo_invalidate - mark the bo as invalid
1087 *
1088 * @rdev: radeon_device pointer
1089 * @vm: requested vm
1090 * @bo: radeon buffer object
1091 *
1092 * Mark @bo as invalid (cayman+).
1093 */
1094void radeon_vm_bo_invalidate(struct radeon_device *rdev,
1095 struct radeon_bo *bo)
1096{
1097 struct radeon_bo_va *bo_va;
1098
1099 list_for_each_entry(bo_va, &bo->va, bo_list) {
Christian Könige31ad962014-07-18 09:24:53 +02001100 if (bo_va->addr) {
1101 mutex_lock(&bo_va->vm->mutex);
1102 list_del(&bo_va->vm_status);
1103 list_add(&bo_va->vm_status, &bo_va->vm->invalidated);
1104 mutex_unlock(&bo_va->vm->mutex);
1105 }
Christian König2280ab52014-02-20 10:25:15 +01001106 }
1107}
1108
1109/**
1110 * radeon_vm_init - initialize a vm instance
1111 *
1112 * @rdev: radeon_device pointer
1113 * @vm: requested vm
1114 *
1115 * Init @vm fields (cayman+).
1116 */
Christian König6d2f2942014-02-20 13:42:17 +01001117int radeon_vm_init(struct radeon_device *rdev, struct radeon_vm *vm)
Christian König2280ab52014-02-20 10:25:15 +01001118{
Christian König1c89d272014-05-10 12:17:56 +02001119 const unsigned align = min(RADEON_VM_PTB_ALIGN_SIZE,
1120 RADEON_VM_PTE_COUNT * 8);
Christian König6d2f2942014-02-20 13:42:17 +01001121 unsigned pd_size, pd_entries, pts_size;
1122 int r;
1123
Christian König2280ab52014-02-20 10:25:15 +01001124 vm->id = 0;
Christian Königcc9e67e2014-07-18 13:48:10 +02001125 vm->ib_bo_va = NULL;
Christian König2280ab52014-02-20 10:25:15 +01001126 vm->fence = NULL;
1127 vm->last_flush = NULL;
1128 vm->last_id_use = NULL;
1129 mutex_init(&vm->mutex);
Alex Deucher0aea5e42014-07-30 11:49:56 -04001130 vm->va = RB_ROOT;
Christian Könige31ad962014-07-18 09:24:53 +02001131 INIT_LIST_HEAD(&vm->invalidated);
Christian König036bf462014-07-18 08:56:40 +02001132 INIT_LIST_HEAD(&vm->freed);
Christian König6d2f2942014-02-20 13:42:17 +01001133
1134 pd_size = radeon_vm_directory_size(rdev);
1135 pd_entries = radeon_vm_num_pdes(rdev);
1136
1137 /* allocate page table array */
1138 pts_size = pd_entries * sizeof(struct radeon_vm_pt);
1139 vm->page_tables = kzalloc(pts_size, GFP_KERNEL);
1140 if (vm->page_tables == NULL) {
1141 DRM_ERROR("Cannot allocate memory for page table array\n");
1142 return -ENOMEM;
1143 }
1144
Christian König7dae77f2014-07-02 21:28:10 +02001145 r = radeon_bo_create(rdev, pd_size, align, true,
Michel Dänzer02376d82014-07-17 19:01:08 +09001146 RADEON_GEM_DOMAIN_VRAM, 0, NULL,
Maarten Lankhorst831b6962014-09-18 14:11:56 +02001147 NULL, &vm->page_directory);
Christian König6d2f2942014-02-20 13:42:17 +01001148 if (r)
1149 return r;
1150
1151 r = radeon_vm_clear_bo(rdev, vm->page_directory);
1152 if (r) {
1153 radeon_bo_unref(&vm->page_directory);
1154 vm->page_directory = NULL;
1155 return r;
1156 }
1157
1158 return 0;
Christian König2280ab52014-02-20 10:25:15 +01001159}
1160
1161/**
1162 * radeon_vm_fini - tear down a vm instance
1163 *
1164 * @rdev: radeon_device pointer
1165 * @vm: requested vm
1166 *
1167 * Tear down @vm (cayman+).
1168 * Unbind the VM and remove all bos from the vm bo list
1169 */
1170void radeon_vm_fini(struct radeon_device *rdev, struct radeon_vm *vm)
1171{
1172 struct radeon_bo_va *bo_va, *tmp;
Christian König6d2f2942014-02-20 13:42:17 +01001173 int i, r;
Christian König2280ab52014-02-20 10:25:15 +01001174
Alex Deucher0aea5e42014-07-30 11:49:56 -04001175 if (!RB_EMPTY_ROOT(&vm->va)) {
Christian König2280ab52014-02-20 10:25:15 +01001176 dev_err(rdev->dev, "still active bo inside vm\n");
1177 }
Alex Deucher0aea5e42014-07-30 11:49:56 -04001178 rbtree_postorder_for_each_entry_safe(bo_va, tmp, &vm->va, it.rb) {
1179 interval_tree_remove(&bo_va->it, &vm->va);
Christian König2280ab52014-02-20 10:25:15 +01001180 r = radeon_bo_reserve(bo_va->bo, false);
1181 if (!r) {
1182 list_del_init(&bo_va->bo_list);
1183 radeon_bo_unreserve(bo_va->bo);
1184 kfree(bo_va);
1185 }
1186 }
Christian Königee26d832014-07-30 21:04:57 +02001187 list_for_each_entry_safe(bo_va, tmp, &vm->freed, vm_status) {
1188 radeon_bo_unref(&bo_va->bo);
Christian König036bf462014-07-18 08:56:40 +02001189 kfree(bo_va);
Christian Königee26d832014-07-30 21:04:57 +02001190 }
Christian König6d2f2942014-02-20 13:42:17 +01001191
1192 for (i = 0; i < radeon_vm_num_pdes(rdev); i++)
1193 radeon_bo_unref(&vm->page_tables[i].bo);
1194 kfree(vm->page_tables);
1195
1196 radeon_bo_unref(&vm->page_directory);
1197
Christian König2280ab52014-02-20 10:25:15 +01001198 radeon_fence_unref(&vm->fence);
1199 radeon_fence_unref(&vm->last_flush);
1200 radeon_fence_unref(&vm->last_id_use);
Christian König6d2f2942014-02-20 13:42:17 +01001201
1202 mutex_destroy(&vm->mutex);
Christian König2280ab52014-02-20 10:25:15 +01001203}