• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 #include "amdgpu_amdkfd.h"
40 
41 /**
42  * DOC: amdgpu_object
43  *
44  * This defines the interfaces to operate on an &amdgpu_bo buffer object which
45  * represents memory used by driver (VRAM, system memory, etc.). The driver
46  * provides DRM/GEM APIs to userspace. DRM/GEM APIs then use these interfaces
47  * to create/destroy/set buffer object which are then managed by the kernel TTM
48  * memory manager.
49  * The interfaces are also used internally by kernel clients, including gfx,
50  * uvd, etc. for kernel managed allocations used by the GPU.
51  *
52  */
53 
amdgpu_bo_need_backup(struct amdgpu_device * adev)54 static bool amdgpu_bo_need_backup(struct amdgpu_device *adev)
55 {
56 	if (adev->flags & AMD_IS_APU)
57 		return false;
58 
59 	if (amdgpu_gpu_recovery == 0 ||
60 	    (amdgpu_gpu_recovery == -1  && !amdgpu_sriov_vf(adev)))
61 		return false;
62 
63 	return true;
64 }
65 
66 /**
67  * amdgpu_bo_subtract_pin_size - Remove BO from pin_size accounting
68  *
69  * @bo: &amdgpu_bo buffer object
70  *
71  * This function is called when a BO stops being pinned, and updates the
72  * &amdgpu_device pin_size values accordingly.
73  */
amdgpu_bo_subtract_pin_size(struct amdgpu_bo * bo)74 static void amdgpu_bo_subtract_pin_size(struct amdgpu_bo *bo)
75 {
76 	struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
77 
78 	if (bo->tbo.mem.mem_type == TTM_PL_VRAM) {
79 		atomic64_sub(amdgpu_bo_size(bo), &adev->vram_pin_size);
80 		atomic64_sub(amdgpu_vram_mgr_bo_visible_size(bo),
81 			     &adev->visible_pin_size);
82 	} else if (bo->tbo.mem.mem_type == TTM_PL_TT) {
83 		atomic64_sub(amdgpu_bo_size(bo), &adev->gart_pin_size);
84 	}
85 }
86 
amdgpu_bo_destroy(struct ttm_buffer_object * tbo)87 static void amdgpu_bo_destroy(struct ttm_buffer_object *tbo)
88 {
89 	struct amdgpu_device *adev = amdgpu_ttm_adev(tbo->bdev);
90 	struct amdgpu_bo *bo = ttm_to_amdgpu_bo(tbo);
91 
92 	if (bo->pin_count > 0)
93 		amdgpu_bo_subtract_pin_size(bo);
94 
95 	if (bo->kfd_bo)
96 		amdgpu_amdkfd_unreserve_system_memory_limit(bo);
97 
98 	amdgpu_bo_kunmap(bo);
99 
100 	if (bo->gem_base.import_attach)
101 		drm_prime_gem_destroy(&bo->gem_base, bo->tbo.sg);
102 	drm_gem_object_release(&bo->gem_base);
103 	amdgpu_bo_unref(&bo->parent);
104 	if (!list_empty(&bo->shadow_list)) {
105 		mutex_lock(&adev->shadow_list_lock);
106 		list_del_init(&bo->shadow_list);
107 		mutex_unlock(&adev->shadow_list_lock);
108 	}
109 	kfree(bo->metadata);
110 	kfree(bo);
111 }
112 
113 /**
114  * amdgpu_bo_is_amdgpu_bo - check if the buffer object is an &amdgpu_bo
115  * @bo: buffer object to be checked
116  *
117  * Uses destroy function associated with the object to determine if this is
118  * an &amdgpu_bo.
119  *
120  * Returns:
121  * true if the object belongs to &amdgpu_bo, false if not.
122  */
amdgpu_bo_is_amdgpu_bo(struct ttm_buffer_object * bo)123 bool amdgpu_bo_is_amdgpu_bo(struct ttm_buffer_object *bo)
124 {
125 	if (bo->destroy == &amdgpu_bo_destroy)
126 		return true;
127 	return false;
128 }
129 
130 /**
131  * amdgpu_bo_placement_from_domain - set buffer's placement
132  * @abo: &amdgpu_bo buffer object whose placement is to be set
133  * @domain: requested domain
134  *
135  * Sets buffer's placement according to requested domain and the buffer's
136  * flags.
137  */
amdgpu_bo_placement_from_domain(struct amdgpu_bo * abo,u32 domain)138 void amdgpu_bo_placement_from_domain(struct amdgpu_bo *abo, u32 domain)
139 {
140 	struct amdgpu_device *adev = amdgpu_ttm_adev(abo->tbo.bdev);
141 	struct ttm_placement *placement = &abo->placement;
142 	struct ttm_place *places = abo->placements;
143 	u64 flags = abo->flags;
144 	u32 c = 0;
145 
146 	if (domain & AMDGPU_GEM_DOMAIN_VRAM) {
147 		unsigned visible_pfn = adev->gmc.visible_vram_size >> PAGE_SHIFT;
148 
149 		places[c].fpfn = 0;
150 		places[c].lpfn = 0;
151 		places[c].flags = TTM_PL_FLAG_WC | TTM_PL_FLAG_UNCACHED |
152 			TTM_PL_FLAG_VRAM;
153 
154 		if (flags & AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED)
155 			places[c].lpfn = visible_pfn;
156 		else
157 			places[c].flags |= TTM_PL_FLAG_TOPDOWN;
158 
159 		if (flags & AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS)
160 			places[c].flags |= TTM_PL_FLAG_CONTIGUOUS;
161 		c++;
162 	}
163 
164 	if (domain & AMDGPU_GEM_DOMAIN_GTT) {
165 		places[c].fpfn = 0;
166 		if (flags & AMDGPU_GEM_CREATE_SHADOW)
167 			places[c].lpfn = adev->gmc.gart_size >> PAGE_SHIFT;
168 		else
169 			places[c].lpfn = 0;
170 		places[c].flags = TTM_PL_FLAG_TT;
171 		if (flags & AMDGPU_GEM_CREATE_CPU_GTT_USWC)
172 			places[c].flags |= TTM_PL_FLAG_WC |
173 				TTM_PL_FLAG_UNCACHED;
174 		else
175 			places[c].flags |= TTM_PL_FLAG_CACHED;
176 		c++;
177 	}
178 
179 	if (domain & AMDGPU_GEM_DOMAIN_CPU) {
180 		places[c].fpfn = 0;
181 		places[c].lpfn = 0;
182 		places[c].flags = TTM_PL_FLAG_SYSTEM;
183 		if (flags & AMDGPU_GEM_CREATE_CPU_GTT_USWC)
184 			places[c].flags |= TTM_PL_FLAG_WC |
185 				TTM_PL_FLAG_UNCACHED;
186 		else
187 			places[c].flags |= TTM_PL_FLAG_CACHED;
188 		c++;
189 	}
190 
191 	if (domain & AMDGPU_GEM_DOMAIN_GDS) {
192 		places[c].fpfn = 0;
193 		places[c].lpfn = 0;
194 		places[c].flags = TTM_PL_FLAG_UNCACHED | AMDGPU_PL_FLAG_GDS;
195 		c++;
196 	}
197 
198 	if (domain & AMDGPU_GEM_DOMAIN_GWS) {
199 		places[c].fpfn = 0;
200 		places[c].lpfn = 0;
201 		places[c].flags = TTM_PL_FLAG_UNCACHED | AMDGPU_PL_FLAG_GWS;
202 		c++;
203 	}
204 
205 	if (domain & AMDGPU_GEM_DOMAIN_OA) {
206 		places[c].fpfn = 0;
207 		places[c].lpfn = 0;
208 		places[c].flags = TTM_PL_FLAG_UNCACHED | AMDGPU_PL_FLAG_OA;
209 		c++;
210 	}
211 
212 	if (!c) {
213 		places[c].fpfn = 0;
214 		places[c].lpfn = 0;
215 		places[c].flags = TTM_PL_MASK_CACHING | TTM_PL_FLAG_SYSTEM;
216 		c++;
217 	}
218 
219 	BUG_ON(c >= AMDGPU_BO_MAX_PLACEMENTS);
220 
221 	placement->num_placement = c;
222 	placement->placement = places;
223 
224 	placement->num_busy_placement = c;
225 	placement->busy_placement = places;
226 }
227 
228 /**
229  * amdgpu_bo_create_reserved - create reserved BO for kernel use
230  *
231  * @adev: amdgpu device object
232  * @size: size for the new BO
233  * @align: alignment for the new BO
234  * @domain: where to place it
235  * @bo_ptr: used to initialize BOs in structures
236  * @gpu_addr: GPU addr of the pinned BO
237  * @cpu_addr: optional CPU address mapping
238  *
239  * Allocates and pins a BO for kernel internal use, and returns it still
240  * reserved.
241  *
242  * Note: For bo_ptr new BO is only created if bo_ptr points to NULL.
243  *
244  * Returns:
245  * 0 on success, negative error code otherwise.
246  */
amdgpu_bo_create_reserved(struct amdgpu_device * adev,unsigned long size,int align,u32 domain,struct amdgpu_bo ** bo_ptr,u64 * gpu_addr,void ** cpu_addr)247 int amdgpu_bo_create_reserved(struct amdgpu_device *adev,
248 			      unsigned long size, int align,
249 			      u32 domain, struct amdgpu_bo **bo_ptr,
250 			      u64 *gpu_addr, void **cpu_addr)
251 {
252 	struct amdgpu_bo_param bp;
253 	bool free = false;
254 	int r;
255 
256 	memset(&bp, 0, sizeof(bp));
257 	bp.size = size;
258 	bp.byte_align = align;
259 	bp.domain = domain;
260 	bp.flags = AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED |
261 		AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS;
262 	bp.type = ttm_bo_type_kernel;
263 	bp.resv = NULL;
264 
265 	if (!*bo_ptr) {
266 		r = amdgpu_bo_create(adev, &bp, bo_ptr);
267 		if (r) {
268 			dev_err(adev->dev, "(%d) failed to allocate kernel bo\n",
269 				r);
270 			return r;
271 		}
272 		free = true;
273 	}
274 
275 	r = amdgpu_bo_reserve(*bo_ptr, false);
276 	if (r) {
277 		dev_err(adev->dev, "(%d) failed to reserve kernel bo\n", r);
278 		goto error_free;
279 	}
280 
281 	r = amdgpu_bo_pin(*bo_ptr, domain);
282 	if (r) {
283 		dev_err(adev->dev, "(%d) kernel bo pin failed\n", r);
284 		goto error_unreserve;
285 	}
286 
287 	r = amdgpu_ttm_alloc_gart(&(*bo_ptr)->tbo);
288 	if (r) {
289 		dev_err(adev->dev, "%p bind failed\n", *bo_ptr);
290 		goto error_unpin;
291 	}
292 
293 	if (gpu_addr)
294 		*gpu_addr = amdgpu_bo_gpu_offset(*bo_ptr);
295 
296 	if (cpu_addr) {
297 		r = amdgpu_bo_kmap(*bo_ptr, cpu_addr);
298 		if (r) {
299 			dev_err(adev->dev, "(%d) kernel bo map failed\n", r);
300 			goto error_unpin;
301 		}
302 	}
303 
304 	return 0;
305 
306 error_unpin:
307 	amdgpu_bo_unpin(*bo_ptr);
308 error_unreserve:
309 	amdgpu_bo_unreserve(*bo_ptr);
310 
311 error_free:
312 	if (free)
313 		amdgpu_bo_unref(bo_ptr);
314 
315 	return r;
316 }
317 
318 /**
319  * amdgpu_bo_create_kernel - create BO for kernel use
320  *
321  * @adev: amdgpu device object
322  * @size: size for the new BO
323  * @align: alignment for the new BO
324  * @domain: where to place it
325  * @bo_ptr:  used to initialize BOs in structures
326  * @gpu_addr: GPU addr of the pinned BO
327  * @cpu_addr: optional CPU address mapping
328  *
329  * Allocates and pins a BO for kernel internal use.
330  *
331  * Note: For bo_ptr new BO is only created if bo_ptr points to NULL.
332  *
333  * Returns:
334  * 0 on success, negative error code otherwise.
335  */
amdgpu_bo_create_kernel(struct amdgpu_device * adev,unsigned long size,int align,u32 domain,struct amdgpu_bo ** bo_ptr,u64 * gpu_addr,void ** cpu_addr)336 int amdgpu_bo_create_kernel(struct amdgpu_device *adev,
337 			    unsigned long size, int align,
338 			    u32 domain, struct amdgpu_bo **bo_ptr,
339 			    u64 *gpu_addr, void **cpu_addr)
340 {
341 	int r;
342 
343 	r = amdgpu_bo_create_reserved(adev, size, align, domain, bo_ptr,
344 				      gpu_addr, cpu_addr);
345 
346 	if (r)
347 		return r;
348 
349 	amdgpu_bo_unreserve(*bo_ptr);
350 
351 	return 0;
352 }
353 
354 /**
355  * amdgpu_bo_free_kernel - free BO for kernel use
356  *
357  * @bo: amdgpu BO to free
358  * @gpu_addr: pointer to where the BO's GPU memory space address was stored
359  * @cpu_addr: pointer to where the BO's CPU memory space address was stored
360  *
361  * unmaps and unpin a BO for kernel internal use.
362  */
amdgpu_bo_free_kernel(struct amdgpu_bo ** bo,u64 * gpu_addr,void ** cpu_addr)363 void amdgpu_bo_free_kernel(struct amdgpu_bo **bo, u64 *gpu_addr,
364 			   void **cpu_addr)
365 {
366 	if (*bo == NULL)
367 		return;
368 
369 	if (likely(amdgpu_bo_reserve(*bo, true) == 0)) {
370 		if (cpu_addr)
371 			amdgpu_bo_kunmap(*bo);
372 
373 		amdgpu_bo_unpin(*bo);
374 		amdgpu_bo_unreserve(*bo);
375 	}
376 	amdgpu_bo_unref(bo);
377 
378 	if (gpu_addr)
379 		*gpu_addr = 0;
380 
381 	if (cpu_addr)
382 		*cpu_addr = NULL;
383 }
384 
385 /* Validate bo size is bit bigger then the request domain */
amdgpu_bo_validate_size(struct amdgpu_device * adev,unsigned long size,u32 domain)386 static bool amdgpu_bo_validate_size(struct amdgpu_device *adev,
387 					  unsigned long size, u32 domain)
388 {
389 	struct ttm_mem_type_manager *man = NULL;
390 
391 	/*
392 	 * If GTT is part of requested domains the check must succeed to
393 	 * allow fall back to GTT
394 	 */
395 	if (domain & AMDGPU_GEM_DOMAIN_GTT) {
396 		man = &adev->mman.bdev.man[TTM_PL_TT];
397 
398 		if (size < (man->size << PAGE_SHIFT))
399 			return true;
400 		else
401 			goto fail;
402 	}
403 
404 	if (domain & AMDGPU_GEM_DOMAIN_VRAM) {
405 		man = &adev->mman.bdev.man[TTM_PL_VRAM];
406 
407 		if (size < (man->size << PAGE_SHIFT))
408 			return true;
409 		else
410 			goto fail;
411 	}
412 
413 
414 	/* TODO add more domains checks, such as AMDGPU_GEM_DOMAIN_CPU */
415 	return true;
416 
417 fail:
418 	DRM_DEBUG("BO size %lu > total memory in domain: %llu\n", size,
419 		  man->size << PAGE_SHIFT);
420 	return false;
421 }
422 
amdgpu_bo_do_create(struct amdgpu_device * adev,struct amdgpu_bo_param * bp,struct amdgpu_bo ** bo_ptr)423 static int amdgpu_bo_do_create(struct amdgpu_device *adev,
424 			       struct amdgpu_bo_param *bp,
425 			       struct amdgpu_bo **bo_ptr)
426 {
427 	struct ttm_operation_ctx ctx = {
428 		.interruptible = (bp->type != ttm_bo_type_kernel),
429 		.no_wait_gpu = false,
430 		.resv = bp->resv,
431 		.flags = bp->type != ttm_bo_type_kernel ?
432 			TTM_OPT_FLAG_ALLOW_RES_EVICT : 0
433 	};
434 	struct amdgpu_bo *bo;
435 	unsigned long page_align, size = bp->size;
436 	size_t acc_size;
437 	int r;
438 
439 	page_align = roundup(bp->byte_align, PAGE_SIZE) >> PAGE_SHIFT;
440 	size = ALIGN(size, PAGE_SIZE);
441 
442 	if (!amdgpu_bo_validate_size(adev, size, bp->domain))
443 		return -ENOMEM;
444 
445 	*bo_ptr = NULL;
446 
447 	acc_size = ttm_bo_dma_acc_size(&adev->mman.bdev, size,
448 				       sizeof(struct amdgpu_bo));
449 
450 	bo = kzalloc(sizeof(struct amdgpu_bo), GFP_KERNEL);
451 	if (bo == NULL)
452 		return -ENOMEM;
453 	drm_gem_private_object_init(adev->ddev, &bo->gem_base, size);
454 	INIT_LIST_HEAD(&bo->shadow_list);
455 	INIT_LIST_HEAD(&bo->va);
456 	bo->preferred_domains = bp->preferred_domain ? bp->preferred_domain :
457 		bp->domain;
458 	bo->allowed_domains = bo->preferred_domains;
459 	if (bp->type != ttm_bo_type_kernel &&
460 	    bo->allowed_domains == AMDGPU_GEM_DOMAIN_VRAM)
461 		bo->allowed_domains |= AMDGPU_GEM_DOMAIN_GTT;
462 
463 	bo->flags = bp->flags;
464 
465 #ifdef CONFIG_X86_32
466 	/* XXX: Write-combined CPU mappings of GTT seem broken on 32-bit
467 	 * See https://bugs.freedesktop.org/show_bug.cgi?id=84627
468 	 */
469 	bo->flags &= ~AMDGPU_GEM_CREATE_CPU_GTT_USWC;
470 #elif defined(CONFIG_X86) && !defined(CONFIG_X86_PAT)
471 	/* Don't try to enable write-combining when it can't work, or things
472 	 * may be slow
473 	 * See https://bugs.freedesktop.org/show_bug.cgi?id=88758
474 	 */
475 
476 #ifndef CONFIG_COMPILE_TEST
477 #warning Please enable CONFIG_MTRR and CONFIG_X86_PAT for better performance \
478 	 thanks to write-combining
479 #endif
480 
481 	if (bo->flags & AMDGPU_GEM_CREATE_CPU_GTT_USWC)
482 		DRM_INFO_ONCE("Please enable CONFIG_MTRR and CONFIG_X86_PAT for "
483 			      "better performance thanks to write-combining\n");
484 	bo->flags &= ~AMDGPU_GEM_CREATE_CPU_GTT_USWC;
485 #else
486 	/* For architectures that don't support WC memory,
487 	 * mask out the WC flag from the BO
488 	 */
489 	if (!drm_arch_can_wc_memory())
490 		bo->flags &= ~AMDGPU_GEM_CREATE_CPU_GTT_USWC;
491 #endif
492 
493 	bo->tbo.bdev = &adev->mman.bdev;
494 	amdgpu_bo_placement_from_domain(bo, bp->domain);
495 	if (bp->type == ttm_bo_type_kernel)
496 		bo->tbo.priority = 1;
497 
498 	r = ttm_bo_init_reserved(&adev->mman.bdev, &bo->tbo, size, bp->type,
499 				 &bo->placement, page_align, &ctx, acc_size,
500 				 NULL, bp->resv, &amdgpu_bo_destroy);
501 	if (unlikely(r != 0))
502 		return r;
503 
504 	if (!amdgpu_gmc_vram_full_visible(&adev->gmc) &&
505 	    bo->tbo.mem.mem_type == TTM_PL_VRAM &&
506 	    bo->tbo.mem.start < adev->gmc.visible_vram_size >> PAGE_SHIFT)
507 		amdgpu_cs_report_moved_bytes(adev, ctx.bytes_moved,
508 					     ctx.bytes_moved);
509 	else
510 		amdgpu_cs_report_moved_bytes(adev, ctx.bytes_moved, 0);
511 
512 	if (bp->flags & AMDGPU_GEM_CREATE_VRAM_CLEARED &&
513 	    bo->tbo.mem.placement & TTM_PL_FLAG_VRAM) {
514 		struct dma_fence *fence;
515 
516 		r = amdgpu_fill_buffer(bo, 0, bo->tbo.resv, &fence);
517 		if (unlikely(r))
518 			goto fail_unreserve;
519 
520 		amdgpu_bo_fence(bo, fence, false);
521 		dma_fence_put(bo->tbo.moving);
522 		bo->tbo.moving = dma_fence_get(fence);
523 		dma_fence_put(fence);
524 	}
525 	if (!bp->resv)
526 		amdgpu_bo_unreserve(bo);
527 	*bo_ptr = bo;
528 
529 	trace_amdgpu_bo_create(bo);
530 
531 	/* Treat CPU_ACCESS_REQUIRED only as a hint if given by UMD */
532 	if (bp->type == ttm_bo_type_device)
533 		bo->flags &= ~AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED;
534 
535 	return 0;
536 
537 fail_unreserve:
538 	if (!bp->resv)
539 		ww_mutex_unlock(&bo->tbo.resv->lock);
540 	amdgpu_bo_unref(&bo);
541 	return r;
542 }
543 
amdgpu_bo_create_shadow(struct amdgpu_device * adev,unsigned long size,int byte_align,struct amdgpu_bo * bo)544 static int amdgpu_bo_create_shadow(struct amdgpu_device *adev,
545 				   unsigned long size, int byte_align,
546 				   struct amdgpu_bo *bo)
547 {
548 	struct amdgpu_bo_param bp;
549 	int r;
550 
551 	if (bo->shadow)
552 		return 0;
553 
554 	memset(&bp, 0, sizeof(bp));
555 	bp.size = size;
556 	bp.byte_align = byte_align;
557 	bp.domain = AMDGPU_GEM_DOMAIN_GTT;
558 	bp.flags = AMDGPU_GEM_CREATE_CPU_GTT_USWC |
559 		AMDGPU_GEM_CREATE_SHADOW;
560 	bp.type = ttm_bo_type_kernel;
561 	bp.resv = bo->tbo.resv;
562 
563 	r = amdgpu_bo_do_create(adev, &bp, &bo->shadow);
564 	if (!r) {
565 		bo->shadow->parent = amdgpu_bo_ref(bo);
566 		mutex_lock(&adev->shadow_list_lock);
567 		list_add_tail(&bo->shadow_list, &adev->shadow_list);
568 		mutex_unlock(&adev->shadow_list_lock);
569 	}
570 
571 	return r;
572 }
573 
574 /**
575  * amdgpu_bo_create - create an &amdgpu_bo buffer object
576  * @adev: amdgpu device object
577  * @bp: parameters to be used for the buffer object
578  * @bo_ptr: pointer to the buffer object pointer
579  *
580  * Creates an &amdgpu_bo buffer object; and if requested, also creates a
581  * shadow object.
582  * Shadow object is used to backup the original buffer object, and is always
583  * in GTT.
584  *
585  * Returns:
586  * 0 for success or a negative error code on failure.
587  */
amdgpu_bo_create(struct amdgpu_device * adev,struct amdgpu_bo_param * bp,struct amdgpu_bo ** bo_ptr)588 int amdgpu_bo_create(struct amdgpu_device *adev,
589 		     struct amdgpu_bo_param *bp,
590 		     struct amdgpu_bo **bo_ptr)
591 {
592 	u64 flags = bp->flags;
593 	int r;
594 
595 	bp->flags = bp->flags & ~AMDGPU_GEM_CREATE_SHADOW;
596 	r = amdgpu_bo_do_create(adev, bp, bo_ptr);
597 	if (r)
598 		return r;
599 
600 	if ((flags & AMDGPU_GEM_CREATE_SHADOW) && amdgpu_bo_need_backup(adev)) {
601 		if (!bp->resv)
602 			WARN_ON(reservation_object_lock((*bo_ptr)->tbo.resv,
603 							NULL));
604 
605 		r = amdgpu_bo_create_shadow(adev, bp->size, bp->byte_align, (*bo_ptr));
606 
607 		if (!bp->resv)
608 			reservation_object_unlock((*bo_ptr)->tbo.resv);
609 
610 		if (r)
611 			amdgpu_bo_unref(bo_ptr);
612 	}
613 
614 	return r;
615 }
616 
617 /**
618  * amdgpu_bo_backup_to_shadow - Backs up an &amdgpu_bo buffer object
619  * @adev: amdgpu device object
620  * @ring: amdgpu_ring for the engine handling the buffer operations
621  * @bo: &amdgpu_bo buffer to be backed up
622  * @resv: reservation object with embedded fence
623  * @fence: dma_fence associated with the operation
624  * @direct: whether to submit the job directly
625  *
626  * Copies an &amdgpu_bo buffer object to its shadow object.
627  * Not used for now.
628  *
629  * Returns:
630  * 0 for success or a negative error code on failure.
631  */
amdgpu_bo_backup_to_shadow(struct amdgpu_device * adev,struct amdgpu_ring * ring,struct amdgpu_bo * bo,struct reservation_object * resv,struct dma_fence ** fence,bool direct)632 int amdgpu_bo_backup_to_shadow(struct amdgpu_device *adev,
633 			       struct amdgpu_ring *ring,
634 			       struct amdgpu_bo *bo,
635 			       struct reservation_object *resv,
636 			       struct dma_fence **fence,
637 			       bool direct)
638 
639 {
640 	struct amdgpu_bo *shadow = bo->shadow;
641 	uint64_t bo_addr, shadow_addr;
642 	int r;
643 
644 	if (!shadow)
645 		return -EINVAL;
646 
647 	bo_addr = amdgpu_bo_gpu_offset(bo);
648 	shadow_addr = amdgpu_bo_gpu_offset(bo->shadow);
649 
650 	r = reservation_object_reserve_shared(bo->tbo.resv);
651 	if (r)
652 		goto err;
653 
654 	r = amdgpu_copy_buffer(ring, bo_addr, shadow_addr,
655 			       amdgpu_bo_size(bo), resv, fence,
656 			       direct, false);
657 	if (!r)
658 		amdgpu_bo_fence(bo, *fence, true);
659 
660 err:
661 	return r;
662 }
663 
664 /**
665  * amdgpu_bo_validate - validate an &amdgpu_bo buffer object
666  * @bo: pointer to the buffer object
667  *
668  * Sets placement according to domain; and changes placement and caching
669  * policy of the buffer object according to the placement.
670  * This is used for validating shadow bos.  It calls ttm_bo_validate() to
671  * make sure the buffer is resident where it needs to be.
672  *
673  * Returns:
674  * 0 for success or a negative error code on failure.
675  */
amdgpu_bo_validate(struct amdgpu_bo * bo)676 int amdgpu_bo_validate(struct amdgpu_bo *bo)
677 {
678 	struct ttm_operation_ctx ctx = { false, false };
679 	uint32_t domain;
680 	int r;
681 
682 	if (bo->pin_count)
683 		return 0;
684 
685 	domain = bo->preferred_domains;
686 
687 retry:
688 	amdgpu_bo_placement_from_domain(bo, domain);
689 	r = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
690 	if (unlikely(r == -ENOMEM) && domain != bo->allowed_domains) {
691 		domain = bo->allowed_domains;
692 		goto retry;
693 	}
694 
695 	return r;
696 }
697 
698 /**
699  * amdgpu_bo_restore_from_shadow - restore an &amdgpu_bo buffer object
700  * @adev: amdgpu device object
701  * @ring: amdgpu_ring for the engine handling the buffer operations
702  * @bo: &amdgpu_bo buffer to be restored
703  * @resv: reservation object with embedded fence
704  * @fence: dma_fence associated with the operation
705  * @direct: whether to submit the job directly
706  *
707  * Copies a buffer object's shadow content back to the object.
708  * This is used for recovering a buffer from its shadow in case of a gpu
709  * reset where vram context may be lost.
710  *
711  * Returns:
712  * 0 for success or a negative error code on failure.
713  */
amdgpu_bo_restore_from_shadow(struct amdgpu_device * adev,struct amdgpu_ring * ring,struct amdgpu_bo * bo,struct reservation_object * resv,struct dma_fence ** fence,bool direct)714 int amdgpu_bo_restore_from_shadow(struct amdgpu_device *adev,
715 				  struct amdgpu_ring *ring,
716 				  struct amdgpu_bo *bo,
717 				  struct reservation_object *resv,
718 				  struct dma_fence **fence,
719 				  bool direct)
720 
721 {
722 	struct amdgpu_bo *shadow = bo->shadow;
723 	uint64_t bo_addr, shadow_addr;
724 	int r;
725 
726 	if (!shadow)
727 		return -EINVAL;
728 
729 	bo_addr = amdgpu_bo_gpu_offset(bo);
730 	shadow_addr = amdgpu_bo_gpu_offset(bo->shadow);
731 
732 	r = reservation_object_reserve_shared(bo->tbo.resv);
733 	if (r)
734 		goto err;
735 
736 	r = amdgpu_copy_buffer(ring, shadow_addr, bo_addr,
737 			       amdgpu_bo_size(bo), resv, fence,
738 			       direct, false);
739 	if (!r)
740 		amdgpu_bo_fence(bo, *fence, true);
741 
742 err:
743 	return r;
744 }
745 
746 /**
747  * amdgpu_bo_kmap - map an &amdgpu_bo buffer object
748  * @bo: &amdgpu_bo buffer object to be mapped
749  * @ptr: kernel virtual address to be returned
750  *
751  * Calls ttm_bo_kmap() to set up the kernel virtual mapping; calls
752  * amdgpu_bo_kptr() to get the kernel virtual address.
753  *
754  * Returns:
755  * 0 for success or a negative error code on failure.
756  */
amdgpu_bo_kmap(struct amdgpu_bo * bo,void ** ptr)757 int amdgpu_bo_kmap(struct amdgpu_bo *bo, void **ptr)
758 {
759 	void *kptr;
760 	long r;
761 
762 	if (bo->flags & AMDGPU_GEM_CREATE_NO_CPU_ACCESS)
763 		return -EPERM;
764 
765 	kptr = amdgpu_bo_kptr(bo);
766 	if (kptr) {
767 		if (ptr)
768 			*ptr = kptr;
769 		return 0;
770 	}
771 
772 	r = reservation_object_wait_timeout_rcu(bo->tbo.resv, false, false,
773 						MAX_SCHEDULE_TIMEOUT);
774 	if (r < 0)
775 		return r;
776 
777 	r = ttm_bo_kmap(&bo->tbo, 0, bo->tbo.num_pages, &bo->kmap);
778 	if (r)
779 		return r;
780 
781 	if (ptr)
782 		*ptr = amdgpu_bo_kptr(bo);
783 
784 	return 0;
785 }
786 
787 /**
788  * amdgpu_bo_kptr - returns a kernel virtual address of the buffer object
789  * @bo: &amdgpu_bo buffer object
790  *
791  * Calls ttm_kmap_obj_virtual() to get the kernel virtual address
792  *
793  * Returns:
794  * the virtual address of a buffer object area.
795  */
amdgpu_bo_kptr(struct amdgpu_bo * bo)796 void *amdgpu_bo_kptr(struct amdgpu_bo *bo)
797 {
798 	bool is_iomem;
799 
800 	return ttm_kmap_obj_virtual(&bo->kmap, &is_iomem);
801 }
802 
803 /**
804  * amdgpu_bo_kunmap - unmap an &amdgpu_bo buffer object
805  * @bo: &amdgpu_bo buffer object to be unmapped
806  *
807  * Unmaps a kernel map set up by amdgpu_bo_kmap().
808  */
amdgpu_bo_kunmap(struct amdgpu_bo * bo)809 void amdgpu_bo_kunmap(struct amdgpu_bo *bo)
810 {
811 	if (bo->kmap.bo)
812 		ttm_bo_kunmap(&bo->kmap);
813 }
814 
815 /**
816  * amdgpu_bo_ref - reference an &amdgpu_bo buffer object
817  * @bo: &amdgpu_bo buffer object
818  *
819  * References the contained &ttm_buffer_object.
820  *
821  * Returns:
822  * a refcounted pointer to the &amdgpu_bo buffer object.
823  */
amdgpu_bo_ref(struct amdgpu_bo * bo)824 struct amdgpu_bo *amdgpu_bo_ref(struct amdgpu_bo *bo)
825 {
826 	if (bo == NULL)
827 		return NULL;
828 
829 	ttm_bo_get(&bo->tbo);
830 	return bo;
831 }
832 
833 /**
834  * amdgpu_bo_unref - unreference an &amdgpu_bo buffer object
835  * @bo: &amdgpu_bo buffer object
836  *
837  * Unreferences the contained &ttm_buffer_object and clear the pointer
838  */
amdgpu_bo_unref(struct amdgpu_bo ** bo)839 void amdgpu_bo_unref(struct amdgpu_bo **bo)
840 {
841 	struct ttm_buffer_object *tbo;
842 
843 	if ((*bo) == NULL)
844 		return;
845 
846 	tbo = &((*bo)->tbo);
847 	ttm_bo_put(tbo);
848 	*bo = NULL;
849 }
850 
851 /**
852  * amdgpu_bo_pin_restricted - pin an &amdgpu_bo buffer object
853  * @bo: &amdgpu_bo buffer object to be pinned
854  * @domain: domain to be pinned to
855  * @min_offset: the start of requested address range
856  * @max_offset: the end of requested address range
857  *
858  * Pins the buffer object according to requested domain and address range. If
859  * the memory is unbound gart memory, binds the pages into gart table. Adjusts
860  * pin_count and pin_size accordingly.
861  *
862  * Pinning means to lock pages in memory along with keeping them at a fixed
863  * offset. It is required when a buffer can not be moved, for example, when
864  * a display buffer is being scanned out.
865  *
866  * Compared with amdgpu_bo_pin(), this function gives more flexibility on
867  * where to pin a buffer if there are specific restrictions on where a buffer
868  * must be located.
869  *
870  * Returns:
871  * 0 for success or a negative error code on failure.
872  */
amdgpu_bo_pin_restricted(struct amdgpu_bo * bo,u32 domain,u64 min_offset,u64 max_offset)873 int amdgpu_bo_pin_restricted(struct amdgpu_bo *bo, u32 domain,
874 			     u64 min_offset, u64 max_offset)
875 {
876 	struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
877 	struct ttm_operation_ctx ctx = { false, false };
878 	int r, i;
879 
880 	if (amdgpu_ttm_tt_get_usermm(bo->tbo.ttm))
881 		return -EPERM;
882 
883 	if (WARN_ON_ONCE(min_offset > max_offset))
884 		return -EINVAL;
885 
886 	/* A shared bo cannot be migrated to VRAM */
887 	if (bo->prime_shared_count) {
888 		if (domain & AMDGPU_GEM_DOMAIN_GTT)
889 			domain = AMDGPU_GEM_DOMAIN_GTT;
890 		else
891 			return -EINVAL;
892 	}
893 
894 	/* This assumes only APU display buffers are pinned with (VRAM|GTT).
895 	 * See function amdgpu_display_supported_domains()
896 	 */
897 	domain = amdgpu_bo_get_preferred_pin_domain(adev, domain);
898 
899 	if (bo->pin_count) {
900 		uint32_t mem_type = bo->tbo.mem.mem_type;
901 
902 		if (!(domain & amdgpu_mem_type_to_domain(mem_type)))
903 			return -EINVAL;
904 
905 		bo->pin_count++;
906 
907 		if (max_offset != 0) {
908 			u64 domain_start = bo->tbo.bdev->man[mem_type].gpu_offset;
909 			WARN_ON_ONCE(max_offset <
910 				     (amdgpu_bo_gpu_offset(bo) - domain_start));
911 		}
912 
913 		return 0;
914 	}
915 
916 	bo->flags |= AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS;
917 	/* force to pin into visible video ram */
918 	if (!(bo->flags & AMDGPU_GEM_CREATE_NO_CPU_ACCESS))
919 		bo->flags |= AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED;
920 	amdgpu_bo_placement_from_domain(bo, domain);
921 	for (i = 0; i < bo->placement.num_placement; i++) {
922 		unsigned fpfn, lpfn;
923 
924 		fpfn = min_offset >> PAGE_SHIFT;
925 		lpfn = max_offset >> PAGE_SHIFT;
926 
927 		if (fpfn > bo->placements[i].fpfn)
928 			bo->placements[i].fpfn = fpfn;
929 		if (!bo->placements[i].lpfn ||
930 		    (lpfn && lpfn < bo->placements[i].lpfn))
931 			bo->placements[i].lpfn = lpfn;
932 		bo->placements[i].flags |= TTM_PL_FLAG_NO_EVICT;
933 	}
934 
935 	r = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
936 	if (unlikely(r)) {
937 		dev_err(adev->dev, "%p pin failed\n", bo);
938 		goto error;
939 	}
940 
941 	bo->pin_count = 1;
942 
943 	domain = amdgpu_mem_type_to_domain(bo->tbo.mem.mem_type);
944 	if (domain == AMDGPU_GEM_DOMAIN_VRAM) {
945 		atomic64_add(amdgpu_bo_size(bo), &adev->vram_pin_size);
946 		atomic64_add(amdgpu_vram_mgr_bo_visible_size(bo),
947 			     &adev->visible_pin_size);
948 	} else if (domain == AMDGPU_GEM_DOMAIN_GTT) {
949 		atomic64_add(amdgpu_bo_size(bo), &adev->gart_pin_size);
950 	}
951 
952 error:
953 	return r;
954 }
955 
956 /**
957  * amdgpu_bo_pin - pin an &amdgpu_bo buffer object
958  * @bo: &amdgpu_bo buffer object to be pinned
959  * @domain: domain to be pinned to
960  *
961  * A simple wrapper to amdgpu_bo_pin_restricted().
962  * Provides a simpler API for buffers that do not have any strict restrictions
963  * on where a buffer must be located.
964  *
965  * Returns:
966  * 0 for success or a negative error code on failure.
967  */
amdgpu_bo_pin(struct amdgpu_bo * bo,u32 domain)968 int amdgpu_bo_pin(struct amdgpu_bo *bo, u32 domain)
969 {
970 	return amdgpu_bo_pin_restricted(bo, domain, 0, 0);
971 }
972 
973 /**
974  * amdgpu_bo_unpin - unpin an &amdgpu_bo buffer object
975  * @bo: &amdgpu_bo buffer object to be unpinned
976  *
977  * Decreases the pin_count, and clears the flags if pin_count reaches 0.
978  * Changes placement and pin size accordingly.
979  *
980  * Returns:
981  * 0 for success or a negative error code on failure.
982  */
amdgpu_bo_unpin(struct amdgpu_bo * bo)983 int amdgpu_bo_unpin(struct amdgpu_bo *bo)
984 {
985 	struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
986 	struct ttm_operation_ctx ctx = { false, false };
987 	int r, i;
988 
989 	if (!bo->pin_count) {
990 		dev_warn(adev->dev, "%p unpin not necessary\n", bo);
991 		return 0;
992 	}
993 	bo->pin_count--;
994 	if (bo->pin_count)
995 		return 0;
996 
997 	amdgpu_bo_subtract_pin_size(bo);
998 
999 	for (i = 0; i < bo->placement.num_placement; i++) {
1000 		bo->placements[i].lpfn = 0;
1001 		bo->placements[i].flags &= ~TTM_PL_FLAG_NO_EVICT;
1002 	}
1003 	r = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
1004 	if (unlikely(r))
1005 		dev_err(adev->dev, "%p validate failed for unpin\n", bo);
1006 
1007 	return r;
1008 }
1009 
1010 /**
1011  * amdgpu_bo_evict_vram - evict VRAM buffers
1012  * @adev: amdgpu device object
1013  *
1014  * Evicts all VRAM buffers on the lru list of the memory type.
1015  * Mainly used for evicting vram at suspend time.
1016  *
1017  * Returns:
1018  * 0 for success or a negative error code on failure.
1019  */
amdgpu_bo_evict_vram(struct amdgpu_device * adev)1020 int amdgpu_bo_evict_vram(struct amdgpu_device *adev)
1021 {
1022 	/* late 2.6.33 fix IGP hibernate - we need pm ops to do this correct */
1023 	if (0 && (adev->flags & AMD_IS_APU)) {
1024 		/* Useless to evict on IGP chips */
1025 		return 0;
1026 	}
1027 	return ttm_bo_evict_mm(&adev->mman.bdev, TTM_PL_VRAM);
1028 }
1029 
1030 static const char *amdgpu_vram_names[] = {
1031 	"UNKNOWN",
1032 	"GDDR1",
1033 	"DDR2",
1034 	"GDDR3",
1035 	"GDDR4",
1036 	"GDDR5",
1037 	"HBM",
1038 	"DDR3",
1039 	"DDR4",
1040 };
1041 
1042 /**
1043  * amdgpu_bo_init - initialize memory manager
1044  * @adev: amdgpu device object
1045  *
1046  * Calls amdgpu_ttm_init() to initialize amdgpu memory manager.
1047  *
1048  * Returns:
1049  * 0 for success or a negative error code on failure.
1050  */
amdgpu_bo_init(struct amdgpu_device * adev)1051 int amdgpu_bo_init(struct amdgpu_device *adev)
1052 {
1053 	/* reserve PAT memory space to WC for VRAM */
1054 	arch_io_reserve_memtype_wc(adev->gmc.aper_base,
1055 				   adev->gmc.aper_size);
1056 
1057 	/* Add an MTRR for the VRAM */
1058 	adev->gmc.vram_mtrr = arch_phys_wc_add(adev->gmc.aper_base,
1059 					      adev->gmc.aper_size);
1060 	DRM_INFO("Detected VRAM RAM=%lluM, BAR=%lluM\n",
1061 		 adev->gmc.mc_vram_size >> 20,
1062 		 (unsigned long long)adev->gmc.aper_size >> 20);
1063 	DRM_INFO("RAM width %dbits %s\n",
1064 		 adev->gmc.vram_width, amdgpu_vram_names[adev->gmc.vram_type]);
1065 	return amdgpu_ttm_init(adev);
1066 }
1067 
1068 /**
1069  * amdgpu_bo_late_init - late init
1070  * @adev: amdgpu device object
1071  *
1072  * Calls amdgpu_ttm_late_init() to free resources used earlier during
1073  * initialization.
1074  *
1075  * Returns:
1076  * 0 for success or a negative error code on failure.
1077  */
amdgpu_bo_late_init(struct amdgpu_device * adev)1078 int amdgpu_bo_late_init(struct amdgpu_device *adev)
1079 {
1080 	amdgpu_ttm_late_init(adev);
1081 
1082 	return 0;
1083 }
1084 
1085 /**
1086  * amdgpu_bo_fini - tear down memory manager
1087  * @adev: amdgpu device object
1088  *
1089  * Reverses amdgpu_bo_init() to tear down memory manager.
1090  */
amdgpu_bo_fini(struct amdgpu_device * adev)1091 void amdgpu_bo_fini(struct amdgpu_device *adev)
1092 {
1093 	amdgpu_ttm_fini(adev);
1094 	arch_phys_wc_del(adev->gmc.vram_mtrr);
1095 	arch_io_free_memtype_wc(adev->gmc.aper_base, adev->gmc.aper_size);
1096 }
1097 
1098 /**
1099  * amdgpu_bo_fbdev_mmap - mmap fbdev memory
1100  * @bo: &amdgpu_bo buffer object
1101  * @vma: vma as input from the fbdev mmap method
1102  *
1103  * Calls ttm_fbdev_mmap() to mmap fbdev memory if it is backed by a bo.
1104  *
1105  * Returns:
1106  * 0 for success or a negative error code on failure.
1107  */
amdgpu_bo_fbdev_mmap(struct amdgpu_bo * bo,struct vm_area_struct * vma)1108 int amdgpu_bo_fbdev_mmap(struct amdgpu_bo *bo,
1109 			     struct vm_area_struct *vma)
1110 {
1111 	return ttm_fbdev_mmap(vma, &bo->tbo);
1112 }
1113 
1114 /**
1115  * amdgpu_bo_set_tiling_flags - set tiling flags
1116  * @bo: &amdgpu_bo buffer object
1117  * @tiling_flags: new flags
1118  *
1119  * Sets buffer object's tiling flags with the new one. Used by GEM ioctl or
1120  * kernel driver to set the tiling flags on a buffer.
1121  *
1122  * Returns:
1123  * 0 for success or a negative error code on failure.
1124  */
amdgpu_bo_set_tiling_flags(struct amdgpu_bo * bo,u64 tiling_flags)1125 int amdgpu_bo_set_tiling_flags(struct amdgpu_bo *bo, u64 tiling_flags)
1126 {
1127 	struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
1128 
1129 	if (adev->family <= AMDGPU_FAMILY_CZ &&
1130 	    AMDGPU_TILING_GET(tiling_flags, TILE_SPLIT) > 6)
1131 		return -EINVAL;
1132 
1133 	bo->tiling_flags = tiling_flags;
1134 	return 0;
1135 }
1136 
1137 /**
1138  * amdgpu_bo_get_tiling_flags - get tiling flags
1139  * @bo: &amdgpu_bo buffer object
1140  * @tiling_flags: returned flags
1141  *
1142  * Gets buffer object's tiling flags. Used by GEM ioctl or kernel driver to
1143  * set the tiling flags on a buffer.
1144  */
amdgpu_bo_get_tiling_flags(struct amdgpu_bo * bo,u64 * tiling_flags)1145 void amdgpu_bo_get_tiling_flags(struct amdgpu_bo *bo, u64 *tiling_flags)
1146 {
1147 	lockdep_assert_held(&bo->tbo.resv->lock.base);
1148 
1149 	if (tiling_flags)
1150 		*tiling_flags = bo->tiling_flags;
1151 }
1152 
1153 /**
1154  * amdgpu_bo_set_metadata - set metadata
1155  * @bo: &amdgpu_bo buffer object
1156  * @metadata: new metadata
1157  * @metadata_size: size of the new metadata
1158  * @flags: flags of the new metadata
1159  *
1160  * Sets buffer object's metadata, its size and flags.
1161  * Used via GEM ioctl.
1162  *
1163  * Returns:
1164  * 0 for success or a negative error code on failure.
1165  */
amdgpu_bo_set_metadata(struct amdgpu_bo * bo,void * metadata,uint32_t metadata_size,uint64_t flags)1166 int amdgpu_bo_set_metadata (struct amdgpu_bo *bo, void *metadata,
1167 			    uint32_t metadata_size, uint64_t flags)
1168 {
1169 	void *buffer;
1170 
1171 	if (!metadata_size) {
1172 		if (bo->metadata_size) {
1173 			kfree(bo->metadata);
1174 			bo->metadata = NULL;
1175 			bo->metadata_size = 0;
1176 		}
1177 		return 0;
1178 	}
1179 
1180 	if (metadata == NULL)
1181 		return -EINVAL;
1182 
1183 	buffer = kmemdup(metadata, metadata_size, GFP_KERNEL);
1184 	if (buffer == NULL)
1185 		return -ENOMEM;
1186 
1187 	kfree(bo->metadata);
1188 	bo->metadata_flags = flags;
1189 	bo->metadata = buffer;
1190 	bo->metadata_size = metadata_size;
1191 
1192 	return 0;
1193 }
1194 
1195 /**
1196  * amdgpu_bo_get_metadata - get metadata
1197  * @bo: &amdgpu_bo buffer object
1198  * @buffer: returned metadata
1199  * @buffer_size: size of the buffer
1200  * @metadata_size: size of the returned metadata
1201  * @flags: flags of the returned metadata
1202  *
1203  * Gets buffer object's metadata, its size and flags. buffer_size shall not be
1204  * less than metadata_size.
1205  * Used via GEM ioctl.
1206  *
1207  * Returns:
1208  * 0 for success or a negative error code on failure.
1209  */
amdgpu_bo_get_metadata(struct amdgpu_bo * bo,void * buffer,size_t buffer_size,uint32_t * metadata_size,uint64_t * flags)1210 int amdgpu_bo_get_metadata(struct amdgpu_bo *bo, void *buffer,
1211 			   size_t buffer_size, uint32_t *metadata_size,
1212 			   uint64_t *flags)
1213 {
1214 	if (!buffer && !metadata_size)
1215 		return -EINVAL;
1216 
1217 	if (buffer) {
1218 		if (buffer_size < bo->metadata_size)
1219 			return -EINVAL;
1220 
1221 		if (bo->metadata_size)
1222 			memcpy(buffer, bo->metadata, bo->metadata_size);
1223 	}
1224 
1225 	if (metadata_size)
1226 		*metadata_size = bo->metadata_size;
1227 	if (flags)
1228 		*flags = bo->metadata_flags;
1229 
1230 	return 0;
1231 }
1232 
1233 /**
1234  * amdgpu_bo_move_notify - notification about a memory move
1235  * @bo: pointer to a buffer object
1236  * @evict: if this move is evicting the buffer from the graphics address space
1237  * @new_mem: new information of the bufer object
1238  *
1239  * Marks the corresponding &amdgpu_bo buffer object as invalid, also performs
1240  * bookkeeping.
1241  * TTM driver callback which is called when ttm moves a buffer.
1242  */
amdgpu_bo_move_notify(struct ttm_buffer_object * bo,bool evict,struct ttm_mem_reg * new_mem)1243 void amdgpu_bo_move_notify(struct ttm_buffer_object *bo,
1244 			   bool evict,
1245 			   struct ttm_mem_reg *new_mem)
1246 {
1247 	struct amdgpu_device *adev = amdgpu_ttm_adev(bo->bdev);
1248 	struct amdgpu_bo *abo;
1249 	struct ttm_mem_reg *old_mem = &bo->mem;
1250 
1251 	if (!amdgpu_bo_is_amdgpu_bo(bo))
1252 		return;
1253 
1254 	abo = ttm_to_amdgpu_bo(bo);
1255 	amdgpu_vm_bo_invalidate(adev, abo, evict);
1256 
1257 	amdgpu_bo_kunmap(abo);
1258 
1259 	/* remember the eviction */
1260 	if (evict)
1261 		atomic64_inc(&adev->num_evictions);
1262 
1263 	/* update statistics */
1264 	if (!new_mem)
1265 		return;
1266 
1267 	/* move_notify is called before move happens */
1268 	trace_amdgpu_bo_move(abo, new_mem->mem_type, old_mem->mem_type);
1269 }
1270 
1271 /**
1272  * amdgpu_bo_fault_reserve_notify - notification about a memory fault
1273  * @bo: pointer to a buffer object
1274  *
1275  * Notifies the driver we are taking a fault on this BO and have reserved it,
1276  * also performs bookkeeping.
1277  * TTM driver callback for dealing with vm faults.
1278  *
1279  * Returns:
1280  * 0 for success or a negative error code on failure.
1281  */
amdgpu_bo_fault_reserve_notify(struct ttm_buffer_object * bo)1282 int amdgpu_bo_fault_reserve_notify(struct ttm_buffer_object *bo)
1283 {
1284 	struct amdgpu_device *adev = amdgpu_ttm_adev(bo->bdev);
1285 	struct ttm_operation_ctx ctx = { false, false };
1286 	struct amdgpu_bo *abo;
1287 	unsigned long offset, size;
1288 	int r;
1289 
1290 	if (!amdgpu_bo_is_amdgpu_bo(bo))
1291 		return 0;
1292 
1293 	abo = ttm_to_amdgpu_bo(bo);
1294 
1295 	/* Remember that this BO was accessed by the CPU */
1296 	abo->flags |= AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED;
1297 
1298 	if (bo->mem.mem_type != TTM_PL_VRAM)
1299 		return 0;
1300 
1301 	size = bo->mem.num_pages << PAGE_SHIFT;
1302 	offset = bo->mem.start << PAGE_SHIFT;
1303 	if ((offset + size) <= adev->gmc.visible_vram_size)
1304 		return 0;
1305 
1306 	/* Can't move a pinned BO to visible VRAM */
1307 	if (abo->pin_count > 0)
1308 		return -EINVAL;
1309 
1310 	/* hurrah the memory is not visible ! */
1311 	atomic64_inc(&adev->num_vram_cpu_page_faults);
1312 	amdgpu_bo_placement_from_domain(abo, AMDGPU_GEM_DOMAIN_VRAM |
1313 					AMDGPU_GEM_DOMAIN_GTT);
1314 
1315 	/* Avoid costly evictions; only set GTT as a busy placement */
1316 	abo->placement.num_busy_placement = 1;
1317 	abo->placement.busy_placement = &abo->placements[1];
1318 
1319 	r = ttm_bo_validate(bo, &abo->placement, &ctx);
1320 	if (unlikely(r != 0))
1321 		return r;
1322 
1323 	offset = bo->mem.start << PAGE_SHIFT;
1324 	/* this should never happen */
1325 	if (bo->mem.mem_type == TTM_PL_VRAM &&
1326 	    (offset + size) > adev->gmc.visible_vram_size)
1327 		return -EINVAL;
1328 
1329 	return 0;
1330 }
1331 
1332 /**
1333  * amdgpu_bo_fence - add fence to buffer object
1334  *
1335  * @bo: buffer object in question
1336  * @fence: fence to add
1337  * @shared: true if fence should be added shared
1338  *
1339  */
amdgpu_bo_fence(struct amdgpu_bo * bo,struct dma_fence * fence,bool shared)1340 void amdgpu_bo_fence(struct amdgpu_bo *bo, struct dma_fence *fence,
1341 		     bool shared)
1342 {
1343 	struct reservation_object *resv = bo->tbo.resv;
1344 
1345 	if (shared)
1346 		reservation_object_add_shared_fence(resv, fence);
1347 	else
1348 		reservation_object_add_excl_fence(resv, fence);
1349 }
1350 
1351 /**
1352  * amdgpu_bo_gpu_offset - return GPU offset of bo
1353  * @bo:	amdgpu object for which we query the offset
1354  *
1355  * Note: object should either be pinned or reserved when calling this
1356  * function, it might be useful to add check for this for debugging.
1357  *
1358  * Returns:
1359  * current GPU offset of the object.
1360  */
amdgpu_bo_gpu_offset(struct amdgpu_bo * bo)1361 u64 amdgpu_bo_gpu_offset(struct amdgpu_bo *bo)
1362 {
1363 	WARN_ON_ONCE(bo->tbo.mem.mem_type == TTM_PL_SYSTEM);
1364 	WARN_ON_ONCE(bo->tbo.mem.mem_type == TTM_PL_TT &&
1365 		     !amdgpu_gtt_mgr_has_gart_addr(&bo->tbo.mem));
1366 	WARN_ON_ONCE(!ww_mutex_is_locked(&bo->tbo.resv->lock) &&
1367 		     !bo->pin_count);
1368 	WARN_ON_ONCE(bo->tbo.mem.start == AMDGPU_BO_INVALID_OFFSET);
1369 	WARN_ON_ONCE(bo->tbo.mem.mem_type == TTM_PL_VRAM &&
1370 		     !(bo->flags & AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS));
1371 
1372 	return bo->tbo.offset;
1373 }
1374 
1375 /**
1376  * amdgpu_bo_get_preferred_pin_domain - get preferred domain for scanout
1377  * @adev: amdgpu device object
1378  * @domain: allowed :ref:`memory domains <amdgpu_memory_domains>`
1379  *
1380  * Returns:
1381  * Which of the allowed domains is preferred for pinning the BO for scanout.
1382  */
amdgpu_bo_get_preferred_pin_domain(struct amdgpu_device * adev,uint32_t domain)1383 uint32_t amdgpu_bo_get_preferred_pin_domain(struct amdgpu_device *adev,
1384 					    uint32_t domain)
1385 {
1386 	if (domain == (AMDGPU_GEM_DOMAIN_VRAM | AMDGPU_GEM_DOMAIN_GTT)) {
1387 		domain = AMDGPU_GEM_DOMAIN_VRAM;
1388 		if (adev->gmc.real_vram_size <= AMDGPU_SG_THRESHOLD)
1389 			domain = AMDGPU_GEM_DOMAIN_GTT;
1390 	}
1391 	return domain;
1392 }
1393