xref: /linux/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c (revision 860fd1dd2d47d9d448e01ab39a9c4016cd068862)
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 
33 #include <linux/dma-mapping.h>
34 #include <linux/iommu.h>
35 #include <linux/pagemap.h>
36 #include <linux/sched/task.h>
37 #include <linux/sched/mm.h>
38 #include <linux/seq_file.h>
39 #include <linux/slab.h>
40 #include <linux/swap.h>
41 #include <linux/dma-buf.h>
42 #include <linux/sizes.h>
43 #include <linux/module.h>
44 
45 #include <drm/drm_drv.h>
46 #include <drm/ttm/ttm_bo.h>
47 #include <drm/ttm/ttm_placement.h>
48 #include <drm/ttm/ttm_range_manager.h>
49 #include <drm/ttm/ttm_tt.h>
50 
51 #include <drm/amdgpu_drm.h>
52 
53 #include "amdgpu.h"
54 #include "amdgpu_object.h"
55 #include "amdgpu_trace.h"
56 #include "amdgpu_amdkfd.h"
57 #include "amdgpu_sdma.h"
58 #include "amdgpu_ras.h"
59 #include "amdgpu_hmm.h"
60 #include "amdgpu_atomfirmware.h"
61 #include "amdgpu_res_cursor.h"
62 #include "bif/bif_4_1_d.h"
63 
64 MODULE_IMPORT_NS("DMA_BUF");
65 
66 #define AMDGPU_TTM_VRAM_MAX_DW_READ	((size_t)128)
67 
68 static int amdgpu_ttm_backend_bind(struct ttm_device *bdev,
69 				   struct ttm_tt *ttm,
70 				   struct ttm_resource *bo_mem);
71 static void amdgpu_ttm_backend_unbind(struct ttm_device *bdev,
72 				      struct ttm_tt *ttm);
73 
74 static int amdgpu_ttm_init_on_chip(struct amdgpu_device *adev,
75 				    unsigned int type,
76 				    uint64_t size_in_page)
77 {
78 	return ttm_range_man_init(&adev->mman.bdev, type,
79 				  false, size_in_page);
80 }
81 
82 /**
83  * amdgpu_evict_flags - Compute placement flags
84  *
85  * @bo: The buffer object to evict
86  * @placement: Possible destination(s) for evicted BO
87  *
88  * Fill in placement data when ttm_bo_evict() is called
89  */
90 static void amdgpu_evict_flags(struct ttm_buffer_object *bo,
91 				struct ttm_placement *placement)
92 {
93 	struct amdgpu_device *adev = amdgpu_ttm_adev(bo->bdev);
94 	struct amdgpu_bo *abo;
95 	static const struct ttm_place placements = {
96 		.fpfn = 0,
97 		.lpfn = 0,
98 		.mem_type = TTM_PL_SYSTEM,
99 		.flags = 0
100 	};
101 
102 	/* Don't handle scatter gather BOs */
103 	if (bo->type == ttm_bo_type_sg) {
104 		placement->num_placement = 0;
105 		return;
106 	}
107 
108 	/* Object isn't an AMDGPU object so ignore */
109 	if (!amdgpu_bo_is_amdgpu_bo(bo)) {
110 		placement->placement = &placements;
111 		placement->num_placement = 1;
112 		return;
113 	}
114 
115 	abo = ttm_to_amdgpu_bo(bo);
116 	if (abo->flags & AMDGPU_GEM_CREATE_DISCARDABLE) {
117 		placement->num_placement = 0;
118 		return;
119 	}
120 
121 	switch (bo->resource->mem_type) {
122 	case AMDGPU_PL_GDS:
123 	case AMDGPU_PL_GWS:
124 	case AMDGPU_PL_OA:
125 	case AMDGPU_PL_DOORBELL:
126 	case AMDGPU_PL_MMIO_REMAP:
127 		placement->num_placement = 0;
128 		return;
129 
130 	case TTM_PL_VRAM:
131 		if (!adev->mman.buffer_funcs_enabled) {
132 			/* Move to system memory */
133 			amdgpu_bo_placement_from_domain(abo, AMDGPU_GEM_DOMAIN_CPU);
134 
135 		} else if (!amdgpu_gmc_vram_full_visible(&adev->gmc) &&
136 			   !(abo->flags & AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED) &&
137 			   amdgpu_res_cpu_visible(adev, bo->resource)) {
138 
139 			/* Try evicting to the CPU inaccessible part of VRAM
140 			 * first, but only set GTT as busy placement, so this
141 			 * BO will be evicted to GTT rather than causing other
142 			 * BOs to be evicted from VRAM
143 			 */
144 			amdgpu_bo_placement_from_domain(abo, AMDGPU_GEM_DOMAIN_VRAM |
145 							AMDGPU_GEM_DOMAIN_GTT |
146 							AMDGPU_GEM_DOMAIN_CPU);
147 			abo->placements[0].fpfn = adev->gmc.visible_vram_size >> PAGE_SHIFT;
148 			abo->placements[0].lpfn = 0;
149 			abo->placements[0].flags |= TTM_PL_FLAG_DESIRED;
150 		} else {
151 			/* Move to GTT memory */
152 			amdgpu_bo_placement_from_domain(abo, AMDGPU_GEM_DOMAIN_GTT |
153 							AMDGPU_GEM_DOMAIN_CPU);
154 		}
155 		break;
156 	case TTM_PL_TT:
157 	case AMDGPU_PL_PREEMPT:
158 	default:
159 		amdgpu_bo_placement_from_domain(abo, AMDGPU_GEM_DOMAIN_CPU);
160 		break;
161 	}
162 	*placement = abo->placement;
163 }
164 
165 static struct dma_fence *
166 amdgpu_ttm_job_submit(struct amdgpu_device *adev, struct amdgpu_ttm_buffer_entity *entity,
167 		      struct amdgpu_job *job, u32 num_dw)
168 {
169 	struct amdgpu_ring *ring;
170 
171 	ring = adev->mman.buffer_funcs_ring;
172 	amdgpu_ring_pad_ib(ring, &job->ibs[0]);
173 	WARN_ON(job->ibs[0].length_dw > num_dw);
174 
175 	lockdep_assert_held(&entity->lock);
176 
177 	return amdgpu_job_submit(job);
178 }
179 
180 /**
181  * amdgpu_ttm_map_buffer - Map memory into the GART windows
182  * @entity: entity to run the window setup job
183  * @bo: buffer object to map
184  * @mem: memory object to map
185  * @mm_cur: range to map
186  * @window: which GART window to use
187  * @tmz: if we should setup a TMZ enabled mapping
188  * @size: in number of bytes to map, out number of bytes mapped
189  * @addr: resulting address inside the MC address space
190  *
191  * Setup one of the GART windows to access a specific piece of memory or return
192  * the physical address for local memory.
193  */
194 static int amdgpu_ttm_map_buffer(struct amdgpu_ttm_buffer_entity *entity,
195 				 struct ttm_buffer_object *bo,
196 				 struct ttm_resource *mem,
197 				 struct amdgpu_res_cursor *mm_cur,
198 				 unsigned int window,
199 				 bool tmz, uint64_t *size, uint64_t *addr)
200 {
201 	struct amdgpu_device *adev = amdgpu_ttm_adev(bo->bdev);
202 	unsigned int offset, num_pages, num_dw, num_bytes;
203 	uint64_t src_addr, dst_addr;
204 	struct amdgpu_job *job;
205 	void *cpu_addr;
206 	uint64_t flags;
207 	int r;
208 
209 	BUG_ON(adev->mman.buffer_funcs->copy_max_bytes <
210 	       AMDGPU_GTT_MAX_TRANSFER_SIZE * 8);
211 
212 	if (WARN_ON(mem->mem_type == AMDGPU_PL_PREEMPT))
213 		return -EINVAL;
214 
215 	/* Map only what can't be accessed directly */
216 	if (!tmz && mem->start != AMDGPU_BO_INVALID_OFFSET) {
217 		*addr = amdgpu_ttm_domain_start(adev, mem->mem_type) +
218 			mm_cur->start;
219 		return 0;
220 	}
221 
222 
223 	/*
224 	 * If start begins at an offset inside the page, then adjust the size
225 	 * and addr accordingly
226 	 */
227 	offset = mm_cur->start & ~PAGE_MASK;
228 
229 	num_pages = PFN_UP(*size + offset);
230 	num_pages = min_t(uint32_t, num_pages, AMDGPU_GTT_MAX_TRANSFER_SIZE);
231 
232 	*size = min(*size, (uint64_t)num_pages * PAGE_SIZE - offset);
233 
234 	*addr = amdgpu_compute_gart_address(&adev->gmc, entity, window);
235 	*addr += offset;
236 
237 	num_dw = ALIGN(adev->mman.buffer_funcs->copy_num_dw, 8);
238 	num_bytes = num_pages * 8 * AMDGPU_GPU_PAGES_IN_CPU_PAGE;
239 
240 	r = amdgpu_job_alloc_with_ib(adev, &entity->base,
241 				     AMDGPU_FENCE_OWNER_UNDEFINED,
242 				     num_dw * 4 + num_bytes,
243 				     AMDGPU_IB_POOL_DELAYED, &job,
244 				     AMDGPU_KERNEL_JOB_ID_TTM_MAP_BUFFER);
245 	if (r)
246 		return r;
247 
248 	src_addr = num_dw * 4;
249 	src_addr += job->ibs[0].gpu_addr;
250 
251 	dst_addr = amdgpu_bo_gpu_offset(adev->gart.bo);
252 	dst_addr += (entity->gart_window_offs[window] >> AMDGPU_GPU_PAGE_SHIFT) * 8;
253 	amdgpu_emit_copy_buffer(adev, &job->ibs[0], src_addr,
254 				dst_addr, num_bytes, 0);
255 
256 	flags = amdgpu_ttm_tt_pte_flags(adev, bo->ttm, mem);
257 	if (tmz)
258 		flags |= AMDGPU_PTE_TMZ;
259 
260 	cpu_addr = &job->ibs[0].ptr[num_dw];
261 
262 	if (mem->mem_type == TTM_PL_TT) {
263 		dma_addr_t *dma_addr;
264 
265 		dma_addr = &bo->ttm->dma_address[mm_cur->start >> PAGE_SHIFT];
266 		amdgpu_gart_map(adev, 0, num_pages, dma_addr, flags, cpu_addr);
267 	} else {
268 		u64 pa = mm_cur->start + adev->vm_manager.vram_base_offset;
269 
270 		amdgpu_gart_map_vram_range(adev, pa, 0, num_pages, flags, cpu_addr);
271 	}
272 
273 	dma_fence_put(amdgpu_ttm_job_submit(adev, entity, job, num_dw));
274 	return 0;
275 }
276 
277 /**
278  * amdgpu_ttm_copy_mem_to_mem - Helper function for copy
279  * @adev: amdgpu device
280  * @entity: entity to run the jobs
281  * @src: buffer/address where to read from
282  * @dst: buffer/address where to write to
283  * @size: number of bytes to copy
284  * @tmz: if a secure copy should be used
285  * @resv: resv object to sync to
286  * @f: Returns the last fence if multiple jobs are submitted.
287  *
288  * The function copies @size bytes from {src->mem + src->offset} to
289  * {dst->mem + dst->offset}. src->bo and dst->bo could be same BO for a
290  * move and different for a BO to BO copy.
291  *
292  */
293 __attribute__((nonnull))
294 static int amdgpu_ttm_copy_mem_to_mem(struct amdgpu_device *adev,
295 				      struct amdgpu_ttm_buffer_entity *entity,
296 				      const struct amdgpu_copy_mem *src,
297 				      const struct amdgpu_copy_mem *dst,
298 				      uint64_t size, bool tmz,
299 				      struct dma_resv *resv,
300 				      struct dma_fence **f)
301 {
302 	struct amdgpu_res_cursor src_mm, dst_mm;
303 	struct dma_fence *fence = NULL;
304 	int r = 0;
305 	uint32_t copy_flags = 0;
306 	struct amdgpu_bo *abo_src, *abo_dst;
307 
308 	if (!adev->mman.buffer_funcs_enabled) {
309 		dev_err(adev->dev,
310 			"Trying to move memory with ring turned off.\n");
311 		return -EINVAL;
312 	}
313 
314 	amdgpu_res_first(src->mem, src->offset, size, &src_mm);
315 	amdgpu_res_first(dst->mem, dst->offset, size, &dst_mm);
316 
317 	mutex_lock(&entity->lock);
318 	while (src_mm.remaining) {
319 		uint64_t from, to, cur_size, tiling_flags;
320 		uint32_t num_type, data_format, max_com, write_compress_disable;
321 		struct dma_fence *next;
322 
323 		/* Never copy more than 256MiB at once to avoid a timeout */
324 		cur_size = min3(src_mm.size, dst_mm.size, 256ULL << 20);
325 
326 		/* Map src to window 0 and dst to window 1. */
327 		r = amdgpu_ttm_map_buffer(entity, src->bo, src->mem, &src_mm,
328 					  0, tmz, &cur_size, &from);
329 		if (r)
330 			goto error;
331 
332 		r = amdgpu_ttm_map_buffer(entity, dst->bo, dst->mem, &dst_mm,
333 					  1, tmz, &cur_size, &to);
334 		if (r)
335 			goto error;
336 
337 		abo_src = ttm_to_amdgpu_bo(src->bo);
338 		abo_dst = ttm_to_amdgpu_bo(dst->bo);
339 		if (tmz)
340 			copy_flags |= AMDGPU_COPY_FLAGS_TMZ;
341 		if ((abo_src->flags & AMDGPU_GEM_CREATE_GFX12_DCC) &&
342 		    (abo_src->tbo.resource->mem_type == TTM_PL_VRAM))
343 			copy_flags |= AMDGPU_COPY_FLAGS_READ_DECOMPRESSED;
344 		if ((abo_dst->flags & AMDGPU_GEM_CREATE_GFX12_DCC) &&
345 		    (dst->mem->mem_type == TTM_PL_VRAM)) {
346 			copy_flags |= AMDGPU_COPY_FLAGS_WRITE_COMPRESSED;
347 			amdgpu_bo_get_tiling_flags(abo_dst, &tiling_flags);
348 			max_com = AMDGPU_TILING_GET(tiling_flags, GFX12_DCC_MAX_COMPRESSED_BLOCK);
349 			num_type = AMDGPU_TILING_GET(tiling_flags, GFX12_DCC_NUMBER_TYPE);
350 			data_format = AMDGPU_TILING_GET(tiling_flags, GFX12_DCC_DATA_FORMAT);
351 			write_compress_disable =
352 				AMDGPU_TILING_GET(tiling_flags, GFX12_DCC_WRITE_COMPRESS_DISABLE);
353 			copy_flags |= (AMDGPU_COPY_FLAGS_SET(MAX_COMPRESSED, max_com) |
354 				       AMDGPU_COPY_FLAGS_SET(NUMBER_TYPE, num_type) |
355 				       AMDGPU_COPY_FLAGS_SET(DATA_FORMAT, data_format) |
356 				       AMDGPU_COPY_FLAGS_SET(WRITE_COMPRESS_DISABLE,
357 							     write_compress_disable));
358 		}
359 
360 		r = amdgpu_copy_buffer(adev, entity, from, to, cur_size, resv,
361 				       &next, true, copy_flags);
362 		if (r)
363 			goto error;
364 
365 		dma_fence_put(fence);
366 		fence = next;
367 
368 		amdgpu_res_next(&src_mm, cur_size);
369 		amdgpu_res_next(&dst_mm, cur_size);
370 	}
371 error:
372 	mutex_unlock(&entity->lock);
373 	*f = fence;
374 	return r;
375 }
376 
377 /*
378  * amdgpu_move_blit - Copy an entire buffer to another buffer
379  *
380  * This is a helper called by amdgpu_bo_move() and amdgpu_move_vram_ram() to
381  * help move buffers to and from VRAM.
382  */
383 static int amdgpu_move_blit(struct ttm_buffer_object *bo,
384 			    bool evict,
385 			    struct ttm_resource *new_mem,
386 			    struct ttm_resource *old_mem)
387 {
388 	struct amdgpu_device *adev = amdgpu_ttm_adev(bo->bdev);
389 	struct amdgpu_bo *abo = ttm_to_amdgpu_bo(bo);
390 	struct amdgpu_ttm_buffer_entity *entity;
391 	struct amdgpu_copy_mem src, dst;
392 	struct dma_fence *fence = NULL;
393 	int r;
394 	u32 e;
395 
396 	src.bo = bo;
397 	dst.bo = bo;
398 	src.mem = old_mem;
399 	dst.mem = new_mem;
400 	src.offset = 0;
401 	dst.offset = 0;
402 
403 	e = atomic_inc_return(&adev->mman.next_move_entity) %
404 			      adev->mman.num_move_entities;
405 	entity = &adev->mman.move_entities[e];
406 
407 	r = amdgpu_ttm_copy_mem_to_mem(adev,
408 				       entity,
409 				       &src, &dst,
410 				       new_mem->size,
411 				       amdgpu_bo_encrypted(abo),
412 				       bo->base.resv, &fence);
413 	if (r)
414 		goto error;
415 
416 	/* clear the space being freed */
417 	if (old_mem->mem_type == TTM_PL_VRAM &&
418 	    (abo->flags & AMDGPU_GEM_CREATE_VRAM_WIPE_ON_RELEASE)) {
419 		struct dma_fence *wipe_fence = NULL;
420 		r = amdgpu_fill_buffer(entity, abo, 0, NULL, &wipe_fence,
421 				       AMDGPU_KERNEL_JOB_ID_MOVE_BLIT);
422 		if (r) {
423 			goto error;
424 		} else if (wipe_fence) {
425 			amdgpu_vram_mgr_set_cleared(bo->resource);
426 			dma_fence_put(fence);
427 			fence = wipe_fence;
428 		}
429 	}
430 
431 	/* Always block for VM page tables before committing the new location */
432 	if (bo->type == ttm_bo_type_kernel)
433 		r = ttm_bo_move_accel_cleanup(bo, fence, true, false, new_mem);
434 	else
435 		r = ttm_bo_move_accel_cleanup(bo, fence, evict, true, new_mem);
436 	dma_fence_put(fence);
437 	return r;
438 
439 error:
440 	if (fence)
441 		dma_fence_wait(fence, false);
442 	dma_fence_put(fence);
443 	return r;
444 }
445 
446 /**
447  * amdgpu_res_cpu_visible - Check that resource can be accessed by CPU
448  * @adev: amdgpu device
449  * @res: the resource to check
450  *
451  * Returns: true if the full resource is CPU visible, false otherwise.
452  */
453 bool amdgpu_res_cpu_visible(struct amdgpu_device *adev,
454 			    struct ttm_resource *res)
455 {
456 	struct amdgpu_res_cursor cursor;
457 
458 	if (!res)
459 		return false;
460 
461 	if (res->mem_type == TTM_PL_SYSTEM || res->mem_type == TTM_PL_TT ||
462 	    res->mem_type == AMDGPU_PL_PREEMPT || res->mem_type == AMDGPU_PL_DOORBELL ||
463 	    res->mem_type == AMDGPU_PL_MMIO_REMAP)
464 		return true;
465 
466 	if (res->mem_type != TTM_PL_VRAM)
467 		return false;
468 
469 	amdgpu_res_first(res, 0, res->size, &cursor);
470 	while (cursor.remaining) {
471 		if ((cursor.start + cursor.size) > adev->gmc.visible_vram_size)
472 			return false;
473 		amdgpu_res_next(&cursor, cursor.size);
474 	}
475 
476 	return true;
477 }
478 
479 /*
480  * amdgpu_res_copyable - Check that memory can be accessed by ttm_bo_move_memcpy
481  *
482  * Called by amdgpu_bo_move()
483  */
484 static bool amdgpu_res_copyable(struct amdgpu_device *adev,
485 				struct ttm_resource *mem)
486 {
487 	if (!amdgpu_res_cpu_visible(adev, mem))
488 		return false;
489 
490 	/* ttm_resource_ioremap only supports contiguous memory */
491 	if (mem->mem_type == TTM_PL_VRAM &&
492 	    !(mem->placement & TTM_PL_FLAG_CONTIGUOUS))
493 		return false;
494 
495 	return true;
496 }
497 
498 /*
499  * amdgpu_bo_move - Move a buffer object to a new memory location
500  *
501  * Called by ttm_bo_handle_move_mem()
502  */
503 static int amdgpu_bo_move(struct ttm_buffer_object *bo, bool evict,
504 			  struct ttm_operation_ctx *ctx,
505 			  struct ttm_resource *new_mem,
506 			  struct ttm_place *hop)
507 {
508 	struct amdgpu_device *adev;
509 	struct amdgpu_bo *abo;
510 	struct ttm_resource *old_mem = bo->resource;
511 	int r;
512 
513 	if (new_mem->mem_type == TTM_PL_TT ||
514 	    new_mem->mem_type == AMDGPU_PL_PREEMPT) {
515 		r = amdgpu_ttm_backend_bind(bo->bdev, bo->ttm, new_mem);
516 		if (r)
517 			return r;
518 	}
519 
520 	abo = ttm_to_amdgpu_bo(bo);
521 	adev = amdgpu_ttm_adev(bo->bdev);
522 
523 	if (!old_mem || (old_mem->mem_type == TTM_PL_SYSTEM &&
524 			 bo->ttm == NULL)) {
525 		amdgpu_bo_move_notify(bo, evict, new_mem);
526 		ttm_bo_move_null(bo, new_mem);
527 		return 0;
528 	}
529 	if (old_mem->mem_type == TTM_PL_SYSTEM &&
530 	    (new_mem->mem_type == TTM_PL_TT ||
531 	     new_mem->mem_type == AMDGPU_PL_PREEMPT)) {
532 		amdgpu_bo_move_notify(bo, evict, new_mem);
533 		ttm_bo_move_null(bo, new_mem);
534 		return 0;
535 	}
536 	if ((old_mem->mem_type == TTM_PL_TT ||
537 	     old_mem->mem_type == AMDGPU_PL_PREEMPT) &&
538 	    new_mem->mem_type == TTM_PL_SYSTEM) {
539 		r = ttm_bo_wait_ctx(bo, ctx);
540 		if (r)
541 			return r;
542 
543 		amdgpu_ttm_backend_unbind(bo->bdev, bo->ttm);
544 		amdgpu_bo_move_notify(bo, evict, new_mem);
545 		ttm_resource_free(bo, &bo->resource);
546 		ttm_bo_assign_mem(bo, new_mem);
547 		return 0;
548 	}
549 
550 	if (old_mem->mem_type == AMDGPU_PL_GDS ||
551 	    old_mem->mem_type == AMDGPU_PL_GWS ||
552 	    old_mem->mem_type == AMDGPU_PL_OA ||
553 	    old_mem->mem_type == AMDGPU_PL_DOORBELL ||
554 	    old_mem->mem_type == AMDGPU_PL_MMIO_REMAP ||
555 	    new_mem->mem_type == AMDGPU_PL_GDS ||
556 	    new_mem->mem_type == AMDGPU_PL_GWS ||
557 	    new_mem->mem_type == AMDGPU_PL_OA ||
558 	    new_mem->mem_type == AMDGPU_PL_DOORBELL ||
559 	    new_mem->mem_type == AMDGPU_PL_MMIO_REMAP) {
560 		/* Nothing to save here */
561 		amdgpu_bo_move_notify(bo, evict, new_mem);
562 		ttm_bo_move_null(bo, new_mem);
563 		return 0;
564 	}
565 
566 	if (bo->type == ttm_bo_type_device &&
567 	    new_mem->mem_type == TTM_PL_VRAM &&
568 	    old_mem->mem_type != TTM_PL_VRAM) {
569 		/* amdgpu_bo_fault_reserve_notify will re-set this if the CPU
570 		 * accesses the BO after it's moved.
571 		 */
572 		abo->flags &= ~AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED;
573 	}
574 
575 	if (adev->mman.buffer_funcs_enabled &&
576 	    ((old_mem->mem_type == TTM_PL_SYSTEM &&
577 	      new_mem->mem_type == TTM_PL_VRAM) ||
578 	     (old_mem->mem_type == TTM_PL_VRAM &&
579 	      new_mem->mem_type == TTM_PL_SYSTEM))) {
580 		hop->fpfn = 0;
581 		hop->lpfn = 0;
582 		hop->mem_type = TTM_PL_TT;
583 		hop->flags = TTM_PL_FLAG_TEMPORARY;
584 		return -EMULTIHOP;
585 	}
586 
587 	amdgpu_bo_move_notify(bo, evict, new_mem);
588 	if (adev->mman.buffer_funcs_enabled)
589 		r = amdgpu_move_blit(bo, evict, new_mem, old_mem);
590 	else
591 		r = -ENODEV;
592 
593 	if (r) {
594 		/* Check that all memory is CPU accessible */
595 		if (!amdgpu_res_copyable(adev, old_mem) ||
596 		    !amdgpu_res_copyable(adev, new_mem)) {
597 			pr_err("Move buffer fallback to memcpy unavailable\n");
598 			return r;
599 		}
600 
601 		r = ttm_bo_move_memcpy(bo, ctx, new_mem);
602 		if (r)
603 			return r;
604 	}
605 
606 	/* update statistics after the move */
607 	if (evict)
608 		atomic64_inc(&adev->num_evictions);
609 	atomic64_add(bo->base.size, &adev->num_bytes_moved);
610 	return 0;
611 }
612 
613 /*
614  * amdgpu_ttm_io_mem_reserve - Reserve a block of memory during a fault
615  *
616  * Called by ttm_mem_io_reserve() ultimately via ttm_bo_vm_fault()
617  */
618 static int amdgpu_ttm_io_mem_reserve(struct ttm_device *bdev,
619 				     struct ttm_resource *mem)
620 {
621 	struct amdgpu_device *adev = amdgpu_ttm_adev(bdev);
622 
623 	switch (mem->mem_type) {
624 	case TTM_PL_SYSTEM:
625 		/* system memory */
626 		return 0;
627 	case TTM_PL_TT:
628 	case AMDGPU_PL_PREEMPT:
629 		break;
630 	case TTM_PL_VRAM:
631 		mem->bus.offset = mem->start << PAGE_SHIFT;
632 
633 		if (adev->mman.aper_base_kaddr &&
634 		    mem->placement & TTM_PL_FLAG_CONTIGUOUS)
635 			mem->bus.addr = (u8 *)adev->mman.aper_base_kaddr +
636 					mem->bus.offset;
637 
638 		mem->bus.offset += adev->gmc.aper_base;
639 		mem->bus.is_iomem = true;
640 		break;
641 	case AMDGPU_PL_DOORBELL:
642 		mem->bus.offset = mem->start << PAGE_SHIFT;
643 		mem->bus.offset += adev->doorbell.base;
644 		mem->bus.is_iomem = true;
645 		mem->bus.caching = ttm_uncached;
646 		break;
647 	case AMDGPU_PL_MMIO_REMAP:
648 		mem->bus.offset = mem->start << PAGE_SHIFT;
649 		mem->bus.offset += adev->rmmio_remap.bus_addr;
650 		mem->bus.is_iomem = true;
651 		mem->bus.caching = ttm_uncached;
652 		break;
653 	default:
654 		return -EINVAL;
655 	}
656 	return 0;
657 }
658 
659 static unsigned long amdgpu_ttm_io_mem_pfn(struct ttm_buffer_object *bo,
660 					   unsigned long page_offset)
661 {
662 	struct amdgpu_device *adev = amdgpu_ttm_adev(bo->bdev);
663 	struct amdgpu_res_cursor cursor;
664 
665 	amdgpu_res_first(bo->resource, (u64)page_offset << PAGE_SHIFT, 0,
666 			 &cursor);
667 
668 	if (bo->resource->mem_type == AMDGPU_PL_DOORBELL)
669 		return ((uint64_t)(adev->doorbell.base + cursor.start)) >> PAGE_SHIFT;
670 	else if (bo->resource->mem_type == AMDGPU_PL_MMIO_REMAP)
671 		return ((uint64_t)(adev->rmmio_remap.bus_addr + cursor.start)) >> PAGE_SHIFT;
672 
673 	return (adev->gmc.aper_base + cursor.start) >> PAGE_SHIFT;
674 }
675 
676 /**
677  * amdgpu_ttm_domain_start - Returns GPU start address
678  * @adev: amdgpu device object
679  * @type: type of the memory
680  *
681  * Returns:
682  * GPU start address of a memory domain
683  */
684 
685 uint64_t amdgpu_ttm_domain_start(struct amdgpu_device *adev, uint32_t type)
686 {
687 	switch (type) {
688 	case TTM_PL_TT:
689 		return adev->gmc.gart_start;
690 	case TTM_PL_VRAM:
691 		return adev->gmc.vram_start;
692 	}
693 
694 	return 0;
695 }
696 
697 /*
698  * TTM backend functions.
699  */
700 struct amdgpu_ttm_tt {
701 	struct ttm_tt	ttm;
702 	struct drm_gem_object	*gobj;
703 	u64			offset;
704 	uint64_t		userptr;
705 	struct task_struct	*usertask;
706 	uint32_t		userflags;
707 	bool			bound;
708 	int32_t			pool_id;
709 };
710 
711 #define ttm_to_amdgpu_ttm_tt(ptr)	container_of(ptr, struct amdgpu_ttm_tt, ttm)
712 
713 #ifdef CONFIG_DRM_AMDGPU_USERPTR
714 /*
715  * amdgpu_ttm_tt_get_user_pages - get device accessible pages that back user
716  * memory and start HMM tracking CPU page table update
717  *
718  * Calling function must call amdgpu_ttm_tt_userptr_range_done() once and only
719  * once afterwards to stop HMM tracking. Its the caller responsibility to ensure
720  * that range is a valid memory and it is freed too.
721  */
722 int amdgpu_ttm_tt_get_user_pages(struct amdgpu_bo *bo,
723 				 struct amdgpu_hmm_range *range)
724 {
725 	struct ttm_tt *ttm = bo->tbo.ttm;
726 	struct amdgpu_ttm_tt *gtt = ttm_to_amdgpu_ttm_tt(ttm);
727 	unsigned long start = gtt->userptr;
728 	struct vm_area_struct *vma;
729 	struct mm_struct *mm;
730 	bool readonly;
731 	int r = 0;
732 
733 	mm = bo->notifier.mm;
734 	if (unlikely(!mm)) {
735 		DRM_DEBUG_DRIVER("BO is not registered?\n");
736 		return -EFAULT;
737 	}
738 
739 	if (!mmget_not_zero(mm)) /* Happens during process shutdown */
740 		return -ESRCH;
741 
742 	mmap_read_lock(mm);
743 	vma = vma_lookup(mm, start);
744 	if (unlikely(!vma)) {
745 		r = -EFAULT;
746 		goto out_unlock;
747 	}
748 	if (unlikely((gtt->userflags & AMDGPU_GEM_USERPTR_ANONONLY) &&
749 		vma->vm_file)) {
750 		r = -EPERM;
751 		goto out_unlock;
752 	}
753 
754 	readonly = amdgpu_ttm_tt_is_readonly(ttm);
755 	r = amdgpu_hmm_range_get_pages(&bo->notifier, start, ttm->num_pages,
756 				       readonly, NULL, range);
757 out_unlock:
758 	mmap_read_unlock(mm);
759 	if (r)
760 		pr_debug("failed %d to get user pages 0x%lx\n", r, start);
761 
762 	mmput(mm);
763 
764 	return r;
765 }
766 
767 #endif
768 
769 /*
770  * amdgpu_ttm_tt_set_user_pages - Copy pages in, putting old pages as necessary.
771  *
772  * Called by amdgpu_cs_list_validate(). This creates the page list
773  * that backs user memory and will ultimately be mapped into the device
774  * address space.
775  */
776 void amdgpu_ttm_tt_set_user_pages(struct ttm_tt *ttm, struct amdgpu_hmm_range *range)
777 {
778 	unsigned long i;
779 
780 	for (i = 0; i < ttm->num_pages; ++i)
781 		ttm->pages[i] = range ? hmm_pfn_to_page(range->hmm_range.hmm_pfns[i]) : NULL;
782 }
783 
784 /*
785  * amdgpu_ttm_tt_pin_userptr - prepare the sg table with the user pages
786  *
787  * Called by amdgpu_ttm_backend_bind()
788  **/
789 static int amdgpu_ttm_tt_pin_userptr(struct ttm_device *bdev,
790 				     struct ttm_tt *ttm)
791 {
792 	struct amdgpu_device *adev = amdgpu_ttm_adev(bdev);
793 	struct amdgpu_ttm_tt *gtt = ttm_to_amdgpu_ttm_tt(ttm);
794 	int write = !(gtt->userflags & AMDGPU_GEM_USERPTR_READONLY);
795 	enum dma_data_direction direction = write ?
796 		DMA_BIDIRECTIONAL : DMA_TO_DEVICE;
797 	int r;
798 
799 	/* Allocate an SG array and squash pages into it */
800 	r = sg_alloc_table_from_pages(ttm->sg, ttm->pages, ttm->num_pages, 0,
801 				      (u64)ttm->num_pages << PAGE_SHIFT,
802 				      GFP_KERNEL);
803 	if (r)
804 		goto release_sg;
805 
806 	/* Map SG to device */
807 	r = dma_map_sgtable(adev->dev, ttm->sg, direction, 0);
808 	if (r)
809 		goto release_sg_table;
810 
811 	/* convert SG to linear array of pages and dma addresses */
812 	drm_prime_sg_to_dma_addr_array(ttm->sg, gtt->ttm.dma_address,
813 				       ttm->num_pages);
814 
815 	return 0;
816 
817 release_sg_table:
818 	sg_free_table(ttm->sg);
819 release_sg:
820 	kfree(ttm->sg);
821 	ttm->sg = NULL;
822 	return r;
823 }
824 
825 /*
826  * amdgpu_ttm_tt_unpin_userptr - Unpin and unmap userptr pages
827  */
828 static void amdgpu_ttm_tt_unpin_userptr(struct ttm_device *bdev,
829 					struct ttm_tt *ttm)
830 {
831 	struct amdgpu_device *adev = amdgpu_ttm_adev(bdev);
832 	struct amdgpu_ttm_tt *gtt = ttm_to_amdgpu_ttm_tt(ttm);
833 	int write = !(gtt->userflags & AMDGPU_GEM_USERPTR_READONLY);
834 	enum dma_data_direction direction = write ?
835 		DMA_BIDIRECTIONAL : DMA_TO_DEVICE;
836 
837 	/* double check that we don't free the table twice */
838 	if (!ttm->sg || !ttm->sg->sgl)
839 		return;
840 
841 	/* unmap the pages mapped to the device */
842 	dma_unmap_sgtable(adev->dev, ttm->sg, direction, 0);
843 	sg_free_table(ttm->sg);
844 }
845 
846 /*
847  * total_pages is constructed as MQD0+CtrlStack0 + MQD1+CtrlStack1 + ...
848  * MQDn+CtrlStackn where n is the number of XCCs per partition.
849  * pages_per_xcc is the size of one MQD+CtrlStack. The first page is MQD
850  * and uses memory type default, UC. The rest of pages_per_xcc are
851  * Ctrl stack and modify their memory type to NC.
852  */
853 static void amdgpu_ttm_gart_bind_gfx9_mqd(struct amdgpu_device *adev,
854 				struct ttm_tt *ttm, uint64_t flags)
855 {
856 	struct amdgpu_ttm_tt *gtt = (void *)ttm;
857 	uint64_t total_pages = ttm->num_pages;
858 	int num_xcc = max(1U, adev->gfx.num_xcc_per_xcp);
859 	uint64_t page_idx, pages_per_xcc;
860 	int i;
861 
862 	pages_per_xcc = total_pages;
863 	do_div(pages_per_xcc, num_xcc);
864 
865 	for (i = 0, page_idx = 0; i < num_xcc; i++, page_idx += pages_per_xcc) {
866 		amdgpu_gart_map_gfx9_mqd(adev,
867 				gtt->offset + (page_idx << PAGE_SHIFT),
868 				pages_per_xcc, &gtt->ttm.dma_address[page_idx],
869 				flags);
870 	}
871 }
872 
873 static void amdgpu_ttm_gart_bind(struct amdgpu_device *adev,
874 				 struct ttm_buffer_object *tbo,
875 				 uint64_t flags)
876 {
877 	struct amdgpu_bo *abo = ttm_to_amdgpu_bo(tbo);
878 	struct ttm_tt *ttm = tbo->ttm;
879 	struct amdgpu_ttm_tt *gtt = ttm_to_amdgpu_ttm_tt(ttm);
880 
881 	if (amdgpu_bo_encrypted(abo))
882 		flags |= AMDGPU_PTE_TMZ;
883 
884 	if (abo->flags & AMDGPU_GEM_CREATE_CP_MQD_GFX9) {
885 		amdgpu_ttm_gart_bind_gfx9_mqd(adev, ttm, flags);
886 	} else {
887 		amdgpu_gart_bind(adev, gtt->offset, ttm->num_pages,
888 				 gtt->ttm.dma_address, flags);
889 	}
890 	gtt->bound = true;
891 }
892 
893 /*
894  * amdgpu_ttm_backend_bind - Bind GTT memory
895  *
896  * Called by ttm_tt_bind() on behalf of ttm_bo_handle_move_mem().
897  * This handles binding GTT memory to the device address space.
898  */
899 static int amdgpu_ttm_backend_bind(struct ttm_device *bdev,
900 				   struct ttm_tt *ttm,
901 				   struct ttm_resource *bo_mem)
902 {
903 	struct amdgpu_device *adev = amdgpu_ttm_adev(bdev);
904 	struct amdgpu_ttm_tt *gtt = ttm_to_amdgpu_ttm_tt(ttm);
905 	uint64_t flags;
906 	int r;
907 
908 	if (!bo_mem)
909 		return -EINVAL;
910 
911 	if (gtt->bound)
912 		return 0;
913 
914 	if (gtt->userptr) {
915 		r = amdgpu_ttm_tt_pin_userptr(bdev, ttm);
916 		if (r) {
917 			dev_err(adev->dev, "failed to pin userptr\n");
918 			return r;
919 		}
920 	} else if (ttm->page_flags & TTM_TT_FLAG_EXTERNAL) {
921 		if (!ttm->sg) {
922 			struct dma_buf_attachment *attach;
923 			struct sg_table *sgt;
924 
925 			attach = gtt->gobj->import_attach;
926 			sgt = dma_buf_map_attachment(attach, DMA_BIDIRECTIONAL);
927 			if (IS_ERR(sgt))
928 				return PTR_ERR(sgt);
929 
930 			ttm->sg = sgt;
931 		}
932 
933 		drm_prime_sg_to_dma_addr_array(ttm->sg, gtt->ttm.dma_address,
934 					       ttm->num_pages);
935 	}
936 
937 	if (!ttm->num_pages) {
938 		WARN(1, "nothing to bind %u pages for mreg %p back %p!\n",
939 		     ttm->num_pages, bo_mem, ttm);
940 	}
941 
942 	if (bo_mem->mem_type != TTM_PL_TT ||
943 	    !amdgpu_gtt_mgr_has_gart_addr(bo_mem)) {
944 		gtt->offset = AMDGPU_BO_INVALID_OFFSET;
945 		return 0;
946 	}
947 
948 	/* compute PTE flags relevant to this BO memory */
949 	flags = amdgpu_ttm_tt_pte_flags(adev, ttm, bo_mem);
950 
951 	/* bind pages into GART page tables */
952 	gtt->offset = (u64)bo_mem->start << PAGE_SHIFT;
953 	amdgpu_gart_bind(adev, gtt->offset, ttm->num_pages,
954 			 gtt->ttm.dma_address, flags);
955 	gtt->bound = true;
956 	return 0;
957 }
958 
959 /*
960  * amdgpu_ttm_alloc_gart - Make sure buffer object is accessible either
961  * through AGP or GART aperture.
962  *
963  * If bo is accessible through AGP aperture, then use AGP aperture
964  * to access bo; otherwise allocate logical space in GART aperture
965  * and map bo to GART aperture.
966  */
967 int amdgpu_ttm_alloc_gart(struct ttm_buffer_object *bo)
968 {
969 	struct amdgpu_device *adev = amdgpu_ttm_adev(bo->bdev);
970 	struct ttm_operation_ctx ctx = { false, false };
971 	struct amdgpu_ttm_tt *gtt = ttm_to_amdgpu_ttm_tt(bo->ttm);
972 	struct ttm_placement placement;
973 	struct ttm_place placements;
974 	struct ttm_resource *tmp;
975 	uint64_t addr, flags;
976 	int r;
977 
978 	if (bo->resource->start != AMDGPU_BO_INVALID_OFFSET)
979 		return 0;
980 
981 	addr = amdgpu_gmc_agp_addr(bo);
982 	if (addr != AMDGPU_BO_INVALID_OFFSET)
983 		return 0;
984 
985 	/* allocate GART space */
986 	placement.num_placement = 1;
987 	placement.placement = &placements;
988 	placements.fpfn = 0;
989 	placements.lpfn = adev->gmc.gart_size >> PAGE_SHIFT;
990 	placements.mem_type = TTM_PL_TT;
991 	placements.flags = bo->resource->placement;
992 
993 	r = ttm_bo_mem_space(bo, &placement, &tmp, &ctx);
994 	if (unlikely(r))
995 		return r;
996 
997 	/* compute PTE flags for this buffer object */
998 	flags = amdgpu_ttm_tt_pte_flags(adev, bo->ttm, tmp);
999 
1000 	/* Bind pages */
1001 	gtt->offset = (u64)tmp->start << PAGE_SHIFT;
1002 	amdgpu_ttm_gart_bind(adev, bo, flags);
1003 	amdgpu_gart_invalidate_tlb(adev);
1004 	ttm_resource_free(bo, &bo->resource);
1005 	ttm_bo_assign_mem(bo, tmp);
1006 
1007 	return 0;
1008 }
1009 
1010 /*
1011  * amdgpu_ttm_recover_gart - Rebind GTT pages
1012  *
1013  * Called by amdgpu_gtt_mgr_recover() from amdgpu_device_reset() to
1014  * rebind GTT pages during a GPU reset.
1015  */
1016 void amdgpu_ttm_recover_gart(struct ttm_buffer_object *tbo)
1017 {
1018 	struct amdgpu_device *adev = amdgpu_ttm_adev(tbo->bdev);
1019 	uint64_t flags;
1020 
1021 	if (!tbo->ttm)
1022 		return;
1023 
1024 	flags = amdgpu_ttm_tt_pte_flags(adev, tbo->ttm, tbo->resource);
1025 	amdgpu_ttm_gart_bind(adev, tbo, flags);
1026 }
1027 
1028 /*
1029  * amdgpu_ttm_backend_unbind - Unbind GTT mapped pages
1030  *
1031  * Called by ttm_tt_unbind() on behalf of ttm_bo_move_ttm() and
1032  * ttm_tt_destroy().
1033  */
1034 static void amdgpu_ttm_backend_unbind(struct ttm_device *bdev,
1035 				      struct ttm_tt *ttm)
1036 {
1037 	struct amdgpu_device *adev = amdgpu_ttm_adev(bdev);
1038 	struct amdgpu_ttm_tt *gtt = ttm_to_amdgpu_ttm_tt(ttm);
1039 
1040 	/* if the pages have userptr pinning then clear that first */
1041 	if (gtt->userptr) {
1042 		amdgpu_ttm_tt_unpin_userptr(bdev, ttm);
1043 	} else if (ttm->sg && drm_gem_is_imported(gtt->gobj)) {
1044 		struct dma_buf_attachment *attach;
1045 
1046 		attach = gtt->gobj->import_attach;
1047 		dma_buf_unmap_attachment(attach, ttm->sg, DMA_BIDIRECTIONAL);
1048 		ttm->sg = NULL;
1049 	}
1050 
1051 	if (!gtt->bound)
1052 		return;
1053 
1054 	if (gtt->offset == AMDGPU_BO_INVALID_OFFSET)
1055 		return;
1056 
1057 	/* unbind shouldn't be done for GDS/GWS/OA in ttm_bo_clean_mm */
1058 	amdgpu_gart_unbind(adev, gtt->offset, ttm->num_pages);
1059 	gtt->bound = false;
1060 }
1061 
1062 static void amdgpu_ttm_backend_destroy(struct ttm_device *bdev,
1063 				       struct ttm_tt *ttm)
1064 {
1065 	struct amdgpu_ttm_tt *gtt = ttm_to_amdgpu_ttm_tt(ttm);
1066 
1067 	if (gtt->usertask)
1068 		put_task_struct(gtt->usertask);
1069 
1070 	ttm_tt_fini(&gtt->ttm);
1071 	kfree(gtt);
1072 }
1073 
1074 /**
1075  * amdgpu_ttm_mmio_remap_alloc_sgt - build an sg_table for MMIO_REMAP I/O aperture
1076  * @adev: amdgpu device providing the remap BAR base (adev->rmmio_remap.bus_addr)
1077  * @res:  TTM resource of the BO to export; expected to live in AMDGPU_PL_MMIO_REMAP
1078  * @dev:  importing device to map for (typically @attach->dev in dma-buf paths)
1079  * @dir:  DMA data direction for the importer (passed to dma_map_resource())
1080  * @sgt:  output; on success, set to a newly allocated sg_table describing the I/O span
1081  *
1082  * The HDP flush page (AMDGPU_PL_MMIO_REMAP) is a fixed hardware I/O window in a PCI
1083  * BAR—there are no struct pages to back it. Importers still need a DMA address list,
1084  * so we synthesize a minimal sg_table and populate it from dma_map_resource(), not
1085  * from pages. Using the common amdgpu_res_cursor walker keeps the offset/size math
1086  * consistent with other TTM/manager users.
1087  *
1088  * - @res is assumed to be a small, contiguous I/O region (typically a single 4 KiB
1089  *   page) in AMDGPU_PL_MMIO_REMAP. Callers should validate placement before calling.
1090  * - The sg entry is created with sg_set_page(sg, NULL, …) to reflect I/O space.
1091  * - The mapping uses DMA_ATTR_SKIP_CPU_SYNC because this is MMIO, not cacheable RAM.
1092  * - Peer reachability / p2pdma policy checks must be done by the caller.
1093  *
1094  * Return:
1095  * * 0 on success, with *@sgt set to a valid table that must be freed via
1096  *   amdgpu_ttm_mmio_remap_free_sgt().
1097  * * -ENOMEM if allocation of the sg_table fails.
1098  * * -EIO if dma_map_resource() fails.
1099  *
1100  */
1101 int amdgpu_ttm_mmio_remap_alloc_sgt(struct amdgpu_device *adev,
1102 				    struct ttm_resource *res,
1103 				    struct device *dev,
1104 				    enum dma_data_direction dir,
1105 				    struct sg_table **sgt)
1106 {
1107 	struct amdgpu_res_cursor cur;
1108 	dma_addr_t dma;
1109 	resource_size_t phys;
1110 	struct scatterlist *sg;
1111 	int r;
1112 
1113 	/* Walk the resource once; MMIO_REMAP is expected to be contiguous+small. */
1114 	amdgpu_res_first(res, 0, res->size, &cur);
1115 
1116 	/* Translate byte offset in the remap window into a host physical BAR address. */
1117 	phys = adev->rmmio_remap.bus_addr + cur.start;
1118 
1119 	/* Build a single-entry sg_table mapped as I/O (no struct page backing). */
1120 	*sgt = kzalloc_obj(**sgt);
1121 	if (!*sgt)
1122 		return -ENOMEM;
1123 	r = sg_alloc_table(*sgt, 1, GFP_KERNEL);
1124 	if (r) {
1125 		kfree(*sgt);
1126 		return r;
1127 	}
1128 	sg = (*sgt)->sgl;
1129 	sg_set_page(sg, NULL, cur.size, 0);  /* WHY: I/O space → no pages */
1130 
1131 	dma = dma_map_resource(dev, phys, cur.size, dir, DMA_ATTR_SKIP_CPU_SYNC);
1132 	if (dma_mapping_error(dev, dma)) {
1133 		sg_free_table(*sgt);
1134 		kfree(*sgt);
1135 		return -EIO;
1136 	}
1137 	sg_dma_address(sg) = dma;
1138 	sg_dma_len(sg) = cur.size;
1139 	return 0;
1140 }
1141 
1142 void amdgpu_ttm_mmio_remap_free_sgt(struct device *dev,
1143 				    enum dma_data_direction dir,
1144 				    struct sg_table *sgt)
1145 {
1146 	struct scatterlist *sg = sgt->sgl;
1147 
1148 	dma_unmap_resource(dev, sg_dma_address(sg), sg_dma_len(sg),
1149 			   dir, DMA_ATTR_SKIP_CPU_SYNC);
1150 	sg_free_table(sgt);
1151 	kfree(sgt);
1152 }
1153 
1154 /**
1155  * amdgpu_ttm_tt_create - Create a ttm_tt object for a given BO
1156  *
1157  * @bo: The buffer object to create a GTT ttm_tt object around
1158  * @page_flags: Page flags to be added to the ttm_tt object
1159  *
1160  * Called by ttm_tt_create().
1161  */
1162 static struct ttm_tt *amdgpu_ttm_tt_create(struct ttm_buffer_object *bo,
1163 					   uint32_t page_flags)
1164 {
1165 	struct amdgpu_device *adev = amdgpu_ttm_adev(bo->bdev);
1166 	struct amdgpu_bo *abo = ttm_to_amdgpu_bo(bo);
1167 	struct amdgpu_ttm_tt *gtt;
1168 	enum ttm_caching caching;
1169 
1170 	gtt = kzalloc_obj(struct amdgpu_ttm_tt);
1171 	if (!gtt)
1172 		return NULL;
1173 
1174 	gtt->gobj = &bo->base;
1175 	if (adev->gmc.mem_partitions && abo->xcp_id >= 0)
1176 		gtt->pool_id = KFD_XCP_MEM_ID(adev, abo->xcp_id);
1177 	else
1178 		gtt->pool_id = abo->xcp_id;
1179 
1180 	if (abo->flags & AMDGPU_GEM_CREATE_CPU_GTT_USWC)
1181 		caching = ttm_write_combined;
1182 	else
1183 		caching = ttm_cached;
1184 
1185 	/* allocate space for the uninitialized page entries */
1186 	if (ttm_sg_tt_init(&gtt->ttm, bo, page_flags, caching)) {
1187 		kfree(gtt);
1188 		return NULL;
1189 	}
1190 	return &gtt->ttm;
1191 }
1192 
1193 /*
1194  * amdgpu_ttm_tt_populate - Map GTT pages visible to the device
1195  *
1196  * Map the pages of a ttm_tt object to an address space visible
1197  * to the underlying device.
1198  */
1199 static int amdgpu_ttm_tt_populate(struct ttm_device *bdev,
1200 				  struct ttm_tt *ttm,
1201 				  struct ttm_operation_ctx *ctx)
1202 {
1203 	struct amdgpu_device *adev = amdgpu_ttm_adev(bdev);
1204 	struct amdgpu_ttm_tt *gtt = ttm_to_amdgpu_ttm_tt(ttm);
1205 	struct ttm_pool *pool;
1206 	pgoff_t i;
1207 	int ret;
1208 
1209 	/* user pages are bound by amdgpu_ttm_tt_pin_userptr() */
1210 	if (gtt->userptr) {
1211 		ttm->sg = kzalloc_obj(struct sg_table);
1212 		if (!ttm->sg)
1213 			return -ENOMEM;
1214 		return 0;
1215 	}
1216 
1217 	if (ttm->page_flags & TTM_TT_FLAG_EXTERNAL)
1218 		return 0;
1219 
1220 	if (adev->mman.ttm_pools && gtt->pool_id >= 0)
1221 		pool = &adev->mman.ttm_pools[gtt->pool_id];
1222 	else
1223 		pool = &adev->mman.bdev.pool;
1224 	ret = ttm_pool_alloc(pool, ttm, ctx);
1225 	if (ret)
1226 		return ret;
1227 
1228 	for (i = 0; i < ttm->num_pages; ++i)
1229 		ttm->pages[i]->mapping = bdev->dev_mapping;
1230 
1231 	return 0;
1232 }
1233 
1234 /*
1235  * amdgpu_ttm_tt_unpopulate - unmap GTT pages and unpopulate page arrays
1236  *
1237  * Unmaps pages of a ttm_tt object from the device address space and
1238  * unpopulates the page array backing it.
1239  */
1240 static void amdgpu_ttm_tt_unpopulate(struct ttm_device *bdev,
1241 				     struct ttm_tt *ttm)
1242 {
1243 	struct amdgpu_ttm_tt *gtt = ttm_to_amdgpu_ttm_tt(ttm);
1244 	struct amdgpu_device *adev;
1245 	struct ttm_pool *pool;
1246 	pgoff_t i;
1247 
1248 	amdgpu_ttm_backend_unbind(bdev, ttm);
1249 
1250 	if (gtt->userptr) {
1251 		amdgpu_ttm_tt_set_user_pages(ttm, NULL);
1252 		kfree(ttm->sg);
1253 		ttm->sg = NULL;
1254 		return;
1255 	}
1256 
1257 	if (ttm->page_flags & TTM_TT_FLAG_EXTERNAL)
1258 		return;
1259 
1260 	for (i = 0; i < ttm->num_pages; ++i)
1261 		ttm->pages[i]->mapping = NULL;
1262 
1263 	adev = amdgpu_ttm_adev(bdev);
1264 
1265 	if (adev->mman.ttm_pools && gtt->pool_id >= 0)
1266 		pool = &adev->mman.ttm_pools[gtt->pool_id];
1267 	else
1268 		pool = &adev->mman.bdev.pool;
1269 
1270 	return ttm_pool_free(pool, ttm);
1271 }
1272 
1273 /**
1274  * amdgpu_ttm_tt_get_userptr - Return the userptr GTT ttm_tt for the current
1275  * task
1276  *
1277  * @tbo: The ttm_buffer_object that contains the userptr
1278  * @user_addr:  The returned value
1279  */
1280 int amdgpu_ttm_tt_get_userptr(const struct ttm_buffer_object *tbo,
1281 			      uint64_t *user_addr)
1282 {
1283 	struct amdgpu_ttm_tt *gtt;
1284 
1285 	if (!tbo->ttm)
1286 		return -EINVAL;
1287 
1288 	gtt = (void *)tbo->ttm;
1289 	*user_addr = gtt->userptr;
1290 	return 0;
1291 }
1292 
1293 /**
1294  * amdgpu_ttm_tt_set_userptr - Initialize userptr GTT ttm_tt for the current
1295  * task
1296  *
1297  * @bo: The ttm_buffer_object to bind this userptr to
1298  * @addr:  The address in the current tasks VM space to use
1299  * @flags: Requirements of userptr object.
1300  *
1301  * Called by amdgpu_gem_userptr_ioctl() and kfd_ioctl_alloc_memory_of_gpu() to
1302  * bind userptr pages to current task and by kfd_ioctl_acquire_vm() to
1303  * initialize GPU VM for a KFD process.
1304  */
1305 int amdgpu_ttm_tt_set_userptr(struct ttm_buffer_object *bo,
1306 			      uint64_t addr, uint32_t flags)
1307 {
1308 	struct amdgpu_ttm_tt *gtt;
1309 
1310 	if (!bo->ttm) {
1311 		/* TODO: We want a separate TTM object type for userptrs */
1312 		bo->ttm = amdgpu_ttm_tt_create(bo, 0);
1313 		if (bo->ttm == NULL)
1314 			return -ENOMEM;
1315 	}
1316 
1317 	/* Set TTM_TT_FLAG_EXTERNAL before populate but after create. */
1318 	bo->ttm->page_flags |= TTM_TT_FLAG_EXTERNAL;
1319 
1320 	gtt = ttm_to_amdgpu_ttm_tt(bo->ttm);
1321 	gtt->userptr = addr;
1322 	gtt->userflags = flags;
1323 
1324 	if (gtt->usertask)
1325 		put_task_struct(gtt->usertask);
1326 	gtt->usertask = current->group_leader;
1327 	get_task_struct(gtt->usertask);
1328 
1329 	return 0;
1330 }
1331 
1332 /*
1333  * amdgpu_ttm_tt_get_usermm - Return memory manager for ttm_tt object
1334  */
1335 struct mm_struct *amdgpu_ttm_tt_get_usermm(struct ttm_tt *ttm)
1336 {
1337 	struct amdgpu_ttm_tt *gtt = ttm_to_amdgpu_ttm_tt(ttm);
1338 
1339 	if (gtt == NULL)
1340 		return NULL;
1341 
1342 	if (gtt->usertask == NULL)
1343 		return NULL;
1344 
1345 	return gtt->usertask->mm;
1346 }
1347 
1348 /*
1349  * amdgpu_ttm_tt_affect_userptr - Determine if a ttm_tt object lays inside an
1350  * address range for the current task.
1351  *
1352  */
1353 bool amdgpu_ttm_tt_affect_userptr(struct ttm_tt *ttm, unsigned long start,
1354 				  unsigned long end, unsigned long *userptr)
1355 {
1356 	struct amdgpu_ttm_tt *gtt = ttm_to_amdgpu_ttm_tt(ttm);
1357 	unsigned long size;
1358 
1359 	if (gtt == NULL || !gtt->userptr)
1360 		return false;
1361 
1362 	/* Return false if no part of the ttm_tt object lies within
1363 	 * the range
1364 	 */
1365 	size = (unsigned long)gtt->ttm.num_pages * PAGE_SIZE;
1366 	if (gtt->userptr > end || gtt->userptr + size <= start)
1367 		return false;
1368 
1369 	if (userptr)
1370 		*userptr = gtt->userptr;
1371 	return true;
1372 }
1373 
1374 /*
1375  * amdgpu_ttm_tt_is_userptr - Have the pages backing by userptr?
1376  */
1377 bool amdgpu_ttm_tt_is_userptr(struct ttm_tt *ttm)
1378 {
1379 	struct amdgpu_ttm_tt *gtt = ttm_to_amdgpu_ttm_tt(ttm);
1380 
1381 	if (gtt == NULL || !gtt->userptr)
1382 		return false;
1383 
1384 	return true;
1385 }
1386 
1387 /*
1388  * amdgpu_ttm_tt_is_readonly - Is the ttm_tt object read only?
1389  */
1390 bool amdgpu_ttm_tt_is_readonly(struct ttm_tt *ttm)
1391 {
1392 	struct amdgpu_ttm_tt *gtt = ttm_to_amdgpu_ttm_tt(ttm);
1393 
1394 	if (gtt == NULL)
1395 		return false;
1396 
1397 	return !!(gtt->userflags & AMDGPU_GEM_USERPTR_READONLY);
1398 }
1399 
1400 /**
1401  * amdgpu_ttm_tt_pde_flags - Compute PDE flags for ttm_tt object
1402  *
1403  * @ttm: The ttm_tt object to compute the flags for
1404  * @mem: The memory registry backing this ttm_tt object
1405  *
1406  * Figure out the flags to use for a VM PDE (Page Directory Entry).
1407  */
1408 uint64_t amdgpu_ttm_tt_pde_flags(struct ttm_tt *ttm, struct ttm_resource *mem)
1409 {
1410 	uint64_t flags = 0;
1411 
1412 	if (mem && mem->mem_type != TTM_PL_SYSTEM)
1413 		flags |= AMDGPU_PTE_VALID;
1414 
1415 	if (mem && (mem->mem_type == TTM_PL_TT ||
1416 		    mem->mem_type == AMDGPU_PL_DOORBELL ||
1417 		    mem->mem_type == AMDGPU_PL_PREEMPT ||
1418 		    mem->mem_type == AMDGPU_PL_MMIO_REMAP)) {
1419 		flags |= AMDGPU_PTE_SYSTEM;
1420 
1421 		if (ttm && ttm->caching == ttm_cached)
1422 			flags |= AMDGPU_PTE_SNOOPED;
1423 	}
1424 
1425 	if (mem && mem->mem_type == TTM_PL_VRAM &&
1426 			mem->bus.caching == ttm_cached)
1427 		flags |= AMDGPU_PTE_SNOOPED;
1428 
1429 	return flags;
1430 }
1431 
1432 /**
1433  * amdgpu_ttm_tt_pte_flags - Compute PTE flags for ttm_tt object
1434  *
1435  * @adev: amdgpu_device pointer
1436  * @ttm: The ttm_tt object to compute the flags for
1437  * @mem: The memory registry backing this ttm_tt object
1438  *
1439  * Figure out the flags to use for a VM PTE (Page Table Entry).
1440  */
1441 uint64_t amdgpu_ttm_tt_pte_flags(struct amdgpu_device *adev, struct ttm_tt *ttm,
1442 				 struct ttm_resource *mem)
1443 {
1444 	uint64_t flags = amdgpu_ttm_tt_pde_flags(ttm, mem);
1445 
1446 	flags |= adev->gart.gart_pte_flags;
1447 	flags |= AMDGPU_PTE_READABLE;
1448 
1449 	if (!amdgpu_ttm_tt_is_readonly(ttm))
1450 		flags |= AMDGPU_PTE_WRITEABLE;
1451 
1452 	return flags;
1453 }
1454 
1455 /*
1456  * amdgpu_ttm_bo_eviction_valuable - Check to see if we can evict a buffer
1457  * object.
1458  *
1459  * Return true if eviction is sensible. Called by ttm_mem_evict_first() on
1460  * behalf of ttm_bo_mem_force_space() which tries to evict buffer objects until
1461  * it can find space for a new object and by ttm_bo_force_list_clean() which is
1462  * used to clean out a memory space.
1463  */
1464 static bool amdgpu_ttm_bo_eviction_valuable(struct ttm_buffer_object *bo,
1465 					    const struct ttm_place *place)
1466 {
1467 	struct dma_resv_iter resv_cursor;
1468 	struct dma_fence *f;
1469 
1470 	if (!amdgpu_bo_is_amdgpu_bo(bo))
1471 		return ttm_bo_eviction_valuable(bo, place);
1472 
1473 	/* Swapout? */
1474 	if (bo->resource->mem_type == TTM_PL_SYSTEM)
1475 		return true;
1476 
1477 	if (bo->type == ttm_bo_type_kernel &&
1478 	    !amdgpu_vm_evictable(ttm_to_amdgpu_bo(bo)))
1479 		return false;
1480 
1481 	/* If bo is a KFD BO, check if the bo belongs to the current process.
1482 	 * If true, then return false as any KFD process needs all its BOs to
1483 	 * be resident to run successfully
1484 	 */
1485 	dma_resv_for_each_fence(&resv_cursor, bo->base.resv,
1486 				DMA_RESV_USAGE_BOOKKEEP, f) {
1487 		if (amdkfd_fence_check_mm(f, current->mm) &&
1488 		    !(place->flags & TTM_PL_FLAG_CONTIGUOUS))
1489 			return false;
1490 	}
1491 
1492 	/* Preemptible BOs don't own system resources managed by the
1493 	 * driver (pages, VRAM, GART space). They point to resources
1494 	 * owned by someone else (e.g. pageable memory in user mode
1495 	 * or a DMABuf). They are used in a preemptible context so we
1496 	 * can guarantee no deadlocks and good QoS in case of MMU
1497 	 * notifiers or DMABuf move notifiers from the resource owner.
1498 	 */
1499 	if (bo->resource->mem_type == AMDGPU_PL_PREEMPT)
1500 		return false;
1501 
1502 	if (bo->resource->mem_type == TTM_PL_TT &&
1503 	    amdgpu_bo_encrypted(ttm_to_amdgpu_bo(bo)))
1504 		return false;
1505 
1506 	return ttm_bo_eviction_valuable(bo, place);
1507 }
1508 
1509 static void amdgpu_ttm_vram_mm_access(struct amdgpu_device *adev, loff_t pos,
1510 				      void *buf, size_t size, bool write)
1511 {
1512 	while (size) {
1513 		uint64_t aligned_pos = ALIGN_DOWN(pos, 4);
1514 		uint64_t bytes = 4 - (pos & 0x3);
1515 		uint32_t shift = (pos & 0x3) * 8;
1516 		uint32_t mask = 0xffffffff << shift;
1517 		uint32_t value = 0;
1518 
1519 		if (size < bytes) {
1520 			mask &= 0xffffffff >> (bytes - size) * 8;
1521 			bytes = size;
1522 		}
1523 
1524 		if (mask != 0xffffffff) {
1525 			amdgpu_device_mm_access(adev, aligned_pos, &value, 4, false);
1526 			if (write) {
1527 				value &= ~mask;
1528 				value |= (*(uint32_t *)buf << shift) & mask;
1529 				amdgpu_device_mm_access(adev, aligned_pos, &value, 4, true);
1530 			} else {
1531 				value = (value & mask) >> shift;
1532 				memcpy(buf, &value, bytes);
1533 			}
1534 		} else {
1535 			amdgpu_device_mm_access(adev, aligned_pos, buf, 4, write);
1536 		}
1537 
1538 		pos += bytes;
1539 		buf += bytes;
1540 		size -= bytes;
1541 	}
1542 }
1543 
1544 static int amdgpu_ttm_access_memory_sdma(struct ttm_buffer_object *bo,
1545 					unsigned long offset, void *buf,
1546 					int len, int write)
1547 {
1548 	struct amdgpu_bo *abo = ttm_to_amdgpu_bo(bo);
1549 	struct amdgpu_device *adev = amdgpu_ttm_adev(abo->tbo.bdev);
1550 	struct amdgpu_res_cursor src_mm;
1551 	struct amdgpu_job *job;
1552 	struct dma_fence *fence;
1553 	uint64_t src_addr, dst_addr;
1554 	unsigned int num_dw;
1555 	int r, idx;
1556 
1557 	if (len != PAGE_SIZE)
1558 		return -EINVAL;
1559 
1560 	if (!adev->mman.sdma_access_ptr)
1561 		return -EACCES;
1562 
1563 	if (!drm_dev_enter(adev_to_drm(adev), &idx))
1564 		return -ENODEV;
1565 
1566 	if (write)
1567 		memcpy(adev->mman.sdma_access_ptr, buf, len);
1568 
1569 	num_dw = ALIGN(adev->mman.buffer_funcs->copy_num_dw, 8);
1570 	r = amdgpu_job_alloc_with_ib(adev, &adev->mman.default_entity.base,
1571 				     AMDGPU_FENCE_OWNER_UNDEFINED,
1572 				     num_dw * 4, AMDGPU_IB_POOL_DELAYED,
1573 				     &job,
1574 				     AMDGPU_KERNEL_JOB_ID_TTM_ACCESS_MEMORY_SDMA);
1575 	if (r)
1576 		goto out;
1577 
1578 	mutex_lock(&adev->mman.default_entity.lock);
1579 	amdgpu_res_first(abo->tbo.resource, offset, len, &src_mm);
1580 	src_addr = amdgpu_ttm_domain_start(adev, bo->resource->mem_type) +
1581 		src_mm.start;
1582 	dst_addr = amdgpu_bo_gpu_offset(adev->mman.sdma_access_bo);
1583 	if (write)
1584 		swap(src_addr, dst_addr);
1585 
1586 	amdgpu_emit_copy_buffer(adev, &job->ibs[0], src_addr, dst_addr,
1587 				PAGE_SIZE, 0);
1588 
1589 	fence = amdgpu_ttm_job_submit(adev, &adev->mman.default_entity, job, num_dw);
1590 	mutex_unlock(&adev->mman.default_entity.lock);
1591 
1592 	if (!dma_fence_wait_timeout(fence, false, adev->sdma_timeout))
1593 		r = -ETIMEDOUT;
1594 	dma_fence_put(fence);
1595 
1596 	if (!(r || write))
1597 		memcpy(buf, adev->mman.sdma_access_ptr, len);
1598 out:
1599 	drm_dev_exit(idx);
1600 	return r;
1601 }
1602 
1603 /**
1604  * amdgpu_ttm_access_memory - Read or Write memory that backs a buffer object.
1605  *
1606  * @bo:  The buffer object to read/write
1607  * @offset:  Offset into buffer object
1608  * @buf:  Secondary buffer to write/read from
1609  * @len: Length in bytes of access
1610  * @write:  true if writing
1611  *
1612  * This is used to access VRAM that backs a buffer object via MMIO
1613  * access for debugging purposes.
1614  */
1615 static int amdgpu_ttm_access_memory(struct ttm_buffer_object *bo,
1616 				    unsigned long offset, void *buf, int len,
1617 				    int write)
1618 {
1619 	struct amdgpu_bo *abo = ttm_to_amdgpu_bo(bo);
1620 	struct amdgpu_device *adev = amdgpu_ttm_adev(abo->tbo.bdev);
1621 	struct amdgpu_res_cursor cursor;
1622 	int ret = 0;
1623 
1624 	if (bo->resource->mem_type != TTM_PL_VRAM)
1625 		return -EIO;
1626 
1627 	if (amdgpu_device_has_timeouts_enabled(adev) &&
1628 			!amdgpu_ttm_access_memory_sdma(bo, offset, buf, len, write))
1629 		return len;
1630 
1631 	amdgpu_res_first(bo->resource, offset, len, &cursor);
1632 	while (cursor.remaining) {
1633 		size_t count, size = cursor.size;
1634 		loff_t pos = cursor.start;
1635 
1636 		count = amdgpu_device_aper_access(adev, pos, buf, size, write);
1637 		size -= count;
1638 		if (size) {
1639 			/* using MM to access rest vram and handle un-aligned address */
1640 			pos += count;
1641 			buf += count;
1642 			amdgpu_ttm_vram_mm_access(adev, pos, buf, size, write);
1643 		}
1644 
1645 		ret += cursor.size;
1646 		buf += cursor.size;
1647 		amdgpu_res_next(&cursor, cursor.size);
1648 	}
1649 
1650 	return ret;
1651 }
1652 
1653 static void
1654 amdgpu_bo_delete_mem_notify(struct ttm_buffer_object *bo)
1655 {
1656 	amdgpu_bo_move_notify(bo, false, NULL);
1657 }
1658 
1659 static struct ttm_device_funcs amdgpu_bo_driver = {
1660 	.ttm_tt_create = &amdgpu_ttm_tt_create,
1661 	.ttm_tt_populate = &amdgpu_ttm_tt_populate,
1662 	.ttm_tt_unpopulate = &amdgpu_ttm_tt_unpopulate,
1663 	.ttm_tt_destroy = &amdgpu_ttm_backend_destroy,
1664 	.eviction_valuable = amdgpu_ttm_bo_eviction_valuable,
1665 	.evict_flags = &amdgpu_evict_flags,
1666 	.move = &amdgpu_bo_move,
1667 	.delete_mem_notify = &amdgpu_bo_delete_mem_notify,
1668 	.release_notify = &amdgpu_bo_release_notify,
1669 	.io_mem_reserve = &amdgpu_ttm_io_mem_reserve,
1670 	.io_mem_pfn = amdgpu_ttm_io_mem_pfn,
1671 	.access_memory = &amdgpu_ttm_access_memory,
1672 };
1673 
1674 /*
1675  * Firmware Reservation functions
1676  */
1677 /**
1678  * amdgpu_ttm_fw_reserve_vram_fini - free fw reserved vram
1679  *
1680  * @adev: amdgpu_device pointer
1681  *
1682  * free fw reserved vram if it has been reserved.
1683  */
1684 static void amdgpu_ttm_fw_reserve_vram_fini(struct amdgpu_device *adev)
1685 {
1686 	amdgpu_bo_free_kernel(&adev->mman.fw_vram_usage_reserved_bo,
1687 		NULL, &adev->mman.fw_vram_usage_va);
1688 }
1689 
1690 /*
1691  * Driver Reservation functions
1692  */
1693 /**
1694  * amdgpu_ttm_drv_reserve_vram_fini - free drv reserved vram
1695  *
1696  * @adev: amdgpu_device pointer
1697  *
1698  * free drv reserved vram if it has been reserved.
1699  */
1700 static void amdgpu_ttm_drv_reserve_vram_fini(struct amdgpu_device *adev)
1701 {
1702 	amdgpu_bo_free_kernel(&adev->mman.drv_vram_usage_reserved_bo,
1703 						  NULL,
1704 						  &adev->mman.drv_vram_usage_va);
1705 }
1706 
1707 /**
1708  * amdgpu_ttm_fw_reserve_vram_init - create bo vram reservation from fw
1709  *
1710  * @adev: amdgpu_device pointer
1711  *
1712  * create bo vram reservation from fw.
1713  */
1714 static int amdgpu_ttm_fw_reserve_vram_init(struct amdgpu_device *adev)
1715 {
1716 	uint64_t vram_size = adev->gmc.visible_vram_size;
1717 
1718 	adev->mman.fw_vram_usage_va = NULL;
1719 	adev->mman.fw_vram_usage_reserved_bo = NULL;
1720 
1721 	if (adev->mman.fw_vram_usage_size == 0 ||
1722 	    adev->mman.fw_vram_usage_size > vram_size)
1723 		return 0;
1724 
1725 	return amdgpu_bo_create_kernel_at(adev,
1726 					  adev->mman.fw_vram_usage_start_offset,
1727 					  adev->mman.fw_vram_usage_size,
1728 					  &adev->mman.fw_vram_usage_reserved_bo,
1729 					  &adev->mman.fw_vram_usage_va);
1730 }
1731 
1732 /**
1733  * amdgpu_ttm_drv_reserve_vram_init - create bo vram reservation from driver
1734  *
1735  * @adev: amdgpu_device pointer
1736  *
1737  * create bo vram reservation from drv.
1738  */
1739 static int amdgpu_ttm_drv_reserve_vram_init(struct amdgpu_device *adev)
1740 {
1741 	u64 vram_size = adev->gmc.visible_vram_size;
1742 
1743 	adev->mman.drv_vram_usage_va = NULL;
1744 	adev->mman.drv_vram_usage_reserved_bo = NULL;
1745 
1746 	if (adev->mman.drv_vram_usage_size == 0 ||
1747 	    adev->mman.drv_vram_usage_size > vram_size)
1748 		return 0;
1749 
1750 	return amdgpu_bo_create_kernel_at(adev,
1751 					  adev->mman.drv_vram_usage_start_offset,
1752 					  adev->mman.drv_vram_usage_size,
1753 					  &adev->mman.drv_vram_usage_reserved_bo,
1754 					  &adev->mman.drv_vram_usage_va);
1755 }
1756 
1757 /*
1758  * Memoy training reservation functions
1759  */
1760 
1761 /**
1762  * amdgpu_ttm_training_reserve_vram_fini - free memory training reserved vram
1763  *
1764  * @adev: amdgpu_device pointer
1765  *
1766  * free memory training reserved vram if it has been reserved.
1767  */
1768 static int amdgpu_ttm_training_reserve_vram_fini(struct amdgpu_device *adev)
1769 {
1770 	struct psp_memory_training_context *ctx = &adev->psp.mem_train_ctx;
1771 
1772 	ctx->init = PSP_MEM_TRAIN_NOT_SUPPORT;
1773 	amdgpu_bo_free_kernel(&ctx->c2p_bo, NULL, NULL);
1774 	ctx->c2p_bo = NULL;
1775 
1776 	return 0;
1777 }
1778 
1779 static void amdgpu_ttm_training_data_block_init(struct amdgpu_device *adev,
1780 						uint32_t reserve_size)
1781 {
1782 	struct psp_memory_training_context *ctx = &adev->psp.mem_train_ctx;
1783 
1784 	memset(ctx, 0, sizeof(*ctx));
1785 
1786 	ctx->c2p_train_data_offset =
1787 		ALIGN((adev->gmc.mc_vram_size - reserve_size - SZ_1M), SZ_1M);
1788 	ctx->p2c_train_data_offset =
1789 		(adev->gmc.mc_vram_size - GDDR6_MEM_TRAINING_OFFSET);
1790 	ctx->train_data_size =
1791 		GDDR6_MEM_TRAINING_DATA_SIZE_IN_BYTES;
1792 
1793 	DRM_DEBUG("train_data_size:%llx,p2c_train_data_offset:%llx,c2p_train_data_offset:%llx.\n",
1794 			ctx->train_data_size,
1795 			ctx->p2c_train_data_offset,
1796 			ctx->c2p_train_data_offset);
1797 }
1798 
1799 /*
1800  * reserve TMR memory at the top of VRAM which holds
1801  * IP Discovery data and is protected by PSP.
1802  */
1803 static int amdgpu_ttm_reserve_tmr(struct amdgpu_device *adev)
1804 {
1805 	struct psp_memory_training_context *ctx = &adev->psp.mem_train_ctx;
1806 	bool mem_train_support = false;
1807 	uint32_t reserve_size = 0;
1808 	int ret;
1809 
1810 	if (adev->bios && !amdgpu_sriov_vf(adev)) {
1811 		if (amdgpu_atomfirmware_mem_training_supported(adev))
1812 			mem_train_support = true;
1813 		else
1814 			DRM_DEBUG("memory training does not support!\n");
1815 	}
1816 
1817 	/*
1818 	 * Query reserved tmr size through atom firmwareinfo for Sienna_Cichlid and onwards for all
1819 	 * the use cases (IP discovery/G6 memory training/profiling/diagnostic data.etc)
1820 	 *
1821 	 * Otherwise, fallback to legacy approach to check and reserve tmr block for ip
1822 	 * discovery data and G6 memory training data respectively
1823 	 */
1824 	if (adev->bios)
1825 		reserve_size =
1826 			amdgpu_atomfirmware_get_fw_reserved_fb_size(adev);
1827 
1828 	if (!adev->bios &&
1829 	    (amdgpu_ip_version(adev, GC_HWIP, 0) == IP_VERSION(9, 4, 3) ||
1830 	     amdgpu_ip_version(adev, GC_HWIP, 0) == IP_VERSION(9, 4, 4) ||
1831 	     amdgpu_ip_version(adev, GC_HWIP, 0) == IP_VERSION(9, 5, 0)))
1832 		reserve_size = max(reserve_size, (uint32_t)280 << 20);
1833 	else if (!adev->bios &&
1834 		 amdgpu_ip_version(adev, GC_HWIP, 0) == IP_VERSION(12, 1, 0)) {
1835 		if (hweight32(adev->aid_mask) == 1)
1836 			reserve_size = max(reserve_size, (uint32_t)128 << 20);
1837 		else
1838 			reserve_size = max(reserve_size, (uint32_t)144 << 20);
1839 	} else if (!reserve_size)
1840 		reserve_size = DISCOVERY_TMR_OFFSET;
1841 
1842 	if (mem_train_support) {
1843 		/* reserve vram for mem train according to TMR location */
1844 		amdgpu_ttm_training_data_block_init(adev, reserve_size);
1845 		ret = amdgpu_bo_create_kernel_at(adev,
1846 						 ctx->c2p_train_data_offset,
1847 						 ctx->train_data_size,
1848 						 &ctx->c2p_bo,
1849 						 NULL);
1850 		if (ret) {
1851 			dev_err(adev->dev, "alloc c2p_bo failed(%d)!\n", ret);
1852 			amdgpu_ttm_training_reserve_vram_fini(adev);
1853 			return ret;
1854 		}
1855 		ctx->init = PSP_MEM_TRAIN_RESERVE_SUCCESS;
1856 	}
1857 
1858 	ret = amdgpu_bo_create_kernel_at(
1859 		adev, adev->gmc.real_vram_size - reserve_size, reserve_size,
1860 		&adev->mman.fw_reserved_memory, NULL);
1861 	if (ret) {
1862 		dev_err(adev->dev, "alloc tmr failed(%d)!\n", ret);
1863 		amdgpu_bo_free_kernel(&adev->mman.fw_reserved_memory, NULL,
1864 				      NULL);
1865 		return ret;
1866 	}
1867 
1868 	return 0;
1869 }
1870 
1871 static int amdgpu_ttm_pools_init(struct amdgpu_device *adev)
1872 {
1873 	int i;
1874 
1875 	if (!adev->gmc.is_app_apu || !adev->gmc.num_mem_partitions)
1876 		return 0;
1877 
1878 	adev->mman.ttm_pools = kzalloc_objs(*adev->mman.ttm_pools,
1879 					    adev->gmc.num_mem_partitions);
1880 	if (!adev->mman.ttm_pools)
1881 		return -ENOMEM;
1882 
1883 	for (i = 0; i < adev->gmc.num_mem_partitions; i++) {
1884 		ttm_pool_init(&adev->mman.ttm_pools[i], adev->dev,
1885 			      adev->gmc.mem_partitions[i].numa.node,
1886 			      TTM_ALLOCATION_POOL_BENEFICIAL_ORDER(get_order(SZ_2M)));
1887 	}
1888 	return 0;
1889 }
1890 
1891 static void amdgpu_ttm_pools_fini(struct amdgpu_device *adev)
1892 {
1893 	int i;
1894 
1895 	if (!adev->gmc.is_app_apu || !adev->mman.ttm_pools)
1896 		return;
1897 
1898 	for (i = 0; i < adev->gmc.num_mem_partitions; i++)
1899 		ttm_pool_fini(&adev->mman.ttm_pools[i]);
1900 
1901 	kfree(adev->mman.ttm_pools);
1902 	adev->mman.ttm_pools = NULL;
1903 }
1904 
1905 /**
1906  * amdgpu_ttm_alloc_mmio_remap_bo - Allocate the singleton MMIO_REMAP BO
1907  * @adev: amdgpu device
1908  *
1909  * Allocates a global BO with backing AMDGPU_PL_MMIO_REMAP when the
1910  * hardware exposes a remap base (adev->rmmio_remap.bus_addr) and the host
1911  * PAGE_SIZE is <= AMDGPU_GPU_PAGE_SIZE (4K). The BO is created as a regular
1912  * GEM object (amdgpu_bo_create).
1913  *
1914  * Return:
1915  *  * 0 on success or intentional skip (feature not present/unsupported)
1916  *  * negative errno on allocation failure
1917  */
1918 static int amdgpu_ttm_alloc_mmio_remap_bo(struct amdgpu_device *adev)
1919 {
1920 	struct ttm_operation_ctx ctx = { false, false };
1921 	struct ttm_placement placement;
1922 	struct ttm_buffer_object *tbo;
1923 	struct ttm_place placements;
1924 	struct amdgpu_bo_param bp;
1925 	struct ttm_resource *tmp;
1926 	int r;
1927 
1928 	/* Skip if HW doesn't expose remap, or if PAGE_SIZE > AMDGPU_GPU_PAGE_SIZE (4K). */
1929 	if (!adev->rmmio_remap.bus_addr || PAGE_SIZE > AMDGPU_GPU_PAGE_SIZE)
1930 		return 0;
1931 
1932 	/*
1933 	 * Allocate a BO first and then move it to AMDGPU_PL_MMIO_REMAP.
1934 	 * The initial TTM resource assigned by amdgpu_bo_create() is
1935 	 * replaced below with a fixed MMIO_REMAP placement.
1936 	 */
1937 	memset(&bp, 0, sizeof(bp));
1938 	bp.type        = ttm_bo_type_device;
1939 	bp.size        = AMDGPU_GPU_PAGE_SIZE;
1940 	bp.byte_align  = AMDGPU_GPU_PAGE_SIZE;
1941 	bp.domain      = 0;
1942 	bp.flags       = 0;
1943 	bp.resv        = NULL;
1944 	bp.bo_ptr_size = sizeof(struct amdgpu_bo);
1945 	r = amdgpu_bo_create(adev, &bp, &adev->rmmio_remap.bo);
1946 	if (r)
1947 		return r;
1948 
1949 	r = amdgpu_bo_reserve(adev->rmmio_remap.bo, true);
1950 	if (r)
1951 		goto err_unref;
1952 
1953 	tbo = &adev->rmmio_remap.bo->tbo;
1954 
1955 	/*
1956 	 * MMIO_REMAP is a fixed I/O placement (AMDGPU_PL_MMIO_REMAP).
1957 	 */
1958 	placement.num_placement = 1;
1959 	placement.placement = &placements;
1960 	placements.fpfn = 0;
1961 	placements.lpfn = 0;
1962 	placements.mem_type = AMDGPU_PL_MMIO_REMAP;
1963 	placements.flags = 0;
1964 	/* Force the BO into the fixed MMIO_REMAP placement */
1965 	r = ttm_bo_mem_space(tbo, &placement, &tmp, &ctx);
1966 	if (unlikely(r))
1967 		goto err_unlock;
1968 
1969 	ttm_resource_free(tbo, &tbo->resource);
1970 	ttm_bo_assign_mem(tbo, tmp);
1971 	ttm_bo_pin(tbo);
1972 
1973 	amdgpu_bo_unreserve(adev->rmmio_remap.bo);
1974 	return 0;
1975 
1976 err_unlock:
1977 	amdgpu_bo_unreserve(adev->rmmio_remap.bo);
1978 
1979 err_unref:
1980 	amdgpu_bo_unref(&adev->rmmio_remap.bo);
1981 	adev->rmmio_remap.bo = NULL;
1982 	return r;
1983 }
1984 
1985 /**
1986  * amdgpu_ttm_free_mmio_remap_bo - Free the singleton MMIO_REMAP BO
1987  * @adev: amdgpu device
1988  *
1989  * Frees the kernel-owned MMIO_REMAP BO if it was allocated by
1990  * amdgpu_ttm_mmio_remap_bo_init().
1991  */
1992 static void amdgpu_ttm_free_mmio_remap_bo(struct amdgpu_device *adev)
1993 {
1994 	if (!adev->rmmio_remap.bo)
1995 		return;
1996 
1997 	if (!amdgpu_bo_reserve(adev->rmmio_remap.bo, true)) {
1998 		ttm_bo_unpin(&adev->rmmio_remap.bo->tbo);
1999 		amdgpu_bo_unreserve(adev->rmmio_remap.bo);
2000 	}
2001 
2002     /*
2003      * At this point we rely on normal DRM teardown ordering:
2004      * no new user ioctls can access the global MMIO_REMAP BO
2005      * once TTM teardown begins.
2006      */
2007 	amdgpu_bo_unref(&adev->rmmio_remap.bo);
2008 	adev->rmmio_remap.bo = NULL;
2009 }
2010 
2011 static int amdgpu_ttm_buffer_entity_init(struct amdgpu_gtt_mgr *mgr,
2012 					 struct amdgpu_ttm_buffer_entity *entity,
2013 					 enum drm_sched_priority prio,
2014 					 struct drm_gpu_scheduler **scheds,
2015 					 int num_schedulers,
2016 					 u32 num_gart_windows)
2017 {
2018 	int i, r, num_pages;
2019 
2020 	r = drm_sched_entity_init(&entity->base, prio, scheds, num_schedulers, NULL);
2021 	if (r)
2022 		return r;
2023 
2024 	mutex_init(&entity->lock);
2025 
2026 	if (ARRAY_SIZE(entity->gart_window_offs) < num_gart_windows)
2027 		return -EINVAL;
2028 	if (num_gart_windows == 0)
2029 		return 0;
2030 
2031 	num_pages = num_gart_windows * AMDGPU_GTT_MAX_TRANSFER_SIZE;
2032 	r = amdgpu_gtt_mgr_alloc_entries(mgr, &entity->gart_node, num_pages,
2033 					 DRM_MM_INSERT_BEST);
2034 	if (r) {
2035 		drm_sched_entity_destroy(&entity->base);
2036 		return r;
2037 	}
2038 
2039 	for (i = 0; i < num_gart_windows; i++) {
2040 		entity->gart_window_offs[i] =
2041 			amdgpu_gtt_node_to_byte_offset(&entity->gart_node) +
2042 				i * AMDGPU_GTT_MAX_TRANSFER_SIZE * PAGE_SIZE;
2043 	}
2044 
2045 	return 0;
2046 }
2047 
2048 static void amdgpu_ttm_buffer_entity_fini(struct amdgpu_gtt_mgr *mgr,
2049 					  struct amdgpu_ttm_buffer_entity *entity)
2050 {
2051 	amdgpu_gtt_mgr_free_entries(mgr, &entity->gart_node);
2052 	drm_sched_entity_destroy(&entity->base);
2053 }
2054 
2055 /*
2056  * amdgpu_ttm_init - Init the memory management (ttm) as well as various
2057  * gtt/vram related fields.
2058  *
2059  * This initializes all of the memory space pools that the TTM layer
2060  * will need such as the GTT space (system memory mapped to the device),
2061  * VRAM (on-board memory), and on-chip memories (GDS, GWS, OA) which
2062  * can be mapped per VMID.
2063  */
2064 int amdgpu_ttm_init(struct amdgpu_device *adev)
2065 {
2066 	uint64_t gtt_size;
2067 	int r;
2068 
2069 	dma_set_max_seg_size(adev->dev, UINT_MAX);
2070 	/* No others user of address space so set it to 0 */
2071 	r = ttm_device_init(&adev->mman.bdev, &amdgpu_bo_driver, adev->dev,
2072 			       adev_to_drm(adev)->anon_inode->i_mapping,
2073 			       adev_to_drm(adev)->vma_offset_manager,
2074 			       (adev->need_swiotlb ?
2075 				TTM_ALLOCATION_POOL_USE_DMA_ALLOC : 0) |
2076 			       (dma_addressing_limited(adev->dev) ?
2077 				TTM_ALLOCATION_POOL_USE_DMA32 : 0) |
2078 			       TTM_ALLOCATION_POOL_BENEFICIAL_ORDER(get_order(SZ_2M)));
2079 	if (r) {
2080 		dev_err(adev->dev,
2081 			"failed initializing buffer object driver(%d).\n", r);
2082 		return r;
2083 	}
2084 
2085 	r = amdgpu_ttm_pools_init(adev);
2086 	if (r) {
2087 		dev_err(adev->dev, "failed to init ttm pools(%d).\n", r);
2088 		return r;
2089 	}
2090 	adev->mman.initialized = true;
2091 
2092 	if (!adev->gmc.is_app_apu) {
2093 		/* Initialize VRAM pool with all of VRAM divided into pages */
2094 		r = amdgpu_vram_mgr_init(adev);
2095 		if (r) {
2096 			dev_err(adev->dev, "Failed initializing VRAM heap.\n");
2097 			return r;
2098 		}
2099 	}
2100 
2101 	/* Change the size here instead of the init above so only lpfn is affected */
2102 	amdgpu_ttm_set_buffer_funcs_status(adev, false);
2103 #ifdef CONFIG_64BIT
2104 #ifdef CONFIG_X86
2105 	if (adev->gmc.xgmi.connected_to_cpu)
2106 		adev->mman.aper_base_kaddr = ioremap_cache(adev->gmc.aper_base,
2107 				adev->gmc.visible_vram_size);
2108 
2109 	else if (adev->gmc.is_app_apu)
2110 		DRM_DEBUG_DRIVER(
2111 			"No need to ioremap when real vram size is 0\n");
2112 	else
2113 #endif
2114 		adev->mman.aper_base_kaddr = ioremap_wc(adev->gmc.aper_base,
2115 				adev->gmc.visible_vram_size);
2116 #endif
2117 
2118 	/*
2119 	 *The reserved vram for firmware must be pinned to the specified
2120 	 *place on the VRAM, so reserve it early.
2121 	 */
2122 	r = amdgpu_ttm_fw_reserve_vram_init(adev);
2123 	if (r)
2124 		return r;
2125 
2126 	/*
2127 	 * The reserved VRAM for the driver must be pinned to a specific
2128 	 * location in VRAM, so reserve it early.
2129 	 */
2130 	r = amdgpu_ttm_drv_reserve_vram_init(adev);
2131 	if (r)
2132 		return r;
2133 
2134 	/*
2135 	 * only NAVI10 and later ASICs support IP discovery.
2136 	 * If IP discovery is enabled, a block of memory should be
2137 	 * reserved for it.
2138 	 */
2139 	if (adev->discovery.reserve_tmr) {
2140 		r = amdgpu_ttm_reserve_tmr(adev);
2141 		if (r)
2142 			return r;
2143 	}
2144 
2145 	/* allocate memory as required for VGA
2146 	 * This is used for VGA emulation and pre-OS scanout buffers to
2147 	 * avoid display artifacts while transitioning between pre-OS
2148 	 * and driver.
2149 	 */
2150 	if (!adev->gmc.is_app_apu) {
2151 		r = amdgpu_bo_create_kernel_at(adev, 0,
2152 					       adev->mman.stolen_vga_size,
2153 					       &adev->mman.stolen_vga_memory,
2154 					       NULL);
2155 		if (r)
2156 			return r;
2157 
2158 		r = amdgpu_bo_create_kernel_at(adev, adev->mman.stolen_vga_size,
2159 					       adev->mman.stolen_extended_size,
2160 					       &adev->mman.stolen_extended_memory,
2161 					       NULL);
2162 
2163 		if (r)
2164 			return r;
2165 
2166 		r = amdgpu_bo_create_kernel_at(adev,
2167 					       adev->mman.stolen_reserved_offset,
2168 					       adev->mman.stolen_reserved_size,
2169 					       &adev->mman.stolen_reserved_memory,
2170 					       NULL);
2171 		if (r)
2172 			return r;
2173 	} else {
2174 		DRM_DEBUG_DRIVER("Skipped stolen memory reservation\n");
2175 	}
2176 
2177 	dev_info(adev->dev, " %uM of VRAM memory ready\n",
2178 		 (unsigned int)(adev->gmc.real_vram_size / (1024 * 1024)));
2179 
2180 	/* Compute GTT size, either based on TTM limit
2181 	 * or whatever the user passed on module init.
2182 	 */
2183 	gtt_size = ttm_tt_pages_limit() << PAGE_SHIFT;
2184 	if (amdgpu_gtt_size != -1) {
2185 		uint64_t configured_size = (uint64_t)amdgpu_gtt_size << 20;
2186 
2187 		drm_warn(&adev->ddev,
2188 			"Configuring gttsize via module parameter is deprecated, please use ttm.pages_limit\n");
2189 		if (gtt_size != configured_size)
2190 			drm_warn(&adev->ddev,
2191 				"GTT size has been set as %llu but TTM size has been set as %llu, this is unusual\n",
2192 				configured_size, gtt_size);
2193 
2194 		gtt_size = configured_size;
2195 	}
2196 
2197 	/* Initialize GTT memory pool */
2198 	r = amdgpu_gtt_mgr_init(adev, gtt_size);
2199 	if (r) {
2200 		dev_err(adev->dev, "Failed initializing GTT heap.\n");
2201 		return r;
2202 	}
2203 	dev_info(adev->dev, " %uM of GTT memory ready.\n",
2204 		 (unsigned int)(gtt_size / (1024 * 1024)));
2205 
2206 	if (adev->flags & AMD_IS_APU) {
2207 		if (adev->gmc.real_vram_size < gtt_size)
2208 			adev->apu_prefer_gtt = true;
2209 	}
2210 
2211 	/* Initialize doorbell pool on PCI BAR */
2212 	r = amdgpu_ttm_init_on_chip(adev, AMDGPU_PL_DOORBELL, adev->doorbell.size / PAGE_SIZE);
2213 	if (r) {
2214 		dev_err(adev->dev, "Failed initializing doorbell heap.\n");
2215 		return r;
2216 	}
2217 
2218 	/* Create a boorbell page for kernel usages */
2219 	r = amdgpu_doorbell_create_kernel_doorbells(adev);
2220 	if (r) {
2221 		dev_err(adev->dev, "Failed to initialize kernel doorbells.\n");
2222 		return r;
2223 	}
2224 
2225 	/* Initialize MMIO-remap pool (single page 4K) */
2226 	r = amdgpu_ttm_init_on_chip(adev, AMDGPU_PL_MMIO_REMAP, 1);
2227 	if (r) {
2228 		dev_err(adev->dev, "Failed initializing MMIO-remap heap.\n");
2229 		return r;
2230 	}
2231 
2232 	/* Allocate the singleton MMIO_REMAP BO if supported */
2233 	r = amdgpu_ttm_alloc_mmio_remap_bo(adev);
2234 	if (r)
2235 		return r;
2236 
2237 	/* Initialize preemptible memory pool */
2238 	r = amdgpu_preempt_mgr_init(adev);
2239 	if (r) {
2240 		dev_err(adev->dev, "Failed initializing PREEMPT heap.\n");
2241 		return r;
2242 	}
2243 
2244 	/* Initialize various on-chip memory pools */
2245 	r = amdgpu_ttm_init_on_chip(adev, AMDGPU_PL_GDS, adev->gds.gds_size);
2246 	if (r) {
2247 		dev_err(adev->dev, "Failed initializing GDS heap.\n");
2248 		return r;
2249 	}
2250 
2251 	r = amdgpu_ttm_init_on_chip(adev, AMDGPU_PL_GWS, adev->gds.gws_size);
2252 	if (r) {
2253 		dev_err(adev->dev, "Failed initializing gws heap.\n");
2254 		return r;
2255 	}
2256 
2257 	r = amdgpu_ttm_init_on_chip(adev, AMDGPU_PL_OA, adev->gds.oa_size);
2258 	if (r) {
2259 		dev_err(adev->dev, "Failed initializing oa heap.\n");
2260 		return r;
2261 	}
2262 	if (amdgpu_bo_create_kernel(adev, PAGE_SIZE, PAGE_SIZE,
2263 				AMDGPU_GEM_DOMAIN_GTT,
2264 				&adev->mman.sdma_access_bo, NULL,
2265 				&adev->mman.sdma_access_ptr))
2266 		drm_warn(adev_to_drm(adev),
2267 				"Debug VRAM access will use slowpath MM access\n");
2268 
2269 	return 0;
2270 }
2271 
2272 /*
2273  * amdgpu_ttm_fini - De-initialize the TTM memory pools
2274  */
2275 void amdgpu_ttm_fini(struct amdgpu_device *adev)
2276 {
2277 	int idx;
2278 
2279 	if (!adev->mman.initialized)
2280 		return;
2281 
2282 	amdgpu_ttm_pools_fini(adev);
2283 
2284 	amdgpu_ttm_training_reserve_vram_fini(adev);
2285 	/* return the stolen vga memory back to VRAM */
2286 	if (!adev->gmc.is_app_apu) {
2287 		amdgpu_bo_free_kernel(&adev->mman.stolen_vga_memory, NULL, NULL);
2288 		amdgpu_bo_free_kernel(&adev->mman.stolen_extended_memory, NULL, NULL);
2289 		/* return the FW reserved memory back to VRAM */
2290 		amdgpu_bo_free_kernel(&adev->mman.fw_reserved_memory, NULL,
2291 				      NULL);
2292 		amdgpu_bo_free_kernel(&adev->mman.fw_reserved_memory_extend, NULL,
2293 				      NULL);
2294 		if (adev->mman.stolen_reserved_size)
2295 			amdgpu_bo_free_kernel(&adev->mman.stolen_reserved_memory,
2296 					      NULL, NULL);
2297 	}
2298 	amdgpu_bo_free_kernel(&adev->mman.sdma_access_bo, NULL,
2299 					&adev->mman.sdma_access_ptr);
2300 
2301 	amdgpu_ttm_free_mmio_remap_bo(adev);
2302 	amdgpu_ttm_fw_reserve_vram_fini(adev);
2303 	amdgpu_ttm_drv_reserve_vram_fini(adev);
2304 
2305 	if (drm_dev_enter(adev_to_drm(adev), &idx)) {
2306 
2307 		if (adev->mman.aper_base_kaddr)
2308 			iounmap(adev->mman.aper_base_kaddr);
2309 		adev->mman.aper_base_kaddr = NULL;
2310 
2311 		drm_dev_exit(idx);
2312 	}
2313 
2314 	if (!adev->gmc.is_app_apu)
2315 		amdgpu_vram_mgr_fini(adev);
2316 	amdgpu_gtt_mgr_fini(adev);
2317 	amdgpu_preempt_mgr_fini(adev);
2318 	amdgpu_doorbell_fini(adev);
2319 
2320 	ttm_range_man_fini(&adev->mman.bdev, AMDGPU_PL_GDS);
2321 	ttm_range_man_fini(&adev->mman.bdev, AMDGPU_PL_GWS);
2322 	ttm_range_man_fini(&adev->mman.bdev, AMDGPU_PL_OA);
2323 	ttm_range_man_fini(&adev->mman.bdev, AMDGPU_PL_DOORBELL);
2324 	ttm_range_man_fini(&adev->mman.bdev, AMDGPU_PL_MMIO_REMAP);
2325 	ttm_device_fini(&adev->mman.bdev);
2326 	adev->mman.initialized = false;
2327 	dev_info(adev->dev, " ttm finalized\n");
2328 }
2329 
2330 /**
2331  * amdgpu_ttm_set_buffer_funcs_status - enable/disable use of buffer functions
2332  *
2333  * @adev: amdgpu_device pointer
2334  * @enable: true when we can use buffer functions.
2335  *
2336  * Enable/disable use of buffer functions during suspend/resume. This should
2337  * only be called at bootup or when userspace isn't running.
2338  */
2339 void amdgpu_ttm_set_buffer_funcs_status(struct amdgpu_device *adev, bool enable)
2340 {
2341 	struct ttm_resource_manager *man = ttm_manager_type(&adev->mman.bdev, TTM_PL_VRAM);
2342 	u32 num_clear_entities, num_move_entities;
2343 	uint64_t size;
2344 	int r, i, j;
2345 
2346 	if (!adev->mman.initialized || amdgpu_in_reset(adev) ||
2347 	    adev->mman.buffer_funcs_enabled == enable || adev->gmc.is_app_apu)
2348 		return;
2349 
2350 	if (enable) {
2351 		struct amdgpu_ring *ring;
2352 		struct drm_gpu_scheduler *sched;
2353 
2354 		if (!adev->mman.buffer_funcs_ring || !adev->mman.buffer_funcs_ring->sched.ready) {
2355 			dev_warn(adev->dev, "Not enabling DMA transfers for in kernel use");
2356 			return;
2357 		}
2358 
2359 		num_clear_entities = 1;
2360 		num_move_entities = 1;
2361 		ring = adev->mman.buffer_funcs_ring;
2362 		sched = &ring->sched;
2363 		r = amdgpu_ttm_buffer_entity_init(&adev->mman.gtt_mgr,
2364 						  &adev->mman.default_entity,
2365 						  DRM_SCHED_PRIORITY_KERNEL,
2366 						  &sched, 1, 0);
2367 		if (r < 0) {
2368 			dev_err(adev->dev,
2369 				"Failed setting up TTM entity (%d)\n", r);
2370 			return;
2371 		}
2372 
2373 		adev->mman.clear_entities = kcalloc(num_clear_entities,
2374 						    sizeof(struct amdgpu_ttm_buffer_entity),
2375 						    GFP_KERNEL);
2376 		atomic_set(&adev->mman.next_clear_entity, 0);
2377 		if (!adev->mman.clear_entities)
2378 			goto error_free_default_entity;
2379 
2380 		adev->mman.num_clear_entities = num_clear_entities;
2381 
2382 		for (i = 0; i < num_clear_entities; i++) {
2383 			r = amdgpu_ttm_buffer_entity_init(
2384 				&adev->mman.gtt_mgr, &adev->mman.clear_entities[i],
2385 				DRM_SCHED_PRIORITY_NORMAL, &sched, 1, 1);
2386 
2387 			if (r < 0) {
2388 				for (j = 0; j < i; j++)
2389 					amdgpu_ttm_buffer_entity_fini(
2390 						&adev->mman.gtt_mgr, &adev->mman.clear_entities[j]);
2391 				kfree(adev->mman.clear_entities);
2392 				adev->mman.num_clear_entities = 0;
2393 				adev->mman.clear_entities = NULL;
2394 				goto error_free_default_entity;
2395 			}
2396 		}
2397 
2398 		adev->mman.num_move_entities = num_move_entities;
2399 		atomic_set(&adev->mman.next_move_entity, 0);
2400 		for (i = 0; i < num_move_entities; i++) {
2401 			r = amdgpu_ttm_buffer_entity_init(
2402 				&adev->mman.gtt_mgr,
2403 				&adev->mman.move_entities[i],
2404 				DRM_SCHED_PRIORITY_NORMAL, &sched, 1, 2);
2405 
2406 			if (r < 0) {
2407 				for (j = 0; j < i; j++)
2408 					amdgpu_ttm_buffer_entity_fini(
2409 						&adev->mman.gtt_mgr, &adev->mman.move_entities[j]);
2410 				adev->mman.num_move_entities = 0;
2411 				goto error_free_clear_entities;
2412 			}
2413 		}
2414 	} else {
2415 		amdgpu_ttm_buffer_entity_fini(&adev->mman.gtt_mgr,
2416 					      &adev->mman.default_entity);
2417 		for (i = 0; i < adev->mman.num_clear_entities; i++)
2418 			amdgpu_ttm_buffer_entity_fini(&adev->mman.gtt_mgr,
2419 						      &adev->mman.clear_entities[i]);
2420 		for (i = 0; i < adev->mman.num_move_entities; i++)
2421 			amdgpu_ttm_buffer_entity_fini(&adev->mman.gtt_mgr,
2422 						      &adev->mman.move_entities[i]);
2423 		/* Drop all the old fences since re-creating the scheduler entities
2424 		 * will allocate new contexts.
2425 		 */
2426 		ttm_resource_manager_cleanup(man);
2427 		kfree(adev->mman.clear_entities);
2428 		adev->mman.clear_entities = NULL;
2429 		adev->mman.num_clear_entities = 0;
2430 		adev->mman.num_move_entities = 0;
2431 	}
2432 
2433 	/* this just adjusts TTM size idea, which sets lpfn to the correct value */
2434 	if (enable)
2435 		size = adev->gmc.real_vram_size;
2436 	else
2437 		size = adev->gmc.visible_vram_size;
2438 	man->size = size;
2439 	adev->mman.buffer_funcs_enabled = enable;
2440 
2441 	return;
2442 
2443 error_free_clear_entities:
2444 	for (i = 0; i < adev->mman.num_clear_entities; i++)
2445 		amdgpu_ttm_buffer_entity_fini(&adev->mman.gtt_mgr,
2446 					      &adev->mman.clear_entities[i]);
2447 	kfree(adev->mman.clear_entities);
2448 	adev->mman.clear_entities = NULL;
2449 	adev->mman.num_clear_entities = 0;
2450 error_free_default_entity:
2451 	amdgpu_ttm_buffer_entity_fini(&adev->mman.gtt_mgr,
2452 				      &adev->mman.default_entity);
2453 }
2454 
2455 static int amdgpu_ttm_prepare_job(struct amdgpu_device *adev,
2456 				  struct amdgpu_ttm_buffer_entity *entity,
2457 				  unsigned int num_dw,
2458 				  struct dma_resv *resv,
2459 				  bool vm_needs_flush,
2460 				  struct amdgpu_job **job,
2461 				  u64 k_job_id)
2462 {
2463 	enum amdgpu_ib_pool_type pool = AMDGPU_IB_POOL_DELAYED;
2464 	int r;
2465 	r = amdgpu_job_alloc_with_ib(adev, &entity->base,
2466 				     AMDGPU_FENCE_OWNER_UNDEFINED,
2467 				     num_dw * 4, pool, job, k_job_id);
2468 	if (r)
2469 		return r;
2470 
2471 	if (vm_needs_flush) {
2472 		(*job)->vm_pd_addr = amdgpu_gmc_pd_addr(adev->gmc.pdb0_bo ?
2473 							adev->gmc.pdb0_bo :
2474 							adev->gart.bo);
2475 		(*job)->vm_needs_flush = true;
2476 	}
2477 	if (!resv)
2478 		return 0;
2479 
2480 	return drm_sched_job_add_resv_dependencies(&(*job)->base, resv,
2481 						   DMA_RESV_USAGE_BOOKKEEP);
2482 }
2483 
2484 int amdgpu_copy_buffer(struct amdgpu_device *adev,
2485 		       struct amdgpu_ttm_buffer_entity *entity,
2486 		       uint64_t src_offset,
2487 		       uint64_t dst_offset, uint32_t byte_count,
2488 		       struct dma_resv *resv,
2489 		       struct dma_fence **fence,
2490 		       bool vm_needs_flush, uint32_t copy_flags)
2491 {
2492 	unsigned int num_loops, num_dw;
2493 	struct amdgpu_ring *ring;
2494 	struct amdgpu_job *job;
2495 	uint32_t max_bytes;
2496 	unsigned int i;
2497 	int r;
2498 
2499 	ring = adev->mman.buffer_funcs_ring;
2500 
2501 	if (!ring->sched.ready) {
2502 		dev_err(adev->dev,
2503 			"Trying to move memory with ring turned off.\n");
2504 		return -EINVAL;
2505 	}
2506 
2507 	max_bytes = adev->mman.buffer_funcs->copy_max_bytes;
2508 	num_loops = DIV_ROUND_UP(byte_count, max_bytes);
2509 	num_dw = ALIGN(num_loops * adev->mman.buffer_funcs->copy_num_dw, 8);
2510 	r = amdgpu_ttm_prepare_job(adev, entity, num_dw,
2511 				   resv, vm_needs_flush, &job,
2512 				   AMDGPU_KERNEL_JOB_ID_TTM_COPY_BUFFER);
2513 	if (r)
2514 		goto error_free;
2515 
2516 	for (i = 0; i < num_loops; i++) {
2517 		uint32_t cur_size_in_bytes = min(byte_count, max_bytes);
2518 
2519 		amdgpu_emit_copy_buffer(adev, &job->ibs[0], src_offset,
2520 					dst_offset, cur_size_in_bytes, copy_flags);
2521 		src_offset += cur_size_in_bytes;
2522 		dst_offset += cur_size_in_bytes;
2523 		byte_count -= cur_size_in_bytes;
2524 	}
2525 
2526 	*fence = amdgpu_ttm_job_submit(adev, entity, job, num_dw);
2527 
2528 	return 0;
2529 
2530 error_free:
2531 	amdgpu_job_free(job);
2532 	dev_err(adev->dev, "Error scheduling IBs (%d)\n", r);
2533 	return r;
2534 }
2535 
2536 static int amdgpu_ttm_fill_mem(struct amdgpu_device *adev,
2537 			       struct amdgpu_ttm_buffer_entity *entity,
2538 			       uint32_t src_data,
2539 			       uint64_t dst_addr, uint32_t byte_count,
2540 			       struct dma_resv *resv,
2541 			       struct dma_fence **fence,
2542 			       bool vm_needs_flush,
2543 			       u64 k_job_id)
2544 {
2545 	unsigned int num_loops, num_dw;
2546 	struct amdgpu_job *job;
2547 	uint32_t max_bytes;
2548 	unsigned int i;
2549 	int r;
2550 
2551 	max_bytes = adev->mman.buffer_funcs->fill_max_bytes;
2552 	num_loops = DIV_ROUND_UP_ULL(byte_count, max_bytes);
2553 	num_dw = ALIGN(num_loops * adev->mman.buffer_funcs->fill_num_dw, 8);
2554 	r = amdgpu_ttm_prepare_job(adev, entity, num_dw, resv,
2555 				   vm_needs_flush, &job, k_job_id);
2556 	if (r)
2557 		return r;
2558 
2559 	for (i = 0; i < num_loops; i++) {
2560 		uint32_t cur_size = min(byte_count, max_bytes);
2561 
2562 		amdgpu_emit_fill_buffer(adev, &job->ibs[0], src_data, dst_addr,
2563 					cur_size);
2564 
2565 		dst_addr += cur_size;
2566 		byte_count -= cur_size;
2567 	}
2568 
2569 	*fence = amdgpu_ttm_job_submit(adev, entity, job, num_dw);
2570 	return 0;
2571 }
2572 
2573 /**
2574  * amdgpu_ttm_clear_buffer - clear memory buffers
2575  * @bo: amdgpu buffer object
2576  * @resv: reservation object
2577  * @fence: dma_fence associated with the operation
2578  *
2579  * Clear the memory buffer resource.
2580  *
2581  * Returns:
2582  * 0 for success or a negative error code on failure.
2583  */
2584 int amdgpu_ttm_clear_buffer(struct amdgpu_bo *bo,
2585 			    struct dma_resv *resv,
2586 			    struct dma_fence **fence)
2587 {
2588 	struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
2589 	struct amdgpu_ttm_buffer_entity *entity;
2590 	struct amdgpu_res_cursor cursor;
2591 	u64 addr;
2592 	int r = 0;
2593 
2594 	if (!adev->mman.buffer_funcs_enabled)
2595 		return -EINVAL;
2596 
2597 	if (!fence)
2598 		return -EINVAL;
2599 	entity = &adev->mman.clear_entities[0];
2600 	*fence = dma_fence_get_stub();
2601 
2602 	amdgpu_res_first(bo->tbo.resource, 0, amdgpu_bo_size(bo), &cursor);
2603 
2604 	mutex_lock(&entity->lock);
2605 	while (cursor.remaining) {
2606 		struct dma_fence *next = NULL;
2607 		u64 size;
2608 
2609 		if (amdgpu_res_cleared(&cursor)) {
2610 			amdgpu_res_next(&cursor, cursor.size);
2611 			continue;
2612 		}
2613 
2614 		/* Never clear more than 256MiB at once to avoid timeouts */
2615 		size = min(cursor.size, 256ULL << 20);
2616 
2617 		r = amdgpu_ttm_map_buffer(entity, &bo->tbo, bo->tbo.resource, &cursor,
2618 					  0, false, &size, &addr);
2619 		if (r)
2620 			goto err;
2621 
2622 		r = amdgpu_ttm_fill_mem(adev, entity, 0, addr, size, resv,
2623 					&next, true,
2624 					AMDGPU_KERNEL_JOB_ID_TTM_CLEAR_BUFFER);
2625 		if (r)
2626 			goto err;
2627 
2628 		dma_fence_put(*fence);
2629 		*fence = next;
2630 
2631 		amdgpu_res_next(&cursor, size);
2632 	}
2633 err:
2634 	mutex_unlock(&entity->lock);
2635 
2636 	return r;
2637 }
2638 
2639 int amdgpu_fill_buffer(struct amdgpu_ttm_buffer_entity *entity,
2640 		       struct amdgpu_bo *bo,
2641 		       uint32_t src_data,
2642 		       struct dma_resv *resv,
2643 		       struct dma_fence **f,
2644 		       u64 k_job_id)
2645 {
2646 	struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
2647 	struct dma_fence *fence = NULL;
2648 	struct amdgpu_res_cursor dst;
2649 	int r;
2650 
2651 	if (!entity)
2652 		return -EINVAL;
2653 
2654 	amdgpu_res_first(bo->tbo.resource, 0, amdgpu_bo_size(bo), &dst);
2655 
2656 	mutex_lock(&entity->lock);
2657 	while (dst.remaining) {
2658 		struct dma_fence *next;
2659 		uint64_t cur_size, to;
2660 
2661 		/* Never fill more than 256MiB at once to avoid timeouts */
2662 		cur_size = min(dst.size, 256ULL << 20);
2663 
2664 		r = amdgpu_ttm_map_buffer(entity, &bo->tbo, bo->tbo.resource, &dst,
2665 					  0, false, &cur_size, &to);
2666 		if (r)
2667 			goto error;
2668 
2669 		r = amdgpu_ttm_fill_mem(adev, entity,
2670 					src_data, to, cur_size, resv,
2671 					&next, true, k_job_id);
2672 		if (r)
2673 			goto error;
2674 
2675 		dma_fence_put(fence);
2676 		fence = next;
2677 
2678 		amdgpu_res_next(&dst, cur_size);
2679 	}
2680 error:
2681 	mutex_unlock(&entity->lock);
2682 	if (f)
2683 		*f = dma_fence_get(fence);
2684 	dma_fence_put(fence);
2685 	return r;
2686 }
2687 
2688 struct amdgpu_ttm_buffer_entity *
2689 amdgpu_ttm_next_clear_entity(struct amdgpu_device *adev)
2690 {
2691 	struct amdgpu_mman *mman = &adev->mman;
2692 	u32 i;
2693 
2694 	if (mman->num_clear_entities == 0)
2695 		return NULL;
2696 
2697 	i = atomic_inc_return(&mman->next_clear_entity) %
2698 			      mman->num_clear_entities;
2699 	return &mman->clear_entities[i];
2700 }
2701 
2702 /**
2703  * amdgpu_ttm_evict_resources - evict memory buffers
2704  * @adev: amdgpu device object
2705  * @mem_type: evicted BO's memory type
2706  *
2707  * Evicts all @mem_type buffers on the lru list of the memory type.
2708  *
2709  * Returns:
2710  * 0 for success or a negative error code on failure.
2711  */
2712 int amdgpu_ttm_evict_resources(struct amdgpu_device *adev, int mem_type)
2713 {
2714 	struct ttm_resource_manager *man;
2715 
2716 	switch (mem_type) {
2717 	case TTM_PL_VRAM:
2718 	case TTM_PL_TT:
2719 	case AMDGPU_PL_GWS:
2720 	case AMDGPU_PL_GDS:
2721 	case AMDGPU_PL_OA:
2722 		man = ttm_manager_type(&adev->mman.bdev, mem_type);
2723 		break;
2724 	default:
2725 		dev_err(adev->dev, "Trying to evict invalid memory type\n");
2726 		return -EINVAL;
2727 	}
2728 
2729 	return ttm_resource_manager_evict_all(&adev->mman.bdev, man);
2730 }
2731 
2732 #if defined(CONFIG_DEBUG_FS)
2733 
2734 static int amdgpu_ttm_page_pool_show(struct seq_file *m, void *unused)
2735 {
2736 	struct amdgpu_device *adev = m->private;
2737 
2738 	return ttm_pool_debugfs(&adev->mman.bdev.pool, m);
2739 }
2740 
2741 DEFINE_SHOW_ATTRIBUTE(amdgpu_ttm_page_pool);
2742 
2743 /*
2744  * amdgpu_ttm_vram_read - Linear read access to VRAM
2745  *
2746  * Accesses VRAM via MMIO for debugging purposes.
2747  */
2748 static ssize_t amdgpu_ttm_vram_read(struct file *f, char __user *buf,
2749 				    size_t size, loff_t *pos)
2750 {
2751 	struct amdgpu_device *adev = file_inode(f)->i_private;
2752 	ssize_t result = 0;
2753 
2754 	if (size & 0x3 || *pos & 0x3)
2755 		return -EINVAL;
2756 
2757 	if (*pos >= adev->gmc.mc_vram_size)
2758 		return -ENXIO;
2759 
2760 	size = min(size, (size_t)(adev->gmc.mc_vram_size - *pos));
2761 	while (size) {
2762 		size_t bytes = min(size, AMDGPU_TTM_VRAM_MAX_DW_READ * 4);
2763 		uint32_t value[AMDGPU_TTM_VRAM_MAX_DW_READ];
2764 
2765 		amdgpu_device_vram_access(adev, *pos, value, bytes, false);
2766 		if (copy_to_user(buf, value, bytes))
2767 			return -EFAULT;
2768 
2769 		result += bytes;
2770 		buf += bytes;
2771 		*pos += bytes;
2772 		size -= bytes;
2773 	}
2774 
2775 	return result;
2776 }
2777 
2778 /*
2779  * amdgpu_ttm_vram_write - Linear write access to VRAM
2780  *
2781  * Accesses VRAM via MMIO for debugging purposes.
2782  */
2783 static ssize_t amdgpu_ttm_vram_write(struct file *f, const char __user *buf,
2784 				    size_t size, loff_t *pos)
2785 {
2786 	struct amdgpu_device *adev = file_inode(f)->i_private;
2787 	ssize_t result = 0;
2788 	int r;
2789 
2790 	if (size & 0x3 || *pos & 0x3)
2791 		return -EINVAL;
2792 
2793 	if (*pos >= adev->gmc.mc_vram_size)
2794 		return -ENXIO;
2795 
2796 	while (size) {
2797 		uint32_t value;
2798 
2799 		if (*pos >= adev->gmc.mc_vram_size)
2800 			return result;
2801 
2802 		r = get_user(value, (uint32_t *)buf);
2803 		if (r)
2804 			return r;
2805 
2806 		amdgpu_device_mm_access(adev, *pos, &value, 4, true);
2807 
2808 		result += 4;
2809 		buf += 4;
2810 		*pos += 4;
2811 		size -= 4;
2812 	}
2813 
2814 	return result;
2815 }
2816 
2817 static const struct file_operations amdgpu_ttm_vram_fops = {
2818 	.owner = THIS_MODULE,
2819 	.read = amdgpu_ttm_vram_read,
2820 	.write = amdgpu_ttm_vram_write,
2821 	.llseek = default_llseek,
2822 };
2823 
2824 /*
2825  * amdgpu_iomem_read - Virtual read access to GPU mapped memory
2826  *
2827  * This function is used to read memory that has been mapped to the
2828  * GPU and the known addresses are not physical addresses but instead
2829  * bus addresses (e.g., what you'd put in an IB or ring buffer).
2830  */
2831 static ssize_t amdgpu_iomem_read(struct file *f, char __user *buf,
2832 				 size_t size, loff_t *pos)
2833 {
2834 	struct amdgpu_device *adev = file_inode(f)->i_private;
2835 	struct iommu_domain *dom;
2836 	ssize_t result = 0;
2837 	int r;
2838 
2839 	/* retrieve the IOMMU domain if any for this device */
2840 	dom = iommu_get_domain_for_dev(adev->dev);
2841 
2842 	while (size) {
2843 		phys_addr_t addr = *pos & PAGE_MASK;
2844 		loff_t off = *pos & ~PAGE_MASK;
2845 		size_t bytes = PAGE_SIZE - off;
2846 		unsigned long pfn;
2847 		struct page *p;
2848 		void *ptr;
2849 
2850 		bytes = min(bytes, size);
2851 
2852 		/* Translate the bus address to a physical address.  If
2853 		 * the domain is NULL it means there is no IOMMU active
2854 		 * and the address translation is the identity
2855 		 */
2856 		addr = dom ? iommu_iova_to_phys(dom, addr) : addr;
2857 
2858 		pfn = addr >> PAGE_SHIFT;
2859 		if (!pfn_valid(pfn))
2860 			return -EPERM;
2861 
2862 		p = pfn_to_page(pfn);
2863 		if (p->mapping != adev->mman.bdev.dev_mapping)
2864 			return -EPERM;
2865 
2866 		ptr = kmap_local_page(p);
2867 		r = copy_to_user(buf, ptr + off, bytes);
2868 		kunmap_local(ptr);
2869 		if (r)
2870 			return -EFAULT;
2871 
2872 		size -= bytes;
2873 		*pos += bytes;
2874 		result += bytes;
2875 	}
2876 
2877 	return result;
2878 }
2879 
2880 /*
2881  * amdgpu_iomem_write - Virtual write access to GPU mapped memory
2882  *
2883  * This function is used to write memory that has been mapped to the
2884  * GPU and the known addresses are not physical addresses but instead
2885  * bus addresses (e.g., what you'd put in an IB or ring buffer).
2886  */
2887 static ssize_t amdgpu_iomem_write(struct file *f, const char __user *buf,
2888 				 size_t size, loff_t *pos)
2889 {
2890 	struct amdgpu_device *adev = file_inode(f)->i_private;
2891 	struct iommu_domain *dom;
2892 	ssize_t result = 0;
2893 	int r;
2894 
2895 	dom = iommu_get_domain_for_dev(adev->dev);
2896 
2897 	while (size) {
2898 		phys_addr_t addr = *pos & PAGE_MASK;
2899 		loff_t off = *pos & ~PAGE_MASK;
2900 		size_t bytes = PAGE_SIZE - off;
2901 		unsigned long pfn;
2902 		struct page *p;
2903 		void *ptr;
2904 
2905 		bytes = min(bytes, size);
2906 
2907 		addr = dom ? iommu_iova_to_phys(dom, addr) : addr;
2908 
2909 		pfn = addr >> PAGE_SHIFT;
2910 		if (!pfn_valid(pfn))
2911 			return -EPERM;
2912 
2913 		p = pfn_to_page(pfn);
2914 		if (p->mapping != adev->mman.bdev.dev_mapping)
2915 			return -EPERM;
2916 
2917 		ptr = kmap_local_page(p);
2918 		r = copy_from_user(ptr + off, buf, bytes);
2919 		kunmap_local(ptr);
2920 		if (r)
2921 			return -EFAULT;
2922 
2923 		size -= bytes;
2924 		*pos += bytes;
2925 		result += bytes;
2926 	}
2927 
2928 	return result;
2929 }
2930 
2931 static const struct file_operations amdgpu_ttm_iomem_fops = {
2932 	.owner = THIS_MODULE,
2933 	.read = amdgpu_iomem_read,
2934 	.write = amdgpu_iomem_write,
2935 	.llseek = default_llseek
2936 };
2937 
2938 #endif
2939 
2940 void amdgpu_ttm_debugfs_init(struct amdgpu_device *adev)
2941 {
2942 #if defined(CONFIG_DEBUG_FS)
2943 	struct drm_minor *minor = adev_to_drm(adev)->primary;
2944 	struct dentry *root = minor->debugfs_root;
2945 
2946 	debugfs_create_file_size("amdgpu_vram", 0444, root, adev,
2947 				 &amdgpu_ttm_vram_fops, adev->gmc.mc_vram_size);
2948 	debugfs_create_file("amdgpu_iomem", 0444, root, adev,
2949 			    &amdgpu_ttm_iomem_fops);
2950 	debugfs_create_file("ttm_page_pool", 0444, root, adev,
2951 			    &amdgpu_ttm_page_pool_fops);
2952 	ttm_resource_manager_create_debugfs(ttm_manager_type(&adev->mman.bdev,
2953 							     TTM_PL_VRAM),
2954 					    root, "amdgpu_vram_mm");
2955 	ttm_resource_manager_create_debugfs(ttm_manager_type(&adev->mman.bdev,
2956 							     TTM_PL_TT),
2957 					    root, "amdgpu_gtt_mm");
2958 	ttm_resource_manager_create_debugfs(ttm_manager_type(&adev->mman.bdev,
2959 							     AMDGPU_PL_GDS),
2960 					    root, "amdgpu_gds_mm");
2961 	ttm_resource_manager_create_debugfs(ttm_manager_type(&adev->mman.bdev,
2962 							     AMDGPU_PL_GWS),
2963 					    root, "amdgpu_gws_mm");
2964 	ttm_resource_manager_create_debugfs(ttm_manager_type(&adev->mman.bdev,
2965 							     AMDGPU_PL_OA),
2966 					    root, "amdgpu_oa_mm");
2967 
2968 #endif
2969 }
2970