Loading...
1/*
2 * Copyright 2009 Jerome Glisse.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sub license, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
16 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
17 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
18 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
19 * USE OR OTHER DEALINGS IN THE SOFTWARE.
20 *
21 * The above copyright notice and this permission notice (including the
22 * next paragraph) shall be included in all copies or substantial portions
23 * of the Software.
24 *
25 */
26/*
27 * Authors:
28 * Jerome Glisse <glisse@freedesktop.org>
29 * Thomas Hellstrom <thomas-at-tungstengraphics-dot-com>
30 * Dave Airlie
31 */
32#include <linux/list.h>
33#include <linux/slab.h>
34#include <linux/dma-buf.h>
35
36#include <drm/amdgpu_drm.h>
37#include <drm/drm_cache.h>
38#include "amdgpu.h"
39#include "amdgpu_trace.h"
40#include "amdgpu_amdkfd.h"
41
42/**
43 * DOC: amdgpu_object
44 *
45 * This defines the interfaces to operate on an &amdgpu_bo buffer object which
46 * represents memory used by driver (VRAM, system memory, etc.). The driver
47 * provides DRM/GEM APIs to userspace. DRM/GEM APIs then use these interfaces
48 * to create/destroy/set buffer object which are then managed by the kernel TTM
49 * memory manager.
50 * The interfaces are also used internally by kernel clients, including gfx,
51 * uvd, etc. for kernel managed allocations used by the GPU.
52 *
53 */
54
55static void amdgpu_bo_destroy(struct ttm_buffer_object *tbo)
56{
57 struct amdgpu_bo *bo = ttm_to_amdgpu_bo(tbo);
58
59 amdgpu_bo_kunmap(bo);
60
61 if (bo->tbo.base.import_attach)
62 drm_prime_gem_destroy(&bo->tbo.base, bo->tbo.sg);
63 drm_gem_object_release(&bo->tbo.base);
64 amdgpu_bo_unref(&bo->parent);
65 kvfree(bo);
66}
67
68static void amdgpu_bo_user_destroy(struct ttm_buffer_object *tbo)
69{
70 struct amdgpu_bo *bo = ttm_to_amdgpu_bo(tbo);
71 struct amdgpu_bo_user *ubo;
72
73 ubo = to_amdgpu_bo_user(bo);
74 kfree(ubo->metadata);
75 amdgpu_bo_destroy(tbo);
76}
77
78static void amdgpu_bo_vm_destroy(struct ttm_buffer_object *tbo)
79{
80 struct amdgpu_device *adev = amdgpu_ttm_adev(tbo->bdev);
81 struct amdgpu_bo *bo = ttm_to_amdgpu_bo(tbo);
82 struct amdgpu_bo_vm *vmbo;
83
84 vmbo = to_amdgpu_bo_vm(bo);
85 /* in case amdgpu_device_recover_vram got NULL of bo->parent */
86 if (!list_empty(&vmbo->shadow_list)) {
87 mutex_lock(&adev->shadow_list_lock);
88 list_del_init(&vmbo->shadow_list);
89 mutex_unlock(&adev->shadow_list_lock);
90 }
91
92 amdgpu_bo_destroy(tbo);
93}
94
95/**
96 * amdgpu_bo_is_amdgpu_bo - check if the buffer object is an &amdgpu_bo
97 * @bo: buffer object to be checked
98 *
99 * Uses destroy function associated with the object to determine if this is
100 * an &amdgpu_bo.
101 *
102 * Returns:
103 * true if the object belongs to &amdgpu_bo, false if not.
104 */
105bool amdgpu_bo_is_amdgpu_bo(struct ttm_buffer_object *bo)
106{
107 if (bo->destroy == &amdgpu_bo_destroy ||
108 bo->destroy == &amdgpu_bo_user_destroy ||
109 bo->destroy == &amdgpu_bo_vm_destroy)
110 return true;
111
112 return false;
113}
114
115/**
116 * amdgpu_bo_placement_from_domain - set buffer's placement
117 * @abo: &amdgpu_bo buffer object whose placement is to be set
118 * @domain: requested domain
119 *
120 * Sets buffer's placement according to requested domain and the buffer's
121 * flags.
122 */
123void amdgpu_bo_placement_from_domain(struct amdgpu_bo *abo, u32 domain)
124{
125 struct amdgpu_device *adev = amdgpu_ttm_adev(abo->tbo.bdev);
126 struct ttm_placement *placement = &abo->placement;
127 struct ttm_place *places = abo->placements;
128 u64 flags = abo->flags;
129 u32 c = 0;
130
131 if (domain & AMDGPU_GEM_DOMAIN_VRAM) {
132 unsigned visible_pfn = adev->gmc.visible_vram_size >> PAGE_SHIFT;
133
134 places[c].fpfn = 0;
135 places[c].lpfn = 0;
136 places[c].mem_type = TTM_PL_VRAM;
137 places[c].flags = 0;
138
139 if (flags & AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED)
140 places[c].lpfn = visible_pfn;
141 else
142 places[c].flags |= TTM_PL_FLAG_TOPDOWN;
143
144 if (flags & AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS)
145 places[c].flags |= TTM_PL_FLAG_CONTIGUOUS;
146 c++;
147 }
148
149 if (domain & AMDGPU_GEM_DOMAIN_GTT) {
150 places[c].fpfn = 0;
151 places[c].lpfn = 0;
152 places[c].mem_type =
153 abo->flags & AMDGPU_GEM_CREATE_PREEMPTIBLE ?
154 AMDGPU_PL_PREEMPT : TTM_PL_TT;
155 places[c].flags = 0;
156 c++;
157 }
158
159 if (domain & AMDGPU_GEM_DOMAIN_CPU) {
160 places[c].fpfn = 0;
161 places[c].lpfn = 0;
162 places[c].mem_type = TTM_PL_SYSTEM;
163 places[c].flags = 0;
164 c++;
165 }
166
167 if (domain & AMDGPU_GEM_DOMAIN_GDS) {
168 places[c].fpfn = 0;
169 places[c].lpfn = 0;
170 places[c].mem_type = AMDGPU_PL_GDS;
171 places[c].flags = 0;
172 c++;
173 }
174
175 if (domain & AMDGPU_GEM_DOMAIN_GWS) {
176 places[c].fpfn = 0;
177 places[c].lpfn = 0;
178 places[c].mem_type = AMDGPU_PL_GWS;
179 places[c].flags = 0;
180 c++;
181 }
182
183 if (domain & AMDGPU_GEM_DOMAIN_OA) {
184 places[c].fpfn = 0;
185 places[c].lpfn = 0;
186 places[c].mem_type = AMDGPU_PL_OA;
187 places[c].flags = 0;
188 c++;
189 }
190
191 if (!c) {
192 places[c].fpfn = 0;
193 places[c].lpfn = 0;
194 places[c].mem_type = TTM_PL_SYSTEM;
195 places[c].flags = 0;
196 c++;
197 }
198
199 BUG_ON(c > AMDGPU_BO_MAX_PLACEMENTS);
200
201 placement->num_placement = c;
202 placement->placement = places;
203
204 placement->num_busy_placement = c;
205 placement->busy_placement = places;
206}
207
208/**
209 * amdgpu_bo_create_reserved - create reserved BO for kernel use
210 *
211 * @adev: amdgpu device object
212 * @size: size for the new BO
213 * @align: alignment for the new BO
214 * @domain: where to place it
215 * @bo_ptr: used to initialize BOs in structures
216 * @gpu_addr: GPU addr of the pinned BO
217 * @cpu_addr: optional CPU address mapping
218 *
219 * Allocates and pins a BO for kernel internal use, and returns it still
220 * reserved.
221 *
222 * Note: For bo_ptr new BO is only created if bo_ptr points to NULL.
223 *
224 * Returns:
225 * 0 on success, negative error code otherwise.
226 */
227int amdgpu_bo_create_reserved(struct amdgpu_device *adev,
228 unsigned long size, int align,
229 u32 domain, struct amdgpu_bo **bo_ptr,
230 u64 *gpu_addr, void **cpu_addr)
231{
232 struct amdgpu_bo_param bp;
233 bool free = false;
234 int r;
235
236 if (!size) {
237 amdgpu_bo_unref(bo_ptr);
238 return 0;
239 }
240
241 memset(&bp, 0, sizeof(bp));
242 bp.size = size;
243 bp.byte_align = align;
244 bp.domain = domain;
245 bp.flags = cpu_addr ? AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED
246 : AMDGPU_GEM_CREATE_NO_CPU_ACCESS;
247 bp.flags |= AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS;
248 bp.type = ttm_bo_type_kernel;
249 bp.resv = NULL;
250 bp.bo_ptr_size = sizeof(struct amdgpu_bo);
251
252 if (!*bo_ptr) {
253 r = amdgpu_bo_create(adev, &bp, bo_ptr);
254 if (r) {
255 dev_err(adev->dev, "(%d) failed to allocate kernel bo\n",
256 r);
257 return r;
258 }
259 free = true;
260 }
261
262 r = amdgpu_bo_reserve(*bo_ptr, false);
263 if (r) {
264 dev_err(adev->dev, "(%d) failed to reserve kernel bo\n", r);
265 goto error_free;
266 }
267
268 r = amdgpu_bo_pin(*bo_ptr, domain);
269 if (r) {
270 dev_err(adev->dev, "(%d) kernel bo pin failed\n", r);
271 goto error_unreserve;
272 }
273
274 r = amdgpu_ttm_alloc_gart(&(*bo_ptr)->tbo);
275 if (r) {
276 dev_err(adev->dev, "%p bind failed\n", *bo_ptr);
277 goto error_unpin;
278 }
279
280 if (gpu_addr)
281 *gpu_addr = amdgpu_bo_gpu_offset(*bo_ptr);
282
283 if (cpu_addr) {
284 r = amdgpu_bo_kmap(*bo_ptr, cpu_addr);
285 if (r) {
286 dev_err(adev->dev, "(%d) kernel bo map failed\n", r);
287 goto error_unpin;
288 }
289 }
290
291 return 0;
292
293error_unpin:
294 amdgpu_bo_unpin(*bo_ptr);
295error_unreserve:
296 amdgpu_bo_unreserve(*bo_ptr);
297
298error_free:
299 if (free)
300 amdgpu_bo_unref(bo_ptr);
301
302 return r;
303}
304
305/**
306 * amdgpu_bo_create_kernel - create BO for kernel use
307 *
308 * @adev: amdgpu device object
309 * @size: size for the new BO
310 * @align: alignment for the new BO
311 * @domain: where to place it
312 * @bo_ptr: used to initialize BOs in structures
313 * @gpu_addr: GPU addr of the pinned BO
314 * @cpu_addr: optional CPU address mapping
315 *
316 * Allocates and pins a BO for kernel internal use.
317 *
318 * Note: For bo_ptr new BO is only created if bo_ptr points to NULL.
319 *
320 * Returns:
321 * 0 on success, negative error code otherwise.
322 */
323int amdgpu_bo_create_kernel(struct amdgpu_device *adev,
324 unsigned long size, int align,
325 u32 domain, struct amdgpu_bo **bo_ptr,
326 u64 *gpu_addr, void **cpu_addr)
327{
328 int r;
329
330 r = amdgpu_bo_create_reserved(adev, size, align, domain, bo_ptr,
331 gpu_addr, cpu_addr);
332
333 if (r)
334 return r;
335
336 if (*bo_ptr)
337 amdgpu_bo_unreserve(*bo_ptr);
338
339 return 0;
340}
341
342/**
343 * amdgpu_bo_create_kernel_at - create BO for kernel use at specific location
344 *
345 * @adev: amdgpu device object
346 * @offset: offset of the BO
347 * @size: size of the BO
348 * @domain: where to place it
349 * @bo_ptr: used to initialize BOs in structures
350 * @cpu_addr: optional CPU address mapping
351 *
352 * Creates a kernel BO at a specific offset in the address space of the domain.
353 *
354 * Returns:
355 * 0 on success, negative error code otherwise.
356 */
357int amdgpu_bo_create_kernel_at(struct amdgpu_device *adev,
358 uint64_t offset, uint64_t size, uint32_t domain,
359 struct amdgpu_bo **bo_ptr, void **cpu_addr)
360{
361 struct ttm_operation_ctx ctx = { false, false };
362 unsigned int i;
363 int r;
364
365 offset &= PAGE_MASK;
366 size = ALIGN(size, PAGE_SIZE);
367
368 r = amdgpu_bo_create_reserved(adev, size, PAGE_SIZE, domain, bo_ptr,
369 NULL, cpu_addr);
370 if (r)
371 return r;
372
373 if ((*bo_ptr) == NULL)
374 return 0;
375
376 /*
377 * Remove the original mem node and create a new one at the request
378 * position.
379 */
380 if (cpu_addr)
381 amdgpu_bo_kunmap(*bo_ptr);
382
383 ttm_resource_free(&(*bo_ptr)->tbo, &(*bo_ptr)->tbo.resource);
384
385 for (i = 0; i < (*bo_ptr)->placement.num_placement; ++i) {
386 (*bo_ptr)->placements[i].fpfn = offset >> PAGE_SHIFT;
387 (*bo_ptr)->placements[i].lpfn = (offset + size) >> PAGE_SHIFT;
388 }
389 r = ttm_bo_mem_space(&(*bo_ptr)->tbo, &(*bo_ptr)->placement,
390 &(*bo_ptr)->tbo.resource, &ctx);
391 if (r)
392 goto error;
393
394 if (cpu_addr) {
395 r = amdgpu_bo_kmap(*bo_ptr, cpu_addr);
396 if (r)
397 goto error;
398 }
399
400 amdgpu_bo_unreserve(*bo_ptr);
401 return 0;
402
403error:
404 amdgpu_bo_unreserve(*bo_ptr);
405 amdgpu_bo_unref(bo_ptr);
406 return r;
407}
408
409/**
410 * amdgpu_bo_free_kernel - free BO for kernel use
411 *
412 * @bo: amdgpu BO to free
413 * @gpu_addr: pointer to where the BO's GPU memory space address was stored
414 * @cpu_addr: pointer to where the BO's CPU memory space address was stored
415 *
416 * unmaps and unpin a BO for kernel internal use.
417 */
418void amdgpu_bo_free_kernel(struct amdgpu_bo **bo, u64 *gpu_addr,
419 void **cpu_addr)
420{
421 if (*bo == NULL)
422 return;
423
424 if (likely(amdgpu_bo_reserve(*bo, true) == 0)) {
425 if (cpu_addr)
426 amdgpu_bo_kunmap(*bo);
427
428 amdgpu_bo_unpin(*bo);
429 amdgpu_bo_unreserve(*bo);
430 }
431 amdgpu_bo_unref(bo);
432
433 if (gpu_addr)
434 *gpu_addr = 0;
435
436 if (cpu_addr)
437 *cpu_addr = NULL;
438}
439
440/* Validate bo size is bit bigger then the request domain */
441static bool amdgpu_bo_validate_size(struct amdgpu_device *adev,
442 unsigned long size, u32 domain)
443{
444 struct ttm_resource_manager *man = NULL;
445
446 /*
447 * If GTT is part of requested domains the check must succeed to
448 * allow fall back to GTT
449 */
450 if (domain & AMDGPU_GEM_DOMAIN_GTT) {
451 man = ttm_manager_type(&adev->mman.bdev, TTM_PL_TT);
452
453 if (size < (man->size << PAGE_SHIFT))
454 return true;
455 else
456 goto fail;
457 }
458
459 if (domain & AMDGPU_GEM_DOMAIN_VRAM) {
460 man = ttm_manager_type(&adev->mman.bdev, TTM_PL_VRAM);
461
462 if (size < (man->size << PAGE_SHIFT))
463 return true;
464 else
465 goto fail;
466 }
467
468
469 /* TODO add more domains checks, such as AMDGPU_GEM_DOMAIN_CPU */
470 return true;
471
472fail:
473 DRM_DEBUG("BO size %lu > total memory in domain: %llu\n", size,
474 man->size << PAGE_SHIFT);
475 return false;
476}
477
478bool amdgpu_bo_support_uswc(u64 bo_flags)
479{
480
481#ifdef CONFIG_X86_32
482 /* XXX: Write-combined CPU mappings of GTT seem broken on 32-bit
483 * See https://bugs.freedesktop.org/show_bug.cgi?id=84627
484 */
485 return false;
486#elif defined(CONFIG_X86) && !defined(CONFIG_X86_PAT)
487 /* Don't try to enable write-combining when it can't work, or things
488 * may be slow
489 * See https://bugs.freedesktop.org/show_bug.cgi?id=88758
490 */
491
492#ifndef CONFIG_COMPILE_TEST
493#warning Please enable CONFIG_MTRR and CONFIG_X86_PAT for better performance \
494 thanks to write-combining
495#endif
496
497 if (bo_flags & AMDGPU_GEM_CREATE_CPU_GTT_USWC)
498 DRM_INFO_ONCE("Please enable CONFIG_MTRR and CONFIG_X86_PAT for "
499 "better performance thanks to write-combining\n");
500 return false;
501#else
502 /* For architectures that don't support WC memory,
503 * mask out the WC flag from the BO
504 */
505 if (!drm_arch_can_wc_memory())
506 return false;
507
508 return true;
509#endif
510}
511
512/**
513 * amdgpu_bo_create - create an &amdgpu_bo buffer object
514 * @adev: amdgpu device object
515 * @bp: parameters to be used for the buffer object
516 * @bo_ptr: pointer to the buffer object pointer
517 *
518 * Creates an &amdgpu_bo buffer object.
519 *
520 * Returns:
521 * 0 for success or a negative error code on failure.
522 */
523int amdgpu_bo_create(struct amdgpu_device *adev,
524 struct amdgpu_bo_param *bp,
525 struct amdgpu_bo **bo_ptr)
526{
527 struct ttm_operation_ctx ctx = {
528 .interruptible = (bp->type != ttm_bo_type_kernel),
529 .no_wait_gpu = bp->no_wait_gpu,
530 /* We opt to avoid OOM on system pages allocations */
531 .gfp_retry_mayfail = true,
532 .allow_res_evict = bp->type != ttm_bo_type_kernel,
533 .resv = bp->resv
534 };
535 struct amdgpu_bo *bo;
536 unsigned long page_align, size = bp->size;
537 int r;
538
539 /* Note that GDS/GWS/OA allocates 1 page per byte/resource. */
540 if (bp->domain & (AMDGPU_GEM_DOMAIN_GWS | AMDGPU_GEM_DOMAIN_OA)) {
541 /* GWS and OA don't need any alignment. */
542 page_align = bp->byte_align;
543 size <<= PAGE_SHIFT;
544 } else if (bp->domain & AMDGPU_GEM_DOMAIN_GDS) {
545 /* Both size and alignment must be a multiple of 4. */
546 page_align = ALIGN(bp->byte_align, 4);
547 size = ALIGN(size, 4) << PAGE_SHIFT;
548 } else {
549 /* Memory should be aligned at least to a page size. */
550 page_align = ALIGN(bp->byte_align, PAGE_SIZE) >> PAGE_SHIFT;
551 size = ALIGN(size, PAGE_SIZE);
552 }
553
554 if (!amdgpu_bo_validate_size(adev, size, bp->domain))
555 return -ENOMEM;
556
557 BUG_ON(bp->bo_ptr_size < sizeof(struct amdgpu_bo));
558
559 *bo_ptr = NULL;
560 bo = kvzalloc(bp->bo_ptr_size, GFP_KERNEL);
561 if (bo == NULL)
562 return -ENOMEM;
563 drm_gem_private_object_init(adev_to_drm(adev), &bo->tbo.base, size);
564 bo->vm_bo = NULL;
565 bo->preferred_domains = bp->preferred_domain ? bp->preferred_domain :
566 bp->domain;
567 bo->allowed_domains = bo->preferred_domains;
568 if (bp->type != ttm_bo_type_kernel &&
569 bo->allowed_domains == AMDGPU_GEM_DOMAIN_VRAM)
570 bo->allowed_domains |= AMDGPU_GEM_DOMAIN_GTT;
571
572 bo->flags = bp->flags;
573
574 if (!amdgpu_bo_support_uswc(bo->flags))
575 bo->flags &= ~AMDGPU_GEM_CREATE_CPU_GTT_USWC;
576
577 bo->tbo.bdev = &adev->mman.bdev;
578 if (bp->domain & (AMDGPU_GEM_DOMAIN_GWS | AMDGPU_GEM_DOMAIN_OA |
579 AMDGPU_GEM_DOMAIN_GDS))
580 amdgpu_bo_placement_from_domain(bo, AMDGPU_GEM_DOMAIN_CPU);
581 else
582 amdgpu_bo_placement_from_domain(bo, bp->domain);
583 if (bp->type == ttm_bo_type_kernel)
584 bo->tbo.priority = 1;
585
586 if (!bp->destroy)
587 bp->destroy = &amdgpu_bo_destroy;
588
589 r = ttm_bo_init_reserved(&adev->mman.bdev, &bo->tbo, size, bp->type,
590 &bo->placement, page_align, &ctx, NULL,
591 bp->resv, bp->destroy);
592 if (unlikely(r != 0))
593 return r;
594
595 if (!amdgpu_gmc_vram_full_visible(&adev->gmc) &&
596 bo->tbo.resource->mem_type == TTM_PL_VRAM &&
597 bo->tbo.resource->start < adev->gmc.visible_vram_size >> PAGE_SHIFT)
598 amdgpu_cs_report_moved_bytes(adev, ctx.bytes_moved,
599 ctx.bytes_moved);
600 else
601 amdgpu_cs_report_moved_bytes(adev, ctx.bytes_moved, 0);
602
603 if (bp->flags & AMDGPU_GEM_CREATE_VRAM_CLEARED &&
604 bo->tbo.resource->mem_type == TTM_PL_VRAM) {
605 struct dma_fence *fence;
606
607 r = amdgpu_fill_buffer(bo, 0, bo->tbo.base.resv, &fence);
608 if (unlikely(r))
609 goto fail_unreserve;
610
611 amdgpu_bo_fence(bo, fence, false);
612 dma_fence_put(bo->tbo.moving);
613 bo->tbo.moving = dma_fence_get(fence);
614 dma_fence_put(fence);
615 }
616 if (!bp->resv)
617 amdgpu_bo_unreserve(bo);
618 *bo_ptr = bo;
619
620 trace_amdgpu_bo_create(bo);
621
622 /* Treat CPU_ACCESS_REQUIRED only as a hint if given by UMD */
623 if (bp->type == ttm_bo_type_device)
624 bo->flags &= ~AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED;
625
626 return 0;
627
628fail_unreserve:
629 if (!bp->resv)
630 dma_resv_unlock(bo->tbo.base.resv);
631 amdgpu_bo_unref(&bo);
632 return r;
633}
634
635/**
636 * amdgpu_bo_create_user - create an &amdgpu_bo_user buffer object
637 * @adev: amdgpu device object
638 * @bp: parameters to be used for the buffer object
639 * @ubo_ptr: pointer to the buffer object pointer
640 *
641 * Create a BO to be used by user application;
642 *
643 * Returns:
644 * 0 for success or a negative error code on failure.
645 */
646
647int amdgpu_bo_create_user(struct amdgpu_device *adev,
648 struct amdgpu_bo_param *bp,
649 struct amdgpu_bo_user **ubo_ptr)
650{
651 struct amdgpu_bo *bo_ptr;
652 int r;
653
654 bp->bo_ptr_size = sizeof(struct amdgpu_bo_user);
655 bp->destroy = &amdgpu_bo_user_destroy;
656 r = amdgpu_bo_create(adev, bp, &bo_ptr);
657 if (r)
658 return r;
659
660 *ubo_ptr = to_amdgpu_bo_user(bo_ptr);
661 return r;
662}
663
664/**
665 * amdgpu_bo_create_vm - create an &amdgpu_bo_vm buffer object
666 * @adev: amdgpu device object
667 * @bp: parameters to be used for the buffer object
668 * @vmbo_ptr: pointer to the buffer object pointer
669 *
670 * Create a BO to be for GPUVM.
671 *
672 * Returns:
673 * 0 for success or a negative error code on failure.
674 */
675
676int amdgpu_bo_create_vm(struct amdgpu_device *adev,
677 struct amdgpu_bo_param *bp,
678 struct amdgpu_bo_vm **vmbo_ptr)
679{
680 struct amdgpu_bo *bo_ptr;
681 int r;
682
683 /* bo_ptr_size will be determined by the caller and it depends on
684 * num of amdgpu_vm_pt entries.
685 */
686 BUG_ON(bp->bo_ptr_size < sizeof(struct amdgpu_bo_vm));
687 bp->destroy = &amdgpu_bo_vm_destroy;
688 r = amdgpu_bo_create(adev, bp, &bo_ptr);
689 if (r)
690 return r;
691
692 *vmbo_ptr = to_amdgpu_bo_vm(bo_ptr);
693 INIT_LIST_HEAD(&(*vmbo_ptr)->shadow_list);
694 return r;
695}
696
697/**
698 * amdgpu_bo_validate - validate an &amdgpu_bo buffer object
699 * @bo: pointer to the buffer object
700 *
701 * Sets placement according to domain; and changes placement and caching
702 * policy of the buffer object according to the placement.
703 * This is used for validating shadow bos. It calls ttm_bo_validate() to
704 * make sure the buffer is resident where it needs to be.
705 *
706 * Returns:
707 * 0 for success or a negative error code on failure.
708 */
709int amdgpu_bo_validate(struct amdgpu_bo *bo)
710{
711 struct ttm_operation_ctx ctx = { false, false };
712 uint32_t domain;
713 int r;
714
715 if (bo->tbo.pin_count)
716 return 0;
717
718 domain = bo->preferred_domains;
719
720retry:
721 amdgpu_bo_placement_from_domain(bo, domain);
722 r = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
723 if (unlikely(r == -ENOMEM) && domain != bo->allowed_domains) {
724 domain = bo->allowed_domains;
725 goto retry;
726 }
727
728 return r;
729}
730
731/**
732 * amdgpu_bo_add_to_shadow_list - add a BO to the shadow list
733 *
734 * @bo: BO that will be inserted into the shadow list
735 *
736 * Insert a BO to the shadow list.
737 */
738void amdgpu_bo_add_to_shadow_list(struct amdgpu_bo_vm *vmbo)
739{
740 struct amdgpu_device *adev = amdgpu_ttm_adev(vmbo->bo.tbo.bdev);
741
742 mutex_lock(&adev->shadow_list_lock);
743 list_add_tail(&vmbo->shadow_list, &adev->shadow_list);
744 mutex_unlock(&adev->shadow_list_lock);
745}
746
747/**
748 * amdgpu_bo_restore_shadow - restore an &amdgpu_bo shadow
749 *
750 * @shadow: &amdgpu_bo shadow to be restored
751 * @fence: dma_fence associated with the operation
752 *
753 * Copies a buffer object's shadow content back to the object.
754 * This is used for recovering a buffer from its shadow in case of a gpu
755 * reset where vram context may be lost.
756 *
757 * Returns:
758 * 0 for success or a negative error code on failure.
759 */
760int amdgpu_bo_restore_shadow(struct amdgpu_bo *shadow, struct dma_fence **fence)
761
762{
763 struct amdgpu_device *adev = amdgpu_ttm_adev(shadow->tbo.bdev);
764 struct amdgpu_ring *ring = adev->mman.buffer_funcs_ring;
765 uint64_t shadow_addr, parent_addr;
766
767 shadow_addr = amdgpu_bo_gpu_offset(shadow);
768 parent_addr = amdgpu_bo_gpu_offset(shadow->parent);
769
770 return amdgpu_copy_buffer(ring, shadow_addr, parent_addr,
771 amdgpu_bo_size(shadow), NULL, fence,
772 true, false, false);
773}
774
775/**
776 * amdgpu_bo_kmap - map an &amdgpu_bo buffer object
777 * @bo: &amdgpu_bo buffer object to be mapped
778 * @ptr: kernel virtual address to be returned
779 *
780 * Calls ttm_bo_kmap() to set up the kernel virtual mapping; calls
781 * amdgpu_bo_kptr() to get the kernel virtual address.
782 *
783 * Returns:
784 * 0 for success or a negative error code on failure.
785 */
786int amdgpu_bo_kmap(struct amdgpu_bo *bo, void **ptr)
787{
788 void *kptr;
789 long r;
790
791 if (bo->flags & AMDGPU_GEM_CREATE_NO_CPU_ACCESS)
792 return -EPERM;
793
794 kptr = amdgpu_bo_kptr(bo);
795 if (kptr) {
796 if (ptr)
797 *ptr = kptr;
798 return 0;
799 }
800
801 r = dma_resv_wait_timeout(bo->tbo.base.resv, false, false,
802 MAX_SCHEDULE_TIMEOUT);
803 if (r < 0)
804 return r;
805
806 r = ttm_bo_kmap(&bo->tbo, 0, bo->tbo.resource->num_pages, &bo->kmap);
807 if (r)
808 return r;
809
810 if (ptr)
811 *ptr = amdgpu_bo_kptr(bo);
812
813 return 0;
814}
815
816/**
817 * amdgpu_bo_kptr - returns a kernel virtual address of the buffer object
818 * @bo: &amdgpu_bo buffer object
819 *
820 * Calls ttm_kmap_obj_virtual() to get the kernel virtual address
821 *
822 * Returns:
823 * the virtual address of a buffer object area.
824 */
825void *amdgpu_bo_kptr(struct amdgpu_bo *bo)
826{
827 bool is_iomem;
828
829 return ttm_kmap_obj_virtual(&bo->kmap, &is_iomem);
830}
831
832/**
833 * amdgpu_bo_kunmap - unmap an &amdgpu_bo buffer object
834 * @bo: &amdgpu_bo buffer object to be unmapped
835 *
836 * Unmaps a kernel map set up by amdgpu_bo_kmap().
837 */
838void amdgpu_bo_kunmap(struct amdgpu_bo *bo)
839{
840 if (bo->kmap.bo)
841 ttm_bo_kunmap(&bo->kmap);
842}
843
844/**
845 * amdgpu_bo_ref - reference an &amdgpu_bo buffer object
846 * @bo: &amdgpu_bo buffer object
847 *
848 * References the contained &ttm_buffer_object.
849 *
850 * Returns:
851 * a refcounted pointer to the &amdgpu_bo buffer object.
852 */
853struct amdgpu_bo *amdgpu_bo_ref(struct amdgpu_bo *bo)
854{
855 if (bo == NULL)
856 return NULL;
857
858 ttm_bo_get(&bo->tbo);
859 return bo;
860}
861
862/**
863 * amdgpu_bo_unref - unreference an &amdgpu_bo buffer object
864 * @bo: &amdgpu_bo buffer object
865 *
866 * Unreferences the contained &ttm_buffer_object and clear the pointer
867 */
868void amdgpu_bo_unref(struct amdgpu_bo **bo)
869{
870 struct ttm_buffer_object *tbo;
871
872 if ((*bo) == NULL)
873 return;
874
875 tbo = &((*bo)->tbo);
876 ttm_bo_put(tbo);
877 *bo = NULL;
878}
879
880/**
881 * amdgpu_bo_pin_restricted - pin an &amdgpu_bo buffer object
882 * @bo: &amdgpu_bo buffer object to be pinned
883 * @domain: domain to be pinned to
884 * @min_offset: the start of requested address range
885 * @max_offset: the end of requested address range
886 *
887 * Pins the buffer object according to requested domain and address range. If
888 * the memory is unbound gart memory, binds the pages into gart table. Adjusts
889 * pin_count and pin_size accordingly.
890 *
891 * Pinning means to lock pages in memory along with keeping them at a fixed
892 * offset. It is required when a buffer can not be moved, for example, when
893 * a display buffer is being scanned out.
894 *
895 * Compared with amdgpu_bo_pin(), this function gives more flexibility on
896 * where to pin a buffer if there are specific restrictions on where a buffer
897 * must be located.
898 *
899 * Returns:
900 * 0 for success or a negative error code on failure.
901 */
902int amdgpu_bo_pin_restricted(struct amdgpu_bo *bo, u32 domain,
903 u64 min_offset, u64 max_offset)
904{
905 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
906 struct ttm_operation_ctx ctx = { false, false };
907 int r, i;
908
909 if (amdgpu_ttm_tt_get_usermm(bo->tbo.ttm))
910 return -EPERM;
911
912 if (WARN_ON_ONCE(min_offset > max_offset))
913 return -EINVAL;
914
915 /* A shared bo cannot be migrated to VRAM */
916 if (bo->prime_shared_count || bo->tbo.base.import_attach) {
917 if (domain & AMDGPU_GEM_DOMAIN_GTT)
918 domain = AMDGPU_GEM_DOMAIN_GTT;
919 else
920 return -EINVAL;
921 }
922
923 if (bo->tbo.pin_count) {
924 uint32_t mem_type = bo->tbo.resource->mem_type;
925 uint32_t mem_flags = bo->tbo.resource->placement;
926
927 if (!(domain & amdgpu_mem_type_to_domain(mem_type)))
928 return -EINVAL;
929
930 if ((mem_type == TTM_PL_VRAM) &&
931 (bo->flags & AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS) &&
932 !(mem_flags & TTM_PL_FLAG_CONTIGUOUS))
933 return -EINVAL;
934
935 ttm_bo_pin(&bo->tbo);
936
937 if (max_offset != 0) {
938 u64 domain_start = amdgpu_ttm_domain_start(adev,
939 mem_type);
940 WARN_ON_ONCE(max_offset <
941 (amdgpu_bo_gpu_offset(bo) - domain_start));
942 }
943
944 return 0;
945 }
946
947 /* This assumes only APU display buffers are pinned with (VRAM|GTT).
948 * See function amdgpu_display_supported_domains()
949 */
950 domain = amdgpu_bo_get_preferred_pin_domain(adev, domain);
951
952 if (bo->tbo.base.import_attach)
953 dma_buf_pin(bo->tbo.base.import_attach);
954
955 /* force to pin into visible video ram */
956 if (!(bo->flags & AMDGPU_GEM_CREATE_NO_CPU_ACCESS))
957 bo->flags |= AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED;
958 amdgpu_bo_placement_from_domain(bo, domain);
959 for (i = 0; i < bo->placement.num_placement; i++) {
960 unsigned fpfn, lpfn;
961
962 fpfn = min_offset >> PAGE_SHIFT;
963 lpfn = max_offset >> PAGE_SHIFT;
964
965 if (fpfn > bo->placements[i].fpfn)
966 bo->placements[i].fpfn = fpfn;
967 if (!bo->placements[i].lpfn ||
968 (lpfn && lpfn < bo->placements[i].lpfn))
969 bo->placements[i].lpfn = lpfn;
970 }
971
972 r = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
973 if (unlikely(r)) {
974 dev_err(adev->dev, "%p pin failed\n", bo);
975 goto error;
976 }
977
978 ttm_bo_pin(&bo->tbo);
979
980 domain = amdgpu_mem_type_to_domain(bo->tbo.resource->mem_type);
981 if (domain == AMDGPU_GEM_DOMAIN_VRAM) {
982 atomic64_add(amdgpu_bo_size(bo), &adev->vram_pin_size);
983 atomic64_add(amdgpu_vram_mgr_bo_visible_size(bo),
984 &adev->visible_pin_size);
985 } else if (domain == AMDGPU_GEM_DOMAIN_GTT) {
986 atomic64_add(amdgpu_bo_size(bo), &adev->gart_pin_size);
987 }
988
989error:
990 return r;
991}
992
993/**
994 * amdgpu_bo_pin - pin an &amdgpu_bo buffer object
995 * @bo: &amdgpu_bo buffer object to be pinned
996 * @domain: domain to be pinned to
997 *
998 * A simple wrapper to amdgpu_bo_pin_restricted().
999 * Provides a simpler API for buffers that do not have any strict restrictions
1000 * on where a buffer must be located.
1001 *
1002 * Returns:
1003 * 0 for success or a negative error code on failure.
1004 */
1005int amdgpu_bo_pin(struct amdgpu_bo *bo, u32 domain)
1006{
1007 bo->flags |= AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS;
1008 return amdgpu_bo_pin_restricted(bo, domain, 0, 0);
1009}
1010
1011/**
1012 * amdgpu_bo_unpin - unpin an &amdgpu_bo buffer object
1013 * @bo: &amdgpu_bo buffer object to be unpinned
1014 *
1015 * Decreases the pin_count, and clears the flags if pin_count reaches 0.
1016 * Changes placement and pin size accordingly.
1017 *
1018 * Returns:
1019 * 0 for success or a negative error code on failure.
1020 */
1021void amdgpu_bo_unpin(struct amdgpu_bo *bo)
1022{
1023 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
1024
1025 ttm_bo_unpin(&bo->tbo);
1026 if (bo->tbo.pin_count)
1027 return;
1028
1029 if (bo->tbo.base.import_attach)
1030 dma_buf_unpin(bo->tbo.base.import_attach);
1031
1032 if (bo->tbo.resource->mem_type == TTM_PL_VRAM) {
1033 atomic64_sub(amdgpu_bo_size(bo), &adev->vram_pin_size);
1034 atomic64_sub(amdgpu_vram_mgr_bo_visible_size(bo),
1035 &adev->visible_pin_size);
1036 } else if (bo->tbo.resource->mem_type == TTM_PL_TT) {
1037 atomic64_sub(amdgpu_bo_size(bo), &adev->gart_pin_size);
1038 }
1039}
1040
1041/**
1042 * amdgpu_bo_evict_vram - evict VRAM buffers
1043 * @adev: amdgpu device object
1044 *
1045 * Evicts all VRAM buffers on the lru list of the memory type.
1046 * Mainly used for evicting vram at suspend time.
1047 *
1048 * Returns:
1049 * 0 for success or a negative error code on failure.
1050 */
1051int amdgpu_bo_evict_vram(struct amdgpu_device *adev)
1052{
1053 struct ttm_resource_manager *man;
1054
1055 if (adev->in_s3 && (adev->flags & AMD_IS_APU)) {
1056 /* No need to evict vram on APUs for suspend to ram */
1057 return 0;
1058 }
1059
1060 man = ttm_manager_type(&adev->mman.bdev, TTM_PL_VRAM);
1061 return ttm_resource_manager_evict_all(&adev->mman.bdev, man);
1062}
1063
1064static const char *amdgpu_vram_names[] = {
1065 "UNKNOWN",
1066 "GDDR1",
1067 "DDR2",
1068 "GDDR3",
1069 "GDDR4",
1070 "GDDR5",
1071 "HBM",
1072 "DDR3",
1073 "DDR4",
1074 "GDDR6",
1075 "DDR5"
1076};
1077
1078/**
1079 * amdgpu_bo_init - initialize memory manager
1080 * @adev: amdgpu device object
1081 *
1082 * Calls amdgpu_ttm_init() to initialize amdgpu memory manager.
1083 *
1084 * Returns:
1085 * 0 for success or a negative error code on failure.
1086 */
1087int amdgpu_bo_init(struct amdgpu_device *adev)
1088{
1089 /* On A+A platform, VRAM can be mapped as WB */
1090 if (!adev->gmc.xgmi.connected_to_cpu) {
1091 /* reserve PAT memory space to WC for VRAM */
1092 arch_io_reserve_memtype_wc(adev->gmc.aper_base,
1093 adev->gmc.aper_size);
1094
1095 /* Add an MTRR for the VRAM */
1096 adev->gmc.vram_mtrr = arch_phys_wc_add(adev->gmc.aper_base,
1097 adev->gmc.aper_size);
1098 }
1099
1100 DRM_INFO("Detected VRAM RAM=%lluM, BAR=%lluM\n",
1101 adev->gmc.mc_vram_size >> 20,
1102 (unsigned long long)adev->gmc.aper_size >> 20);
1103 DRM_INFO("RAM width %dbits %s\n",
1104 adev->gmc.vram_width, amdgpu_vram_names[adev->gmc.vram_type]);
1105 return amdgpu_ttm_init(adev);
1106}
1107
1108/**
1109 * amdgpu_bo_fini - tear down memory manager
1110 * @adev: amdgpu device object
1111 *
1112 * Reverses amdgpu_bo_init() to tear down memory manager.
1113 */
1114void amdgpu_bo_fini(struct amdgpu_device *adev)
1115{
1116 amdgpu_ttm_fini(adev);
1117}
1118
1119/**
1120 * amdgpu_bo_set_tiling_flags - set tiling flags
1121 * @bo: &amdgpu_bo buffer object
1122 * @tiling_flags: new flags
1123 *
1124 * Sets buffer object's tiling flags with the new one. Used by GEM ioctl or
1125 * kernel driver to set the tiling flags on a buffer.
1126 *
1127 * Returns:
1128 * 0 for success or a negative error code on failure.
1129 */
1130int amdgpu_bo_set_tiling_flags(struct amdgpu_bo *bo, u64 tiling_flags)
1131{
1132 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
1133 struct amdgpu_bo_user *ubo;
1134
1135 BUG_ON(bo->tbo.type == ttm_bo_type_kernel);
1136 if (adev->family <= AMDGPU_FAMILY_CZ &&
1137 AMDGPU_TILING_GET(tiling_flags, TILE_SPLIT) > 6)
1138 return -EINVAL;
1139
1140 ubo = to_amdgpu_bo_user(bo);
1141 ubo->tiling_flags = tiling_flags;
1142 return 0;
1143}
1144
1145/**
1146 * amdgpu_bo_get_tiling_flags - get tiling flags
1147 * @bo: &amdgpu_bo buffer object
1148 * @tiling_flags: returned flags
1149 *
1150 * Gets buffer object's tiling flags. Used by GEM ioctl or kernel driver to
1151 * set the tiling flags on a buffer.
1152 */
1153void amdgpu_bo_get_tiling_flags(struct amdgpu_bo *bo, u64 *tiling_flags)
1154{
1155 struct amdgpu_bo_user *ubo;
1156
1157 BUG_ON(bo->tbo.type == ttm_bo_type_kernel);
1158 dma_resv_assert_held(bo->tbo.base.resv);
1159 ubo = to_amdgpu_bo_user(bo);
1160
1161 if (tiling_flags)
1162 *tiling_flags = ubo->tiling_flags;
1163}
1164
1165/**
1166 * amdgpu_bo_set_metadata - set metadata
1167 * @bo: &amdgpu_bo buffer object
1168 * @metadata: new metadata
1169 * @metadata_size: size of the new metadata
1170 * @flags: flags of the new metadata
1171 *
1172 * Sets buffer object's metadata, its size and flags.
1173 * Used via GEM ioctl.
1174 *
1175 * Returns:
1176 * 0 for success or a negative error code on failure.
1177 */
1178int amdgpu_bo_set_metadata (struct amdgpu_bo *bo, void *metadata,
1179 uint32_t metadata_size, uint64_t flags)
1180{
1181 struct amdgpu_bo_user *ubo;
1182 void *buffer;
1183
1184 BUG_ON(bo->tbo.type == ttm_bo_type_kernel);
1185 ubo = to_amdgpu_bo_user(bo);
1186 if (!metadata_size) {
1187 if (ubo->metadata_size) {
1188 kfree(ubo->metadata);
1189 ubo->metadata = NULL;
1190 ubo->metadata_size = 0;
1191 }
1192 return 0;
1193 }
1194
1195 if (metadata == NULL)
1196 return -EINVAL;
1197
1198 buffer = kmemdup(metadata, metadata_size, GFP_KERNEL);
1199 if (buffer == NULL)
1200 return -ENOMEM;
1201
1202 kfree(ubo->metadata);
1203 ubo->metadata_flags = flags;
1204 ubo->metadata = buffer;
1205 ubo->metadata_size = metadata_size;
1206
1207 return 0;
1208}
1209
1210/**
1211 * amdgpu_bo_get_metadata - get metadata
1212 * @bo: &amdgpu_bo buffer object
1213 * @buffer: returned metadata
1214 * @buffer_size: size of the buffer
1215 * @metadata_size: size of the returned metadata
1216 * @flags: flags of the returned metadata
1217 *
1218 * Gets buffer object's metadata, its size and flags. buffer_size shall not be
1219 * less than metadata_size.
1220 * Used via GEM ioctl.
1221 *
1222 * Returns:
1223 * 0 for success or a negative error code on failure.
1224 */
1225int amdgpu_bo_get_metadata(struct amdgpu_bo *bo, void *buffer,
1226 size_t buffer_size, uint32_t *metadata_size,
1227 uint64_t *flags)
1228{
1229 struct amdgpu_bo_user *ubo;
1230
1231 if (!buffer && !metadata_size)
1232 return -EINVAL;
1233
1234 BUG_ON(bo->tbo.type == ttm_bo_type_kernel);
1235 ubo = to_amdgpu_bo_user(bo);
1236 if (metadata_size)
1237 *metadata_size = ubo->metadata_size;
1238
1239 if (buffer) {
1240 if (buffer_size < ubo->metadata_size)
1241 return -EINVAL;
1242
1243 if (ubo->metadata_size)
1244 memcpy(buffer, ubo->metadata, ubo->metadata_size);
1245 }
1246
1247 if (flags)
1248 *flags = ubo->metadata_flags;
1249
1250 return 0;
1251}
1252
1253/**
1254 * amdgpu_bo_move_notify - notification about a memory move
1255 * @bo: pointer to a buffer object
1256 * @evict: if this move is evicting the buffer from the graphics address space
1257 * @new_mem: new information of the bufer object
1258 *
1259 * Marks the corresponding &amdgpu_bo buffer object as invalid, also performs
1260 * bookkeeping.
1261 * TTM driver callback which is called when ttm moves a buffer.
1262 */
1263void amdgpu_bo_move_notify(struct ttm_buffer_object *bo,
1264 bool evict,
1265 struct ttm_resource *new_mem)
1266{
1267 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->bdev);
1268 struct amdgpu_bo *abo;
1269 struct ttm_resource *old_mem = bo->resource;
1270
1271 if (!amdgpu_bo_is_amdgpu_bo(bo))
1272 return;
1273
1274 abo = ttm_to_amdgpu_bo(bo);
1275 amdgpu_vm_bo_invalidate(adev, abo, evict);
1276
1277 amdgpu_bo_kunmap(abo);
1278
1279 if (abo->tbo.base.dma_buf && !abo->tbo.base.import_attach &&
1280 bo->resource->mem_type != TTM_PL_SYSTEM)
1281 dma_buf_move_notify(abo->tbo.base.dma_buf);
1282
1283 /* remember the eviction */
1284 if (evict)
1285 atomic64_inc(&adev->num_evictions);
1286
1287 /* update statistics */
1288 if (!new_mem)
1289 return;
1290
1291 /* move_notify is called before move happens */
1292 trace_amdgpu_bo_move(abo, new_mem->mem_type, old_mem->mem_type);
1293}
1294
1295void amdgpu_bo_get_memory(struct amdgpu_bo *bo, uint64_t *vram_mem,
1296 uint64_t *gtt_mem, uint64_t *cpu_mem)
1297{
1298 unsigned int domain;
1299
1300 domain = amdgpu_mem_type_to_domain(bo->tbo.resource->mem_type);
1301 switch (domain) {
1302 case AMDGPU_GEM_DOMAIN_VRAM:
1303 *vram_mem += amdgpu_bo_size(bo);
1304 break;
1305 case AMDGPU_GEM_DOMAIN_GTT:
1306 *gtt_mem += amdgpu_bo_size(bo);
1307 break;
1308 case AMDGPU_GEM_DOMAIN_CPU:
1309 default:
1310 *cpu_mem += amdgpu_bo_size(bo);
1311 break;
1312 }
1313}
1314
1315/**
1316 * amdgpu_bo_release_notify - notification about a BO being released
1317 * @bo: pointer to a buffer object
1318 *
1319 * Wipes VRAM buffers whose contents should not be leaked before the
1320 * memory is released.
1321 */
1322void amdgpu_bo_release_notify(struct ttm_buffer_object *bo)
1323{
1324 struct dma_fence *fence = NULL;
1325 struct amdgpu_bo *abo;
1326 int r;
1327
1328 if (!amdgpu_bo_is_amdgpu_bo(bo))
1329 return;
1330
1331 abo = ttm_to_amdgpu_bo(bo);
1332
1333 if (abo->kfd_bo)
1334 amdgpu_amdkfd_unreserve_memory_limit(abo);
1335
1336 /* We only remove the fence if the resv has individualized. */
1337 WARN_ON_ONCE(bo->type == ttm_bo_type_kernel
1338 && bo->base.resv != &bo->base._resv);
1339 if (bo->base.resv == &bo->base._resv)
1340 amdgpu_amdkfd_remove_fence_on_pt_pd_bos(abo);
1341
1342 if (bo->resource->mem_type != TTM_PL_VRAM ||
1343 !(abo->flags & AMDGPU_GEM_CREATE_VRAM_WIPE_ON_RELEASE))
1344 return;
1345
1346 dma_resv_lock(bo->base.resv, NULL);
1347
1348 r = amdgpu_fill_buffer(abo, AMDGPU_POISON, bo->base.resv, &fence);
1349 if (!WARN_ON(r)) {
1350 amdgpu_bo_fence(abo, fence, false);
1351 dma_fence_put(fence);
1352 }
1353
1354 dma_resv_unlock(bo->base.resv);
1355}
1356
1357/**
1358 * amdgpu_bo_fault_reserve_notify - notification about a memory fault
1359 * @bo: pointer to a buffer object
1360 *
1361 * Notifies the driver we are taking a fault on this BO and have reserved it,
1362 * also performs bookkeeping.
1363 * TTM driver callback for dealing with vm faults.
1364 *
1365 * Returns:
1366 * 0 for success or a negative error code on failure.
1367 */
1368vm_fault_t amdgpu_bo_fault_reserve_notify(struct ttm_buffer_object *bo)
1369{
1370 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->bdev);
1371 struct ttm_operation_ctx ctx = { false, false };
1372 struct amdgpu_bo *abo = ttm_to_amdgpu_bo(bo);
1373 unsigned long offset;
1374 int r;
1375
1376 /* Remember that this BO was accessed by the CPU */
1377 abo->flags |= AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED;
1378
1379 if (bo->resource->mem_type != TTM_PL_VRAM)
1380 return 0;
1381
1382 offset = bo->resource->start << PAGE_SHIFT;
1383 if ((offset + bo->base.size) <= adev->gmc.visible_vram_size)
1384 return 0;
1385
1386 /* Can't move a pinned BO to visible VRAM */
1387 if (abo->tbo.pin_count > 0)
1388 return VM_FAULT_SIGBUS;
1389
1390 /* hurrah the memory is not visible ! */
1391 atomic64_inc(&adev->num_vram_cpu_page_faults);
1392 amdgpu_bo_placement_from_domain(abo, AMDGPU_GEM_DOMAIN_VRAM |
1393 AMDGPU_GEM_DOMAIN_GTT);
1394
1395 /* Avoid costly evictions; only set GTT as a busy placement */
1396 abo->placement.num_busy_placement = 1;
1397 abo->placement.busy_placement = &abo->placements[1];
1398
1399 r = ttm_bo_validate(bo, &abo->placement, &ctx);
1400 if (unlikely(r == -EBUSY || r == -ERESTARTSYS))
1401 return VM_FAULT_NOPAGE;
1402 else if (unlikely(r))
1403 return VM_FAULT_SIGBUS;
1404
1405 offset = bo->resource->start << PAGE_SHIFT;
1406 /* this should never happen */
1407 if (bo->resource->mem_type == TTM_PL_VRAM &&
1408 (offset + bo->base.size) > adev->gmc.visible_vram_size)
1409 return VM_FAULT_SIGBUS;
1410
1411 ttm_bo_move_to_lru_tail_unlocked(bo);
1412 return 0;
1413}
1414
1415/**
1416 * amdgpu_bo_fence - add fence to buffer object
1417 *
1418 * @bo: buffer object in question
1419 * @fence: fence to add
1420 * @shared: true if fence should be added shared
1421 *
1422 */
1423void amdgpu_bo_fence(struct amdgpu_bo *bo, struct dma_fence *fence,
1424 bool shared)
1425{
1426 struct dma_resv *resv = bo->tbo.base.resv;
1427
1428 if (shared)
1429 dma_resv_add_shared_fence(resv, fence);
1430 else
1431 dma_resv_add_excl_fence(resv, fence);
1432}
1433
1434/**
1435 * amdgpu_bo_sync_wait_resv - Wait for BO reservation fences
1436 *
1437 * @adev: amdgpu device pointer
1438 * @resv: reservation object to sync to
1439 * @sync_mode: synchronization mode
1440 * @owner: fence owner
1441 * @intr: Whether the wait is interruptible
1442 *
1443 * Extract the fences from the reservation object and waits for them to finish.
1444 *
1445 * Returns:
1446 * 0 on success, errno otherwise.
1447 */
1448int amdgpu_bo_sync_wait_resv(struct amdgpu_device *adev, struct dma_resv *resv,
1449 enum amdgpu_sync_mode sync_mode, void *owner,
1450 bool intr)
1451{
1452 struct amdgpu_sync sync;
1453 int r;
1454
1455 amdgpu_sync_create(&sync);
1456 amdgpu_sync_resv(adev, &sync, resv, sync_mode, owner);
1457 r = amdgpu_sync_wait(&sync, intr);
1458 amdgpu_sync_free(&sync);
1459 return r;
1460}
1461
1462/**
1463 * amdgpu_bo_sync_wait - Wrapper for amdgpu_bo_sync_wait_resv
1464 * @bo: buffer object to wait for
1465 * @owner: fence owner
1466 * @intr: Whether the wait is interruptible
1467 *
1468 * Wrapper to wait for fences in a BO.
1469 * Returns:
1470 * 0 on success, errno otherwise.
1471 */
1472int amdgpu_bo_sync_wait(struct amdgpu_bo *bo, void *owner, bool intr)
1473{
1474 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
1475
1476 return amdgpu_bo_sync_wait_resv(adev, bo->tbo.base.resv,
1477 AMDGPU_SYNC_NE_OWNER, owner, intr);
1478}
1479
1480/**
1481 * amdgpu_bo_gpu_offset - return GPU offset of bo
1482 * @bo: amdgpu object for which we query the offset
1483 *
1484 * Note: object should either be pinned or reserved when calling this
1485 * function, it might be useful to add check for this for debugging.
1486 *
1487 * Returns:
1488 * current GPU offset of the object.
1489 */
1490u64 amdgpu_bo_gpu_offset(struct amdgpu_bo *bo)
1491{
1492 WARN_ON_ONCE(bo->tbo.resource->mem_type == TTM_PL_SYSTEM);
1493 WARN_ON_ONCE(!dma_resv_is_locked(bo->tbo.base.resv) &&
1494 !bo->tbo.pin_count && bo->tbo.type != ttm_bo_type_kernel);
1495 WARN_ON_ONCE(bo->tbo.resource->start == AMDGPU_BO_INVALID_OFFSET);
1496 WARN_ON_ONCE(bo->tbo.resource->mem_type == TTM_PL_VRAM &&
1497 !(bo->flags & AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS));
1498
1499 return amdgpu_bo_gpu_offset_no_check(bo);
1500}
1501
1502/**
1503 * amdgpu_bo_gpu_offset_no_check - return GPU offset of bo
1504 * @bo: amdgpu object for which we query the offset
1505 *
1506 * Returns:
1507 * current GPU offset of the object without raising warnings.
1508 */
1509u64 amdgpu_bo_gpu_offset_no_check(struct amdgpu_bo *bo)
1510{
1511 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
1512 uint64_t offset;
1513
1514 offset = (bo->tbo.resource->start << PAGE_SHIFT) +
1515 amdgpu_ttm_domain_start(adev, bo->tbo.resource->mem_type);
1516
1517 return amdgpu_gmc_sign_extend(offset);
1518}
1519
1520/**
1521 * amdgpu_bo_get_preferred_pin_domain - get preferred domain for scanout
1522 * @adev: amdgpu device object
1523 * @domain: allowed :ref:`memory domains <amdgpu_memory_domains>`
1524 *
1525 * Returns:
1526 * Which of the allowed domains is preferred for pinning the BO for scanout.
1527 */
1528uint32_t amdgpu_bo_get_preferred_pin_domain(struct amdgpu_device *adev,
1529 uint32_t domain)
1530{
1531 if (domain == (AMDGPU_GEM_DOMAIN_VRAM | AMDGPU_GEM_DOMAIN_GTT)) {
1532 domain = AMDGPU_GEM_DOMAIN_VRAM;
1533 if (adev->gmc.real_vram_size <= AMDGPU_SG_THRESHOLD)
1534 domain = AMDGPU_GEM_DOMAIN_GTT;
1535 }
1536 return domain;
1537}
1538
1539#if defined(CONFIG_DEBUG_FS)
1540#define amdgpu_bo_print_flag(m, bo, flag) \
1541 do { \
1542 if (bo->flags & (AMDGPU_GEM_CREATE_ ## flag)) { \
1543 seq_printf((m), " " #flag); \
1544 } \
1545 } while (0)
1546
1547/**
1548 * amdgpu_bo_print_info - print BO info in debugfs file
1549 *
1550 * @id: Index or Id of the BO
1551 * @bo: Requested BO for printing info
1552 * @m: debugfs file
1553 *
1554 * Print BO information in debugfs file
1555 *
1556 * Returns:
1557 * Size of the BO in bytes.
1558 */
1559u64 amdgpu_bo_print_info(int id, struct amdgpu_bo *bo, struct seq_file *m)
1560{
1561 struct dma_buf_attachment *attachment;
1562 struct dma_buf *dma_buf;
1563 unsigned int domain;
1564 const char *placement;
1565 unsigned int pin_count;
1566 u64 size;
1567
1568 domain = amdgpu_mem_type_to_domain(bo->tbo.resource->mem_type);
1569 switch (domain) {
1570 case AMDGPU_GEM_DOMAIN_VRAM:
1571 placement = "VRAM";
1572 break;
1573 case AMDGPU_GEM_DOMAIN_GTT:
1574 placement = " GTT";
1575 break;
1576 case AMDGPU_GEM_DOMAIN_CPU:
1577 default:
1578 placement = " CPU";
1579 break;
1580 }
1581
1582 size = amdgpu_bo_size(bo);
1583 seq_printf(m, "\t\t0x%08x: %12lld byte %s",
1584 id, size, placement);
1585
1586 pin_count = READ_ONCE(bo->tbo.pin_count);
1587 if (pin_count)
1588 seq_printf(m, " pin count %d", pin_count);
1589
1590 dma_buf = READ_ONCE(bo->tbo.base.dma_buf);
1591 attachment = READ_ONCE(bo->tbo.base.import_attach);
1592
1593 if (attachment)
1594 seq_printf(m, " imported from %p", dma_buf);
1595 else if (dma_buf)
1596 seq_printf(m, " exported as %p", dma_buf);
1597
1598 amdgpu_bo_print_flag(m, bo, CPU_ACCESS_REQUIRED);
1599 amdgpu_bo_print_flag(m, bo, NO_CPU_ACCESS);
1600 amdgpu_bo_print_flag(m, bo, CPU_GTT_USWC);
1601 amdgpu_bo_print_flag(m, bo, VRAM_CLEARED);
1602 amdgpu_bo_print_flag(m, bo, VRAM_CONTIGUOUS);
1603 amdgpu_bo_print_flag(m, bo, VM_ALWAYS_VALID);
1604 amdgpu_bo_print_flag(m, bo, EXPLICIT_SYNC);
1605
1606 seq_puts(m, "\n");
1607
1608 return size;
1609}
1610#endif
1/*
2 * Copyright 2009 Jerome Glisse.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sub license, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
16 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
17 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
18 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
19 * USE OR OTHER DEALINGS IN THE SOFTWARE.
20 *
21 * The above copyright notice and this permission notice (including the
22 * next paragraph) shall be included in all copies or substantial portions
23 * of the Software.
24 *
25 */
26/*
27 * Authors:
28 * Jerome Glisse <glisse@freedesktop.org>
29 * Thomas Hellstrom <thomas-at-tungstengraphics-dot-com>
30 * Dave Airlie
31 */
32#include <linux/list.h>
33#include <linux/slab.h>
34#include <drm/drmP.h>
35#include <drm/amdgpu_drm.h>
36#include <drm/drm_cache.h>
37#include "amdgpu.h"
38#include "amdgpu_trace.h"
39
40
41
42static u64 amdgpu_get_vis_part_size(struct amdgpu_device *adev,
43 struct ttm_mem_reg *mem)
44{
45 if (mem->start << PAGE_SHIFT >= adev->mc.visible_vram_size)
46 return 0;
47
48 return ((mem->start << PAGE_SHIFT) + mem->size) >
49 adev->mc.visible_vram_size ?
50 adev->mc.visible_vram_size - (mem->start << PAGE_SHIFT) :
51 mem->size;
52}
53
54static void amdgpu_update_memory_usage(struct amdgpu_device *adev,
55 struct ttm_mem_reg *old_mem,
56 struct ttm_mem_reg *new_mem)
57{
58 u64 vis_size;
59 if (!adev)
60 return;
61
62 if (new_mem) {
63 switch (new_mem->mem_type) {
64 case TTM_PL_TT:
65 atomic64_add(new_mem->size, &adev->gtt_usage);
66 break;
67 case TTM_PL_VRAM:
68 atomic64_add(new_mem->size, &adev->vram_usage);
69 vis_size = amdgpu_get_vis_part_size(adev, new_mem);
70 atomic64_add(vis_size, &adev->vram_vis_usage);
71 break;
72 }
73 }
74
75 if (old_mem) {
76 switch (old_mem->mem_type) {
77 case TTM_PL_TT:
78 atomic64_sub(old_mem->size, &adev->gtt_usage);
79 break;
80 case TTM_PL_VRAM:
81 atomic64_sub(old_mem->size, &adev->vram_usage);
82 vis_size = amdgpu_get_vis_part_size(adev, old_mem);
83 atomic64_sub(vis_size, &adev->vram_vis_usage);
84 break;
85 }
86 }
87}
88
89static void amdgpu_ttm_bo_destroy(struct ttm_buffer_object *tbo)
90{
91 struct amdgpu_device *adev = amdgpu_ttm_adev(tbo->bdev);
92 struct amdgpu_bo *bo;
93
94 bo = container_of(tbo, struct amdgpu_bo, tbo);
95
96 amdgpu_update_memory_usage(adev, &bo->tbo.mem, NULL);
97
98 drm_gem_object_release(&bo->gem_base);
99 amdgpu_bo_unref(&bo->parent);
100 if (!list_empty(&bo->shadow_list)) {
101 mutex_lock(&adev->shadow_list_lock);
102 list_del_init(&bo->shadow_list);
103 mutex_unlock(&adev->shadow_list_lock);
104 }
105 kfree(bo->metadata);
106 kfree(bo);
107}
108
109bool amdgpu_ttm_bo_is_amdgpu_bo(struct ttm_buffer_object *bo)
110{
111 if (bo->destroy == &amdgpu_ttm_bo_destroy)
112 return true;
113 return false;
114}
115
116static void amdgpu_ttm_placement_init(struct amdgpu_device *adev,
117 struct ttm_placement *placement,
118 struct ttm_place *places,
119 u32 domain, u64 flags)
120{
121 u32 c = 0;
122
123 if (domain & AMDGPU_GEM_DOMAIN_VRAM) {
124 unsigned visible_pfn = adev->mc.visible_vram_size >> PAGE_SHIFT;
125 unsigned lpfn = 0;
126
127 /* This forces a reallocation if the flag wasn't set before */
128 if (flags & AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS)
129 lpfn = adev->mc.real_vram_size >> PAGE_SHIFT;
130
131 places[c].fpfn = 0;
132 places[c].lpfn = lpfn;
133 places[c].flags = TTM_PL_FLAG_WC | TTM_PL_FLAG_UNCACHED |
134 TTM_PL_FLAG_VRAM;
135 if (flags & AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED)
136 places[c].lpfn = visible_pfn;
137 else
138 places[c].flags |= TTM_PL_FLAG_TOPDOWN;
139 c++;
140 }
141
142 if (domain & AMDGPU_GEM_DOMAIN_GTT) {
143 places[c].fpfn = 0;
144 places[c].lpfn = 0;
145 places[c].flags = TTM_PL_FLAG_TT;
146 if (flags & AMDGPU_GEM_CREATE_CPU_GTT_USWC)
147 places[c].flags |= TTM_PL_FLAG_WC |
148 TTM_PL_FLAG_UNCACHED;
149 else
150 places[c].flags |= TTM_PL_FLAG_CACHED;
151 c++;
152 }
153
154 if (domain & AMDGPU_GEM_DOMAIN_CPU) {
155 places[c].fpfn = 0;
156 places[c].lpfn = 0;
157 places[c].flags = TTM_PL_FLAG_SYSTEM;
158 if (flags & AMDGPU_GEM_CREATE_CPU_GTT_USWC)
159 places[c].flags |= TTM_PL_FLAG_WC |
160 TTM_PL_FLAG_UNCACHED;
161 else
162 places[c].flags |= TTM_PL_FLAG_CACHED;
163 c++;
164 }
165
166 if (domain & AMDGPU_GEM_DOMAIN_GDS) {
167 places[c].fpfn = 0;
168 places[c].lpfn = 0;
169 places[c].flags = TTM_PL_FLAG_UNCACHED | AMDGPU_PL_FLAG_GDS;
170 c++;
171 }
172
173 if (domain & AMDGPU_GEM_DOMAIN_GWS) {
174 places[c].fpfn = 0;
175 places[c].lpfn = 0;
176 places[c].flags = TTM_PL_FLAG_UNCACHED | AMDGPU_PL_FLAG_GWS;
177 c++;
178 }
179
180 if (domain & AMDGPU_GEM_DOMAIN_OA) {
181 places[c].fpfn = 0;
182 places[c].lpfn = 0;
183 places[c].flags = TTM_PL_FLAG_UNCACHED | AMDGPU_PL_FLAG_OA;
184 c++;
185 }
186
187 if (!c) {
188 places[c].fpfn = 0;
189 places[c].lpfn = 0;
190 places[c].flags = TTM_PL_MASK_CACHING | TTM_PL_FLAG_SYSTEM;
191 c++;
192 }
193
194 placement->num_placement = c;
195 placement->placement = places;
196
197 placement->num_busy_placement = c;
198 placement->busy_placement = places;
199}
200
201void amdgpu_ttm_placement_from_domain(struct amdgpu_bo *abo, u32 domain)
202{
203 struct amdgpu_device *adev = amdgpu_ttm_adev(abo->tbo.bdev);
204
205 amdgpu_ttm_placement_init(adev, &abo->placement, abo->placements,
206 domain, abo->flags);
207}
208
209static void amdgpu_fill_placement_to_bo(struct amdgpu_bo *bo,
210 struct ttm_placement *placement)
211{
212 BUG_ON(placement->num_placement > (AMDGPU_GEM_DOMAIN_MAX + 1));
213
214 memcpy(bo->placements, placement->placement,
215 placement->num_placement * sizeof(struct ttm_place));
216 bo->placement.num_placement = placement->num_placement;
217 bo->placement.num_busy_placement = placement->num_busy_placement;
218 bo->placement.placement = bo->placements;
219 bo->placement.busy_placement = bo->placements;
220}
221
222/**
223 * amdgpu_bo_create_kernel - create BO for kernel use
224 *
225 * @adev: amdgpu device object
226 * @size: size for the new BO
227 * @align: alignment for the new BO
228 * @domain: where to place it
229 * @bo_ptr: resulting BO
230 * @gpu_addr: GPU addr of the pinned BO
231 * @cpu_addr: optional CPU address mapping
232 *
233 * Allocates and pins a BO for kernel internal use.
234 *
235 * Returns 0 on success, negative error code otherwise.
236 */
237int amdgpu_bo_create_kernel(struct amdgpu_device *adev,
238 unsigned long size, int align,
239 u32 domain, struct amdgpu_bo **bo_ptr,
240 u64 *gpu_addr, void **cpu_addr)
241{
242 int r;
243
244 r = amdgpu_bo_create(adev, size, align, true, domain,
245 AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED |
246 AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS,
247 NULL, NULL, bo_ptr);
248 if (r) {
249 dev_err(adev->dev, "(%d) failed to allocate kernel bo\n", r);
250 return r;
251 }
252
253 r = amdgpu_bo_reserve(*bo_ptr, false);
254 if (r) {
255 dev_err(adev->dev, "(%d) failed to reserve kernel bo\n", r);
256 goto error_free;
257 }
258
259 r = amdgpu_bo_pin(*bo_ptr, domain, gpu_addr);
260 if (r) {
261 dev_err(adev->dev, "(%d) kernel bo pin failed\n", r);
262 goto error_unreserve;
263 }
264
265 if (cpu_addr) {
266 r = amdgpu_bo_kmap(*bo_ptr, cpu_addr);
267 if (r) {
268 dev_err(adev->dev, "(%d) kernel bo map failed\n", r);
269 goto error_unreserve;
270 }
271 }
272
273 amdgpu_bo_unreserve(*bo_ptr);
274
275 return 0;
276
277error_unreserve:
278 amdgpu_bo_unreserve(*bo_ptr);
279
280error_free:
281 amdgpu_bo_unref(bo_ptr);
282
283 return r;
284}
285
286/**
287 * amdgpu_bo_free_kernel - free BO for kernel use
288 *
289 * @bo: amdgpu BO to free
290 *
291 * unmaps and unpin a BO for kernel internal use.
292 */
293void amdgpu_bo_free_kernel(struct amdgpu_bo **bo, u64 *gpu_addr,
294 void **cpu_addr)
295{
296 if (*bo == NULL)
297 return;
298
299 if (likely(amdgpu_bo_reserve(*bo, false) == 0)) {
300 if (cpu_addr)
301 amdgpu_bo_kunmap(*bo);
302
303 amdgpu_bo_unpin(*bo);
304 amdgpu_bo_unreserve(*bo);
305 }
306 amdgpu_bo_unref(bo);
307
308 if (gpu_addr)
309 *gpu_addr = 0;
310
311 if (cpu_addr)
312 *cpu_addr = NULL;
313}
314
315int amdgpu_bo_create_restricted(struct amdgpu_device *adev,
316 unsigned long size, int byte_align,
317 bool kernel, u32 domain, u64 flags,
318 struct sg_table *sg,
319 struct ttm_placement *placement,
320 struct reservation_object *resv,
321 struct amdgpu_bo **bo_ptr)
322{
323 struct amdgpu_bo *bo;
324 enum ttm_bo_type type;
325 unsigned long page_align;
326 size_t acc_size;
327 int r;
328
329 page_align = roundup(byte_align, PAGE_SIZE) >> PAGE_SHIFT;
330 size = ALIGN(size, PAGE_SIZE);
331
332 if (kernel) {
333 type = ttm_bo_type_kernel;
334 } else if (sg) {
335 type = ttm_bo_type_sg;
336 } else {
337 type = ttm_bo_type_device;
338 }
339 *bo_ptr = NULL;
340
341 acc_size = ttm_bo_dma_acc_size(&adev->mman.bdev, size,
342 sizeof(struct amdgpu_bo));
343
344 bo = kzalloc(sizeof(struct amdgpu_bo), GFP_KERNEL);
345 if (bo == NULL)
346 return -ENOMEM;
347 r = drm_gem_object_init(adev->ddev, &bo->gem_base, size);
348 if (unlikely(r)) {
349 kfree(bo);
350 return r;
351 }
352 INIT_LIST_HEAD(&bo->shadow_list);
353 INIT_LIST_HEAD(&bo->va);
354 bo->prefered_domains = domain & (AMDGPU_GEM_DOMAIN_VRAM |
355 AMDGPU_GEM_DOMAIN_GTT |
356 AMDGPU_GEM_DOMAIN_CPU |
357 AMDGPU_GEM_DOMAIN_GDS |
358 AMDGPU_GEM_DOMAIN_GWS |
359 AMDGPU_GEM_DOMAIN_OA);
360 bo->allowed_domains = bo->prefered_domains;
361 if (!kernel && bo->allowed_domains == AMDGPU_GEM_DOMAIN_VRAM)
362 bo->allowed_domains |= AMDGPU_GEM_DOMAIN_GTT;
363
364 bo->flags = flags;
365
366 /* For architectures that don't support WC memory,
367 * mask out the WC flag from the BO
368 */
369 if (!drm_arch_can_wc_memory())
370 bo->flags &= ~AMDGPU_GEM_CREATE_CPU_GTT_USWC;
371
372 amdgpu_fill_placement_to_bo(bo, placement);
373 /* Kernel allocation are uninterruptible */
374
375 if (!resv) {
376 bool locked;
377
378 reservation_object_init(&bo->tbo.ttm_resv);
379 locked = ww_mutex_trylock(&bo->tbo.ttm_resv.lock);
380 WARN_ON(!locked);
381 }
382 r = ttm_bo_init(&adev->mman.bdev, &bo->tbo, size, type,
383 &bo->placement, page_align, !kernel, NULL,
384 acc_size, sg, resv ? resv : &bo->tbo.ttm_resv,
385 &amdgpu_ttm_bo_destroy);
386 if (unlikely(r != 0))
387 return r;
388
389 if (flags & AMDGPU_GEM_CREATE_VRAM_CLEARED &&
390 bo->tbo.mem.placement & TTM_PL_FLAG_VRAM) {
391 struct dma_fence *fence;
392
393 r = amdgpu_fill_buffer(bo, 0, bo->tbo.resv, &fence);
394 if (unlikely(r))
395 goto fail_unreserve;
396
397 amdgpu_bo_fence(bo, fence, false);
398 dma_fence_put(bo->tbo.moving);
399 bo->tbo.moving = dma_fence_get(fence);
400 dma_fence_put(fence);
401 }
402 if (!resv)
403 ww_mutex_unlock(&bo->tbo.resv->lock);
404 *bo_ptr = bo;
405
406 trace_amdgpu_bo_create(bo);
407
408 return 0;
409
410fail_unreserve:
411 ww_mutex_unlock(&bo->tbo.resv->lock);
412 amdgpu_bo_unref(&bo);
413 return r;
414}
415
416static int amdgpu_bo_create_shadow(struct amdgpu_device *adev,
417 unsigned long size, int byte_align,
418 struct amdgpu_bo *bo)
419{
420 struct ttm_placement placement = {0};
421 struct ttm_place placements[AMDGPU_GEM_DOMAIN_MAX + 1];
422 int r;
423
424 if (bo->shadow)
425 return 0;
426
427 bo->flags |= AMDGPU_GEM_CREATE_SHADOW;
428 memset(&placements, 0,
429 (AMDGPU_GEM_DOMAIN_MAX + 1) * sizeof(struct ttm_place));
430
431 amdgpu_ttm_placement_init(adev, &placement,
432 placements, AMDGPU_GEM_DOMAIN_GTT,
433 AMDGPU_GEM_CREATE_CPU_GTT_USWC);
434
435 r = amdgpu_bo_create_restricted(adev, size, byte_align, true,
436 AMDGPU_GEM_DOMAIN_GTT,
437 AMDGPU_GEM_CREATE_CPU_GTT_USWC,
438 NULL, &placement,
439 bo->tbo.resv,
440 &bo->shadow);
441 if (!r) {
442 bo->shadow->parent = amdgpu_bo_ref(bo);
443 mutex_lock(&adev->shadow_list_lock);
444 list_add_tail(&bo->shadow_list, &adev->shadow_list);
445 mutex_unlock(&adev->shadow_list_lock);
446 }
447
448 return r;
449}
450
451int amdgpu_bo_create(struct amdgpu_device *adev,
452 unsigned long size, int byte_align,
453 bool kernel, u32 domain, u64 flags,
454 struct sg_table *sg,
455 struct reservation_object *resv,
456 struct amdgpu_bo **bo_ptr)
457{
458 struct ttm_placement placement = {0};
459 struct ttm_place placements[AMDGPU_GEM_DOMAIN_MAX + 1];
460 int r;
461
462 memset(&placements, 0,
463 (AMDGPU_GEM_DOMAIN_MAX + 1) * sizeof(struct ttm_place));
464
465 amdgpu_ttm_placement_init(adev, &placement,
466 placements, domain, flags);
467
468 r = amdgpu_bo_create_restricted(adev, size, byte_align, kernel,
469 domain, flags, sg, &placement,
470 resv, bo_ptr);
471 if (r)
472 return r;
473
474 if (amdgpu_need_backup(adev) && (flags & AMDGPU_GEM_CREATE_SHADOW)) {
475 r = amdgpu_bo_create_shadow(adev, size, byte_align, (*bo_ptr));
476 if (r)
477 amdgpu_bo_unref(bo_ptr);
478 }
479
480 return r;
481}
482
483int amdgpu_bo_backup_to_shadow(struct amdgpu_device *adev,
484 struct amdgpu_ring *ring,
485 struct amdgpu_bo *bo,
486 struct reservation_object *resv,
487 struct dma_fence **fence,
488 bool direct)
489
490{
491 struct amdgpu_bo *shadow = bo->shadow;
492 uint64_t bo_addr, shadow_addr;
493 int r;
494
495 if (!shadow)
496 return -EINVAL;
497
498 bo_addr = amdgpu_bo_gpu_offset(bo);
499 shadow_addr = amdgpu_bo_gpu_offset(bo->shadow);
500
501 r = reservation_object_reserve_shared(bo->tbo.resv);
502 if (r)
503 goto err;
504
505 r = amdgpu_copy_buffer(ring, bo_addr, shadow_addr,
506 amdgpu_bo_size(bo), resv, fence,
507 direct);
508 if (!r)
509 amdgpu_bo_fence(bo, *fence, true);
510
511err:
512 return r;
513}
514
515int amdgpu_bo_restore_from_shadow(struct amdgpu_device *adev,
516 struct amdgpu_ring *ring,
517 struct amdgpu_bo *bo,
518 struct reservation_object *resv,
519 struct dma_fence **fence,
520 bool direct)
521
522{
523 struct amdgpu_bo *shadow = bo->shadow;
524 uint64_t bo_addr, shadow_addr;
525 int r;
526
527 if (!shadow)
528 return -EINVAL;
529
530 bo_addr = amdgpu_bo_gpu_offset(bo);
531 shadow_addr = amdgpu_bo_gpu_offset(bo->shadow);
532
533 r = reservation_object_reserve_shared(bo->tbo.resv);
534 if (r)
535 goto err;
536
537 r = amdgpu_copy_buffer(ring, shadow_addr, bo_addr,
538 amdgpu_bo_size(bo), resv, fence,
539 direct);
540 if (!r)
541 amdgpu_bo_fence(bo, *fence, true);
542
543err:
544 return r;
545}
546
547int amdgpu_bo_kmap(struct amdgpu_bo *bo, void **ptr)
548{
549 bool is_iomem;
550 long r;
551
552 if (bo->flags & AMDGPU_GEM_CREATE_NO_CPU_ACCESS)
553 return -EPERM;
554
555 if (bo->kptr) {
556 if (ptr) {
557 *ptr = bo->kptr;
558 }
559 return 0;
560 }
561
562 r = reservation_object_wait_timeout_rcu(bo->tbo.resv, false, false,
563 MAX_SCHEDULE_TIMEOUT);
564 if (r < 0)
565 return r;
566
567 r = ttm_bo_kmap(&bo->tbo, 0, bo->tbo.num_pages, &bo->kmap);
568 if (r)
569 return r;
570
571 bo->kptr = ttm_kmap_obj_virtual(&bo->kmap, &is_iomem);
572 if (ptr)
573 *ptr = bo->kptr;
574
575 return 0;
576}
577
578void amdgpu_bo_kunmap(struct amdgpu_bo *bo)
579{
580 if (bo->kptr == NULL)
581 return;
582 bo->kptr = NULL;
583 ttm_bo_kunmap(&bo->kmap);
584}
585
586struct amdgpu_bo *amdgpu_bo_ref(struct amdgpu_bo *bo)
587{
588 if (bo == NULL)
589 return NULL;
590
591 ttm_bo_reference(&bo->tbo);
592 return bo;
593}
594
595void amdgpu_bo_unref(struct amdgpu_bo **bo)
596{
597 struct ttm_buffer_object *tbo;
598
599 if ((*bo) == NULL)
600 return;
601
602 tbo = &((*bo)->tbo);
603 ttm_bo_unref(&tbo);
604 if (tbo == NULL)
605 *bo = NULL;
606}
607
608int amdgpu_bo_pin_restricted(struct amdgpu_bo *bo, u32 domain,
609 u64 min_offset, u64 max_offset,
610 u64 *gpu_addr)
611{
612 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
613 int r, i;
614 unsigned fpfn, lpfn;
615
616 if (amdgpu_ttm_tt_get_usermm(bo->tbo.ttm))
617 return -EPERM;
618
619 if (WARN_ON_ONCE(min_offset > max_offset))
620 return -EINVAL;
621
622 if (bo->pin_count) {
623 uint32_t mem_type = bo->tbo.mem.mem_type;
624
625 if (domain != amdgpu_mem_type_to_domain(mem_type))
626 return -EINVAL;
627
628 bo->pin_count++;
629 if (gpu_addr)
630 *gpu_addr = amdgpu_bo_gpu_offset(bo);
631
632 if (max_offset != 0) {
633 u64 domain_start = bo->tbo.bdev->man[mem_type].gpu_offset;
634 WARN_ON_ONCE(max_offset <
635 (amdgpu_bo_gpu_offset(bo) - domain_start));
636 }
637
638 return 0;
639 }
640
641 bo->flags |= AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS;
642 amdgpu_ttm_placement_from_domain(bo, domain);
643 for (i = 0; i < bo->placement.num_placement; i++) {
644 /* force to pin into visible video ram */
645 if ((bo->placements[i].flags & TTM_PL_FLAG_VRAM) &&
646 !(bo->flags & AMDGPU_GEM_CREATE_NO_CPU_ACCESS) &&
647 (!max_offset || max_offset >
648 adev->mc.visible_vram_size)) {
649 if (WARN_ON_ONCE(min_offset >
650 adev->mc.visible_vram_size))
651 return -EINVAL;
652 fpfn = min_offset >> PAGE_SHIFT;
653 lpfn = adev->mc.visible_vram_size >> PAGE_SHIFT;
654 } else {
655 fpfn = min_offset >> PAGE_SHIFT;
656 lpfn = max_offset >> PAGE_SHIFT;
657 }
658 if (fpfn > bo->placements[i].fpfn)
659 bo->placements[i].fpfn = fpfn;
660 if (!bo->placements[i].lpfn ||
661 (lpfn && lpfn < bo->placements[i].lpfn))
662 bo->placements[i].lpfn = lpfn;
663 bo->placements[i].flags |= TTM_PL_FLAG_NO_EVICT;
664 }
665
666 r = ttm_bo_validate(&bo->tbo, &bo->placement, false, false);
667 if (unlikely(r)) {
668 dev_err(adev->dev, "%p pin failed\n", bo);
669 goto error;
670 }
671 r = amdgpu_ttm_bind(&bo->tbo, &bo->tbo.mem);
672 if (unlikely(r)) {
673 dev_err(adev->dev, "%p bind failed\n", bo);
674 goto error;
675 }
676
677 bo->pin_count = 1;
678 if (gpu_addr != NULL)
679 *gpu_addr = amdgpu_bo_gpu_offset(bo);
680 if (domain == AMDGPU_GEM_DOMAIN_VRAM) {
681 adev->vram_pin_size += amdgpu_bo_size(bo);
682 if (bo->flags & AMDGPU_GEM_CREATE_NO_CPU_ACCESS)
683 adev->invisible_pin_size += amdgpu_bo_size(bo);
684 } else if (domain == AMDGPU_GEM_DOMAIN_GTT) {
685 adev->gart_pin_size += amdgpu_bo_size(bo);
686 }
687
688error:
689 return r;
690}
691
692int amdgpu_bo_pin(struct amdgpu_bo *bo, u32 domain, u64 *gpu_addr)
693{
694 return amdgpu_bo_pin_restricted(bo, domain, 0, 0, gpu_addr);
695}
696
697int amdgpu_bo_unpin(struct amdgpu_bo *bo)
698{
699 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
700 int r, i;
701
702 if (!bo->pin_count) {
703 dev_warn(adev->dev, "%p unpin not necessary\n", bo);
704 return 0;
705 }
706 bo->pin_count--;
707 if (bo->pin_count)
708 return 0;
709 for (i = 0; i < bo->placement.num_placement; i++) {
710 bo->placements[i].lpfn = 0;
711 bo->placements[i].flags &= ~TTM_PL_FLAG_NO_EVICT;
712 }
713 r = ttm_bo_validate(&bo->tbo, &bo->placement, false, false);
714 if (unlikely(r)) {
715 dev_err(adev->dev, "%p validate failed for unpin\n", bo);
716 goto error;
717 }
718
719 if (bo->tbo.mem.mem_type == TTM_PL_VRAM) {
720 adev->vram_pin_size -= amdgpu_bo_size(bo);
721 if (bo->flags & AMDGPU_GEM_CREATE_NO_CPU_ACCESS)
722 adev->invisible_pin_size -= amdgpu_bo_size(bo);
723 } else if (bo->tbo.mem.mem_type == TTM_PL_TT) {
724 adev->gart_pin_size -= amdgpu_bo_size(bo);
725 }
726
727error:
728 return r;
729}
730
731int amdgpu_bo_evict_vram(struct amdgpu_device *adev)
732{
733 /* late 2.6.33 fix IGP hibernate - we need pm ops to do this correct */
734 if (0 && (adev->flags & AMD_IS_APU)) {
735 /* Useless to evict on IGP chips */
736 return 0;
737 }
738 return ttm_bo_evict_mm(&adev->mman.bdev, TTM_PL_VRAM);
739}
740
741static const char *amdgpu_vram_names[] = {
742 "UNKNOWN",
743 "GDDR1",
744 "DDR2",
745 "GDDR3",
746 "GDDR4",
747 "GDDR5",
748 "HBM",
749 "DDR3"
750};
751
752int amdgpu_bo_init(struct amdgpu_device *adev)
753{
754 /* reserve PAT memory space to WC for VRAM */
755 arch_io_reserve_memtype_wc(adev->mc.aper_base,
756 adev->mc.aper_size);
757
758 /* Add an MTRR for the VRAM */
759 adev->mc.vram_mtrr = arch_phys_wc_add(adev->mc.aper_base,
760 adev->mc.aper_size);
761 DRM_INFO("Detected VRAM RAM=%lluM, BAR=%lluM\n",
762 adev->mc.mc_vram_size >> 20,
763 (unsigned long long)adev->mc.aper_size >> 20);
764 DRM_INFO("RAM width %dbits %s\n",
765 adev->mc.vram_width, amdgpu_vram_names[adev->mc.vram_type]);
766 return amdgpu_ttm_init(adev);
767}
768
769void amdgpu_bo_fini(struct amdgpu_device *adev)
770{
771 amdgpu_ttm_fini(adev);
772 arch_phys_wc_del(adev->mc.vram_mtrr);
773 arch_io_free_memtype_wc(adev->mc.aper_base, adev->mc.aper_size);
774}
775
776int amdgpu_bo_fbdev_mmap(struct amdgpu_bo *bo,
777 struct vm_area_struct *vma)
778{
779 return ttm_fbdev_mmap(vma, &bo->tbo);
780}
781
782int amdgpu_bo_set_tiling_flags(struct amdgpu_bo *bo, u64 tiling_flags)
783{
784 if (AMDGPU_TILING_GET(tiling_flags, TILE_SPLIT) > 6)
785 return -EINVAL;
786
787 bo->tiling_flags = tiling_flags;
788 return 0;
789}
790
791void amdgpu_bo_get_tiling_flags(struct amdgpu_bo *bo, u64 *tiling_flags)
792{
793 lockdep_assert_held(&bo->tbo.resv->lock.base);
794
795 if (tiling_flags)
796 *tiling_flags = bo->tiling_flags;
797}
798
799int amdgpu_bo_set_metadata (struct amdgpu_bo *bo, void *metadata,
800 uint32_t metadata_size, uint64_t flags)
801{
802 void *buffer;
803
804 if (!metadata_size) {
805 if (bo->metadata_size) {
806 kfree(bo->metadata);
807 bo->metadata = NULL;
808 bo->metadata_size = 0;
809 }
810 return 0;
811 }
812
813 if (metadata == NULL)
814 return -EINVAL;
815
816 buffer = kmemdup(metadata, metadata_size, GFP_KERNEL);
817 if (buffer == NULL)
818 return -ENOMEM;
819
820 kfree(bo->metadata);
821 bo->metadata_flags = flags;
822 bo->metadata = buffer;
823 bo->metadata_size = metadata_size;
824
825 return 0;
826}
827
828int amdgpu_bo_get_metadata(struct amdgpu_bo *bo, void *buffer,
829 size_t buffer_size, uint32_t *metadata_size,
830 uint64_t *flags)
831{
832 if (!buffer && !metadata_size)
833 return -EINVAL;
834
835 if (buffer) {
836 if (buffer_size < bo->metadata_size)
837 return -EINVAL;
838
839 if (bo->metadata_size)
840 memcpy(buffer, bo->metadata, bo->metadata_size);
841 }
842
843 if (metadata_size)
844 *metadata_size = bo->metadata_size;
845 if (flags)
846 *flags = bo->metadata_flags;
847
848 return 0;
849}
850
851void amdgpu_bo_move_notify(struct ttm_buffer_object *bo,
852 struct ttm_mem_reg *new_mem)
853{
854 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->bdev);
855 struct amdgpu_bo *abo;
856 struct ttm_mem_reg *old_mem = &bo->mem;
857
858 if (!amdgpu_ttm_bo_is_amdgpu_bo(bo))
859 return;
860
861 abo = container_of(bo, struct amdgpu_bo, tbo);
862 amdgpu_vm_bo_invalidate(adev, abo);
863
864 /* update statistics */
865 if (!new_mem)
866 return;
867
868 /* move_notify is called before move happens */
869 amdgpu_update_memory_usage(adev, &bo->mem, new_mem);
870
871 trace_amdgpu_ttm_bo_move(abo, new_mem->mem_type, old_mem->mem_type);
872}
873
874int amdgpu_bo_fault_reserve_notify(struct ttm_buffer_object *bo)
875{
876 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->bdev);
877 struct amdgpu_bo *abo;
878 unsigned long offset, size, lpfn;
879 int i, r;
880
881 if (!amdgpu_ttm_bo_is_amdgpu_bo(bo))
882 return 0;
883
884 abo = container_of(bo, struct amdgpu_bo, tbo);
885 if (bo->mem.mem_type != TTM_PL_VRAM)
886 return 0;
887
888 size = bo->mem.num_pages << PAGE_SHIFT;
889 offset = bo->mem.start << PAGE_SHIFT;
890 /* TODO: figure out how to map scattered VRAM to the CPU */
891 if ((offset + size) <= adev->mc.visible_vram_size &&
892 (abo->flags & AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS))
893 return 0;
894
895 /* Can't move a pinned BO to visible VRAM */
896 if (abo->pin_count > 0)
897 return -EINVAL;
898
899 /* hurrah the memory is not visible ! */
900 abo->flags |= AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS;
901 amdgpu_ttm_placement_from_domain(abo, AMDGPU_GEM_DOMAIN_VRAM);
902 lpfn = adev->mc.visible_vram_size >> PAGE_SHIFT;
903 for (i = 0; i < abo->placement.num_placement; i++) {
904 /* Force into visible VRAM */
905 if ((abo->placements[i].flags & TTM_PL_FLAG_VRAM) &&
906 (!abo->placements[i].lpfn ||
907 abo->placements[i].lpfn > lpfn))
908 abo->placements[i].lpfn = lpfn;
909 }
910 r = ttm_bo_validate(bo, &abo->placement, false, false);
911 if (unlikely(r == -ENOMEM)) {
912 amdgpu_ttm_placement_from_domain(abo, AMDGPU_GEM_DOMAIN_GTT);
913 return ttm_bo_validate(bo, &abo->placement, false, false);
914 } else if (unlikely(r != 0)) {
915 return r;
916 }
917
918 offset = bo->mem.start << PAGE_SHIFT;
919 /* this should never happen */
920 if ((offset + size) > adev->mc.visible_vram_size)
921 return -EINVAL;
922
923 return 0;
924}
925
926/**
927 * amdgpu_bo_fence - add fence to buffer object
928 *
929 * @bo: buffer object in question
930 * @fence: fence to add
931 * @shared: true if fence should be added shared
932 *
933 */
934void amdgpu_bo_fence(struct amdgpu_bo *bo, struct dma_fence *fence,
935 bool shared)
936{
937 struct reservation_object *resv = bo->tbo.resv;
938
939 if (shared)
940 reservation_object_add_shared_fence(resv, fence);
941 else
942 reservation_object_add_excl_fence(resv, fence);
943}
944
945/**
946 * amdgpu_bo_gpu_offset - return GPU offset of bo
947 * @bo: amdgpu object for which we query the offset
948 *
949 * Returns current GPU offset of the object.
950 *
951 * Note: object should either be pinned or reserved when calling this
952 * function, it might be useful to add check for this for debugging.
953 */
954u64 amdgpu_bo_gpu_offset(struct amdgpu_bo *bo)
955{
956 WARN_ON_ONCE(bo->tbo.mem.mem_type == TTM_PL_SYSTEM);
957 WARN_ON_ONCE(bo->tbo.mem.mem_type == TTM_PL_TT &&
958 !amdgpu_ttm_is_bound(bo->tbo.ttm));
959 WARN_ON_ONCE(!ww_mutex_is_locked(&bo->tbo.resv->lock) &&
960 !bo->pin_count);
961 WARN_ON_ONCE(bo->tbo.mem.start == AMDGPU_BO_INVALID_OFFSET);
962 WARN_ON_ONCE(bo->tbo.mem.mem_type == TTM_PL_VRAM &&
963 !(bo->flags & AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS));
964
965 return bo->tbo.offset;
966}