amdgpu_ttm.c 67.5 KB
Newer Older
A
Alex Deucher 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
/*
 * Copyright 2009 Jerome Glisse.
 * All Rights Reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sub license, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
 * USE OR OTHER DEALINGS IN THE SOFTWARE.
 *
 * The above copyright notice and this permission notice (including the
 * next paragraph) shall be included in all copies or substantial portions
 * of the Software.
 *
 */
/*
 * Authors:
 *    Jerome Glisse <glisse@freedesktop.org>
 *    Thomas Hellstrom <thomas-at-tungstengraphics-dot-com>
 *    Dave Airlie
 */
32

33
#include <linux/dma-mapping.h>
34
#include <linux/iommu.h>
35
#include <linux/hmm.h>
36 37
#include <linux/pagemap.h>
#include <linux/sched/task.h>
38
#include <linux/sched/mm.h>
39 40 41 42
#include <linux/seq_file.h>
#include <linux/slab.h>
#include <linux/swap.h>
#include <linux/swiotlb.h>
43
#include <linux/dma-buf.h>
44
#include <linux/sizes.h>
45

46 47 48 49 50
#include <drm/ttm/ttm_bo_api.h>
#include <drm/ttm/ttm_bo_driver.h>
#include <drm/ttm/ttm_placement.h>
#include <drm/ttm/ttm_module.h>
#include <drm/ttm/ttm_page_alloc.h>
51 52

#include <drm/drm_debugfs.h>
A
Alex Deucher 已提交
53
#include <drm/amdgpu_drm.h>
54

A
Alex Deucher 已提交
55
#include "amdgpu.h"
56
#include "amdgpu_object.h"
57
#include "amdgpu_trace.h"
58
#include "amdgpu_amdkfd.h"
59
#include "amdgpu_sdma.h"
60
#include "amdgpu_ras.h"
61
#include "amdgpu_atomfirmware.h"
A
Alex Deucher 已提交
62 63
#include "bif/bif_4_1_d.h"

64 65
#define AMDGPU_TTM_VRAM_MAX_DW_READ	(size_t)128

66 67 68
static int amdgpu_ttm_backend_bind(struct ttm_bo_device *bdev,
				   struct ttm_tt *ttm,
				   struct ttm_resource *bo_mem);
69 70
static void amdgpu_ttm_backend_unbind(struct ttm_bo_device *bdev,
				      struct ttm_tt *ttm);
71

72
static int amdgpu_ttm_init_on_chip(struct amdgpu_device *adev,
73 74
				    unsigned int type,
				    uint64_t size)
75
{
76 77
	return ttm_range_man_init(&adev->mman.bdev, type,
				  false, size >> PAGE_SHIFT);
A
Alex Deucher 已提交
78 79
}

80 81 82 83 84 85 86 87
/**
 * amdgpu_evict_flags - Compute placement flags
 *
 * @bo: The buffer object to evict
 * @placement: Possible destination(s) for evicted BO
 *
 * Fill in placement data when ttm_bo_evict() is called
 */
A
Alex Deucher 已提交
88 89 90
static void amdgpu_evict_flags(struct ttm_buffer_object *bo,
				struct ttm_placement *placement)
{
91
	struct amdgpu_device *adev = amdgpu_ttm_adev(bo->bdev);
92
	struct amdgpu_bo *abo;
93
	static const struct ttm_place placements = {
A
Alex Deucher 已提交
94 95
		.fpfn = 0,
		.lpfn = 0,
96
		.mem_type = TTM_PL_SYSTEM,
97
		.flags = 0
A
Alex Deucher 已提交
98 99
	};

100
	/* Don't handle scatter gather BOs */
101 102 103 104 105 106
	if (bo->type == ttm_bo_type_sg) {
		placement->num_placement = 0;
		placement->num_busy_placement = 0;
		return;
	}

107
	/* Object isn't an AMDGPU object so ignore */
108
	if (!amdgpu_bo_is_amdgpu_bo(bo)) {
A
Alex Deucher 已提交
109 110 111 112 113 114
		placement->placement = &placements;
		placement->busy_placement = &placements;
		placement->num_placement = 1;
		placement->num_busy_placement = 1;
		return;
	}
115

116
	abo = ttm_to_amdgpu_bo(bo);
A
Alex Deucher 已提交
117
	switch (bo->mem.mem_type) {
118 119 120 121 122 123 124
	case AMDGPU_PL_GDS:
	case AMDGPU_PL_GWS:
	case AMDGPU_PL_OA:
		placement->num_placement = 0;
		placement->num_busy_placement = 0;
		return;

A
Alex Deucher 已提交
125
	case TTM_PL_VRAM:
126
		if (!adev->mman.buffer_funcs_enabled) {
127
			/* Move to system memory */
128
			amdgpu_bo_placement_from_domain(abo, AMDGPU_GEM_DOMAIN_CPU);
129
		} else if (!amdgpu_gmc_vram_full_visible(&adev->gmc) &&
130 131
			   !(abo->flags & AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED) &&
			   amdgpu_bo_in_cpu_visible_vram(abo)) {
132 133 134 135 136 137

			/* Try evicting to the CPU inaccessible part of VRAM
			 * first, but only set GTT as busy placement, so this
			 * BO will be evicted to GTT rather than causing other
			 * BOs to be evicted from VRAM
			 */
138
			amdgpu_bo_placement_from_domain(abo, AMDGPU_GEM_DOMAIN_VRAM |
139
							 AMDGPU_GEM_DOMAIN_GTT);
140
			abo->placements[0].fpfn = adev->gmc.visible_vram_size >> PAGE_SHIFT;
141 142 143
			abo->placements[0].lpfn = 0;
			abo->placement.busy_placement = &abo->placements[1];
			abo->placement.num_busy_placement = 1;
144
		} else {
145
			/* Move to GTT memory */
146
			amdgpu_bo_placement_from_domain(abo, AMDGPU_GEM_DOMAIN_GTT);
147
		}
A
Alex Deucher 已提交
148 149 150
		break;
	case TTM_PL_TT:
	default:
151
		amdgpu_bo_placement_from_domain(abo, AMDGPU_GEM_DOMAIN_CPU);
152
		break;
A
Alex Deucher 已提交
153
	}
154
	*placement = abo->placement;
A
Alex Deucher 已提交
155 156
}

157 158 159
/**
 * amdgpu_verify_access - Verify access for a mmap call
 *
160 161
 * @bo:	The buffer object to map
 * @filp: The file pointer from the process performing the mmap
162 163 164 165
 *
 * This is called by ttm_bo_mmap() to verify whether a process
 * has the right to mmap a BO to their process space.
 */
A
Alex Deucher 已提交
166 167
static int amdgpu_verify_access(struct ttm_buffer_object *bo, struct file *filp)
{
168
	struct amdgpu_bo *abo = ttm_to_amdgpu_bo(bo);
A
Alex Deucher 已提交
169

170 171 172 173 174 175 176
	/*
	 * Don't verify access for KFD BOs. They don't have a GEM
	 * object associated with them.
	 */
	if (abo->kfd_bo)
		return 0;

177 178
	if (amdgpu_ttm_tt_get_usermm(bo->ttm))
		return -EPERM;
179
	return drm_vma_node_verify_access(&abo->tbo.base.vma_node,
D
David Herrmann 已提交
180
					  filp->private_data);
A
Alex Deucher 已提交
181 182
}

183
/**
184 185 186 187 188 189
 * amdgpu_mm_node_addr - Compute the GPU relative offset of a GTT buffer.
 *
 * @bo: The bo to assign the memory to.
 * @mm_node: Memory manager node for drm allocator.
 * @mem: The region where the bo resides.
 *
190
 */
191 192
static uint64_t amdgpu_mm_node_addr(struct ttm_buffer_object *bo,
				    struct drm_mm_node *mm_node,
193
				    struct ttm_resource *mem)
A
Alex Deucher 已提交
194
{
195
	uint64_t addr = 0;
196

197
	if (mm_node->start != AMDGPU_BO_INVALID_OFFSET) {
198
		addr = mm_node->start << PAGE_SHIFT;
199 200
		addr += amdgpu_ttm_domain_start(amdgpu_ttm_adev(bo->bdev),
						mem->mem_type);
201
	}
202
	return addr;
203 204
}

205
/**
206 207 208 209 210 211
 * amdgpu_find_mm_node - Helper function finds the drm_mm_node corresponding to
 * @offset. It also modifies the offset to be within the drm_mm_node returned
 *
 * @mem: The region where the bo resides.
 * @offset: The offset that drm_mm_node is used for finding.
 *
212
 */
213
static struct drm_mm_node *amdgpu_find_mm_node(struct ttm_resource *mem,
214
					       uint64_t *offset)
215
{
216
	struct drm_mm_node *mm_node = mem->mm_node;
217

218 219 220 221 222 223
	while (*offset >= (mm_node->size << PAGE_SHIFT)) {
		*offset -= (mm_node->size << PAGE_SHIFT);
		++mm_node;
	}
	return mm_node;
}
224

225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
/**
 * amdgpu_ttm_map_buffer - Map memory into the GART windows
 * @bo: buffer object to map
 * @mem: memory object to map
 * @mm_node: drm_mm node object to map
 * @num_pages: number of pages to map
 * @offset: offset into @mm_node where to start
 * @window: which GART window to use
 * @ring: DMA ring to use for the copy
 * @tmz: if we should setup a TMZ enabled mapping
 * @addr: resulting address inside the MC address space
 *
 * Setup one of the GART windows to access a specific piece of memory or return
 * the physical address for local memory.
 */
static int amdgpu_ttm_map_buffer(struct ttm_buffer_object *bo,
241
				 struct ttm_resource *mem,
242 243 244 245 246 247 248 249 250 251
				 struct drm_mm_node *mm_node,
				 unsigned num_pages, uint64_t offset,
				 unsigned window, struct amdgpu_ring *ring,
				 bool tmz, uint64_t *addr)
{
	struct amdgpu_device *adev = ring->adev;
	struct amdgpu_job *job;
	unsigned num_dw, num_bytes;
	struct dma_fence *fence;
	uint64_t src_addr, dst_addr;
252
	void *cpu_addr;
253
	uint64_t flags;
254
	unsigned int i;
255 256 257 258 259 260
	int r;

	BUG_ON(adev->mman.buffer_funcs->copy_max_bytes <
	       AMDGPU_GTT_MAX_TRANSFER_SIZE * 8);

	/* Map only what can't be accessed directly */
261
	if (!tmz && mem->start != AMDGPU_BO_INVALID_OFFSET) {
262 263 264 265 266 267 268 269 270 271 272 273 274
		*addr = amdgpu_mm_node_addr(bo, mm_node, mem) + offset;
		return 0;
	}

	*addr = adev->gmc.gart_start;
	*addr += (u64)window * AMDGPU_GTT_MAX_TRANSFER_SIZE *
		AMDGPU_GPU_PAGE_SIZE;
	*addr += offset & ~PAGE_MASK;

	num_dw = ALIGN(adev->mman.buffer_funcs->copy_num_dw, 8);
	num_bytes = num_pages * 8;

	r = amdgpu_job_alloc_with_ib(adev, num_dw * 4 + num_bytes,
275
				     AMDGPU_IB_POOL_DELAYED, &job);
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
	if (r)
		return r;

	src_addr = num_dw * 4;
	src_addr += job->ibs[0].gpu_addr;

	dst_addr = amdgpu_bo_gpu_offset(adev->gart.bo);
	dst_addr += window * AMDGPU_GTT_MAX_TRANSFER_SIZE * 8;
	amdgpu_emit_copy_buffer(adev, &job->ibs[0], src_addr,
				dst_addr, num_bytes, false);

	amdgpu_ring_pad_ib(ring, &job->ibs[0]);
	WARN_ON(job->ibs[0].length_dw > num_dw);

	flags = amdgpu_ttm_tt_pte_flags(adev, bo->ttm, mem);
	if (tmz)
		flags |= AMDGPU_PTE_TMZ;

294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320
	cpu_addr = &job->ibs[0].ptr[num_dw];

	if (mem->mem_type == TTM_PL_TT) {
		struct ttm_dma_tt *dma;
		dma_addr_t *dma_address;

		dma = container_of(bo->ttm, struct ttm_dma_tt, ttm);
		dma_address = &dma->dma_address[offset >> PAGE_SHIFT];
		r = amdgpu_gart_map(adev, 0, num_pages, dma_address, flags,
				    cpu_addr);
		if (r)
			goto error_free;
	} else {
		dma_addr_t dma_address;

		dma_address = (mm_node->start << PAGE_SHIFT) + offset;
		dma_address += adev->vm_manager.vram_base_offset;

		for (i = 0; i < num_pages; ++i) {
			r = amdgpu_gart_map(adev, i << PAGE_SHIFT, 1,
					    &dma_address, flags, cpu_addr);
			if (r)
				goto error_free;

			dma_address += PAGE_SIZE;
		}
	}
321 322 323 324 325 326 327 328 329 330 331 332 333 334 335

	r = amdgpu_job_submit(job, &adev->mman.entity,
			      AMDGPU_FENCE_OWNER_UNDEFINED, &fence);
	if (r)
		goto error_free;

	dma_fence_put(fence);

	return r;

error_free:
	amdgpu_job_free(job);
	return r;
}

336 337
/**
 * amdgpu_copy_ttm_mem_to_mem - Helper function for copy
338 339 340 341 342 343 344
 * @adev: amdgpu device
 * @src: buffer/address where to read from
 * @dst: buffer/address where to write to
 * @size: number of bytes to copy
 * @tmz: if a secure copy should be used
 * @resv: resv object to sync to
 * @f: Returns the last fence if multiple jobs are submitted.
345 346 347 348 349 350 351
 *
 * The function copies @size bytes from {src->mem + src->offset} to
 * {dst->mem + dst->offset}. src->bo and dst->bo could be same BO for a
 * move and different for a BO to BO copy.
 *
 */
int amdgpu_ttm_copy_mem_to_mem(struct amdgpu_device *adev,
352 353
			       const struct amdgpu_copy_mem *src,
			       const struct amdgpu_copy_mem *dst,
354
			       uint64_t size, bool tmz,
355
			       struct dma_resv *resv,
356
			       struct dma_fence **f)
357
{
358 359 360 361
	const uint32_t GTT_MAX_BYTES = (AMDGPU_GTT_MAX_TRANSFER_SIZE *
					AMDGPU_GPU_PAGE_SIZE);

	uint64_t src_node_size, dst_node_size, src_offset, dst_offset;
362
	struct amdgpu_ring *ring = adev->mman.buffer_funcs_ring;
363
	struct drm_mm_node *src_mm, *dst_mm;
364
	struct dma_fence *fence = NULL;
365
	int r = 0;
366

367
	if (!adev->mman.buffer_funcs_enabled) {
A
Alex Deucher 已提交
368 369 370 371
		DRM_ERROR("Trying to move memory with ring turned off.\n");
		return -EINVAL;
	}

372
	src_offset = src->offset;
373 374 375 376 377 378 379
	if (src->mem->mm_node) {
		src_mm = amdgpu_find_mm_node(src->mem, &src_offset);
		src_node_size = (src_mm->size << PAGE_SHIFT) - src_offset;
	} else {
		src_mm = NULL;
		src_node_size = ULLONG_MAX;
	}
380

381
	dst_offset = dst->offset;
382 383 384 385 386 387 388
	if (dst->mem->mm_node) {
		dst_mm = amdgpu_find_mm_node(dst->mem, &dst_offset);
		dst_node_size = (dst_mm->size << PAGE_SHIFT) - dst_offset;
	} else {
		dst_mm = NULL;
		dst_node_size = ULLONG_MAX;
	}
389

390
	mutex_lock(&adev->mman.gtt_window_lock);
391 392

	while (size) {
393 394
		uint32_t src_page_offset = src_offset & ~PAGE_MASK;
		uint32_t dst_page_offset = dst_offset & ~PAGE_MASK;
395
		struct dma_fence *next;
396 397
		uint32_t cur_size;
		uint64_t from, to;
398

399 400 401
		/* Copy size cannot exceed GTT_MAX_BYTES. So if src or dst
		 * begins at an offset, then adjust the size accordingly
		 */
402 403 404
		cur_size = max(src_page_offset, dst_page_offset);
		cur_size = min(min3(src_node_size, dst_node_size, size),
			       (uint64_t)(GTT_MAX_BYTES - cur_size));
405 406 407 408 409 410 411

		/* Map src to window 0 and dst to window 1. */
		r = amdgpu_ttm_map_buffer(src->bo, src->mem, src_mm,
					  PFN_UP(cur_size + src_page_offset),
					  src_offset, 0, ring, tmz, &from);
		if (r)
			goto error;
412

413 414 415 416 417
		r = amdgpu_ttm_map_buffer(dst->bo, dst->mem, dst_mm,
					  PFN_UP(cur_size + dst_page_offset),
					  dst_offset, 1, ring, tmz, &to);
		if (r)
			goto error;
418

419
		r = amdgpu_copy_buffer(ring, from, to, cur_size,
420
				       resv, &next, false, true, tmz);
421 422 423
		if (r)
			goto error;

424
		dma_fence_put(fence);
425 426
		fence = next;

427 428
		size -= cur_size;
		if (!size)
429 430
			break;

431 432
		src_node_size -= cur_size;
		if (!src_node_size) {
433 434 435
			++src_mm;
			src_node_size = src_mm->size << PAGE_SHIFT;
			src_offset = 0;
436
		} else {
437
			src_offset += cur_size;
438
		}
439

440 441
		dst_node_size -= cur_size;
		if (!dst_node_size) {
442 443 444
			++dst_mm;
			dst_node_size = dst_mm->size << PAGE_SHIFT;
			dst_offset = 0;
445
		} else {
446
			dst_offset += cur_size;
447 448
		}
	}
449
error:
450
	mutex_unlock(&adev->mman.gtt_window_lock);
451 452 453 454 455 456
	if (f)
		*f = dma_fence_get(fence);
	dma_fence_put(fence);
	return r;
}

457 458 459
/**
 * amdgpu_move_blit - Copy an entire buffer to another buffer
 *
460 461
 * This is a helper called by amdgpu_bo_move() and amdgpu_move_vram_ram() to
 * help move buffers to and from VRAM.
462
 */
463
static int amdgpu_move_blit(struct ttm_buffer_object *bo,
464
			    bool evict,
465 466
			    struct ttm_resource *new_mem,
			    struct ttm_resource *old_mem)
467 468
{
	struct amdgpu_device *adev = amdgpu_ttm_adev(bo->bdev);
469
	struct amdgpu_bo *abo = ttm_to_amdgpu_bo(bo);
470 471 472 473 474 475 476 477 478 479 480 481 482
	struct amdgpu_copy_mem src, dst;
	struct dma_fence *fence = NULL;
	int r;

	src.bo = bo;
	dst.bo = bo;
	src.mem = old_mem;
	dst.mem = new_mem;
	src.offset = 0;
	dst.offset = 0;

	r = amdgpu_ttm_copy_mem_to_mem(adev, &src, &dst,
				       new_mem->num_pages << PAGE_SHIFT,
483
				       amdgpu_bo_encrypted(abo),
484
				       bo->base.resv, &fence);
485 486
	if (r)
		goto error;
487

488 489
	/* clear the space being freed */
	if (old_mem->mem_type == TTM_PL_VRAM &&
490
	    (abo->flags & AMDGPU_GEM_CREATE_VRAM_WIPE_ON_RELEASE)) {
491 492 493 494 495 496 497 498 499 500 501 502
		struct dma_fence *wipe_fence = NULL;

		r = amdgpu_fill_buffer(ttm_to_amdgpu_bo(bo), AMDGPU_POISON,
				       NULL, &wipe_fence);
		if (r) {
			goto error;
		} else if (wipe_fence) {
			dma_fence_put(fence);
			fence = wipe_fence;
		}
	}

503 504
	/* Always block for VM page tables before committing the new location */
	if (bo->type == ttm_bo_type_kernel)
505
		r = ttm_bo_move_accel_cleanup(bo, fence, true, false, new_mem);
506
	else
507
		r = ttm_bo_move_accel_cleanup(bo, fence, evict, true, new_mem);
508
	dma_fence_put(fence);
A
Alex Deucher 已提交
509
	return r;
510 511 512

error:
	if (fence)
513 514
		dma_fence_wait(fence, false);
	dma_fence_put(fence);
515
	return r;
A
Alex Deucher 已提交
516 517
}

518 519 520 521 522
/**
 * amdgpu_move_vram_ram - Copy VRAM buffer to RAM buffer
 *
 * Called by amdgpu_bo_move().
 */
523 524
static int amdgpu_move_vram_ram(struct ttm_buffer_object *bo, bool evict,
				struct ttm_operation_ctx *ctx,
525
				struct ttm_resource *new_mem)
A
Alex Deucher 已提交
526
{
527 528
	struct ttm_resource *old_mem = &bo->mem;
	struct ttm_resource tmp_mem;
A
Alex Deucher 已提交
529 530 531 532
	struct ttm_place placements;
	struct ttm_placement placement;
	int r;

533
	/* create space/pages for new_mem in GTT space */
A
Alex Deucher 已提交
534 535 536 537 538 539 540
	tmp_mem = *new_mem;
	tmp_mem.mm_node = NULL;
	placement.num_placement = 1;
	placement.placement = &placements;
	placement.num_busy_placement = 1;
	placement.busy_placement = &placements;
	placements.fpfn = 0;
541
	placements.lpfn = 0;
542
	placements.mem_type = TTM_PL_TT;
543
	placements.flags = 0;
544
	r = ttm_bo_mem_space(bo, &placement, &tmp_mem, ctx);
A
Alex Deucher 已提交
545
	if (unlikely(r)) {
546
		pr_err("Failed to find GTT space for blit from VRAM\n");
A
Alex Deucher 已提交
547 548 549
		return r;
	}

550 551 552 553
	r = ttm_tt_populate(bo->bdev, bo->ttm, ctx);
	if (unlikely(r))
		goto out_cleanup;

554
	/* Bind the memory to the GTT space */
555
	r = amdgpu_ttm_backend_bind(bo->bdev, bo->ttm, &tmp_mem);
A
Alex Deucher 已提交
556 557 558
	if (unlikely(r)) {
		goto out_cleanup;
	}
559 560

	/* blit VRAM to GTT */
561
	r = amdgpu_move_blit(bo, evict, &tmp_mem, old_mem);
A
Alex Deucher 已提交
562 563 564
	if (unlikely(r)) {
		goto out_cleanup;
	}
565

566
	r = ttm_bo_wait_ctx(bo, ctx);
567 568 569
	if (unlikely(r))
		goto out_cleanup;

570 571
	amdgpu_ttm_backend_unbind(bo->bdev, bo->ttm);
	ttm_resource_free(bo, &bo->mem);
572
	ttm_bo_assign_mem(bo, new_mem);
A
Alex Deucher 已提交
573
out_cleanup:
574
	ttm_resource_free(bo, &tmp_mem);
A
Alex Deucher 已提交
575 576 577
	return r;
}

578 579 580 581 582
/**
 * amdgpu_move_ram_vram - Copy buffer from RAM to VRAM
 *
 * Called by amdgpu_bo_move().
 */
583 584
static int amdgpu_move_ram_vram(struct ttm_buffer_object *bo, bool evict,
				struct ttm_operation_ctx *ctx,
585
				struct ttm_resource *new_mem)
A
Alex Deucher 已提交
586
{
587 588
	struct ttm_resource *old_mem = &bo->mem;
	struct ttm_resource tmp_mem;
A
Alex Deucher 已提交
589 590 591 592
	struct ttm_placement placement;
	struct ttm_place placements;
	int r;

593
	/* make space in GTT for old_mem buffer */
A
Alex Deucher 已提交
594 595 596 597 598 599 600
	tmp_mem = *new_mem;
	tmp_mem.mm_node = NULL;
	placement.num_placement = 1;
	placement.placement = &placements;
	placement.num_busy_placement = 1;
	placement.busy_placement = &placements;
	placements.fpfn = 0;
601
	placements.lpfn = 0;
602
	placements.mem_type = TTM_PL_TT;
603
	placements.flags = 0;
604
	r = ttm_bo_mem_space(bo, &placement, &tmp_mem, ctx);
A
Alex Deucher 已提交
605
	if (unlikely(r)) {
606
		pr_err("Failed to find GTT space for blit to VRAM\n");
A
Alex Deucher 已提交
607 608
		return r;
	}
609 610

	/* move/bind old memory to GTT space */
611 612 613 614 615
	r = ttm_tt_populate(bo->bdev, bo->ttm, ctx);
	if (unlikely(r))
		return r;

	r = amdgpu_ttm_backend_bind(bo->bdev, bo->ttm, &tmp_mem);
A
Alex Deucher 已提交
616 617 618
	if (unlikely(r)) {
		goto out_cleanup;
	}
619

620
	ttm_bo_assign_mem(bo, &tmp_mem);
621
	/* copy to VRAM */
622
	r = amdgpu_move_blit(bo, evict, new_mem, old_mem);
A
Alex Deucher 已提交
623 624 625 626
	if (unlikely(r)) {
		goto out_cleanup;
	}
out_cleanup:
627
	ttm_resource_free(bo, &tmp_mem);
A
Alex Deucher 已提交
628 629 630
	return r;
}

631 632 633 634 635 636
/**
 * amdgpu_mem_visible - Check that memory can be accessed by ttm_bo_move_memcpy
 *
 * Called by amdgpu_bo_move()
 */
static bool amdgpu_mem_visible(struct amdgpu_device *adev,
637
			       struct ttm_resource *mem)
638 639 640 641 642 643 644 645 646
{
	struct drm_mm_node *nodes = mem->mm_node;

	if (mem->mem_type == TTM_PL_SYSTEM ||
	    mem->mem_type == TTM_PL_TT)
		return true;
	if (mem->mem_type != TTM_PL_VRAM)
		return false;

647
	/* ttm_resource_ioremap only supports contiguous memory */
648 649 650 651 652 653 654
	if (nodes->size != mem->num_pages)
		return false;

	return ((nodes->start + nodes->size) << PAGE_SHIFT)
		<= adev->gmc.visible_vram_size;
}

655 656 657 658 659
/**
 * amdgpu_bo_move - Move a buffer object to a new memory location
 *
 * Called by ttm_bo_handle_move_mem()
 */
660 661
static int amdgpu_bo_move(struct ttm_buffer_object *bo, bool evict,
			  struct ttm_operation_ctx *ctx,
662
			  struct ttm_resource *new_mem)
A
Alex Deucher 已提交
663 664
{
	struct amdgpu_device *adev;
665
	struct amdgpu_bo *abo;
666
	struct ttm_resource *old_mem = &bo->mem;
A
Alex Deucher 已提交
667 668
	int r;

669 670 671 672 673 674
	if (new_mem->mem_type == TTM_PL_TT) {
		r = amdgpu_ttm_backend_bind(bo->bdev, bo->ttm, new_mem);
		if (r)
			return r;
	}

675 676
	amdgpu_bo_move_notify(bo, evict, new_mem);

677
	/* Can't move a pinned BO */
678
	abo = ttm_to_amdgpu_bo(bo);
679
	if (WARN_ON_ONCE(abo->tbo.pin_count > 0))
680 681
		return -EINVAL;

682
	adev = amdgpu_ttm_adev(bo->bdev);
683

A
Alex Deucher 已提交
684
	if (old_mem->mem_type == TTM_PL_SYSTEM && bo->ttm == NULL) {
685
		ttm_bo_move_null(bo, new_mem);
A
Alex Deucher 已提交
686 687
		return 0;
	}
688 689
	if (old_mem->mem_type == TTM_PL_SYSTEM &&
	    new_mem->mem_type == TTM_PL_TT) {
690
		ttm_bo_move_null(bo, new_mem);
A
Alex Deucher 已提交
691 692
		return 0;
	}
693 694

	if (old_mem->mem_type == TTM_PL_TT &&
695
	    new_mem->mem_type == TTM_PL_SYSTEM) {
696
		r = ttm_bo_wait_ctx(bo, ctx);
697
		if (r)
698
			goto fail;
699 700 701

		amdgpu_ttm_backend_unbind(bo->bdev, bo->ttm);
		ttm_resource_free(bo, &bo->mem);
702 703 704
		ttm_bo_assign_mem(bo, new_mem);
		return 0;
	}
705

706 707 708 709 710 711 712
	if (old_mem->mem_type == AMDGPU_PL_GDS ||
	    old_mem->mem_type == AMDGPU_PL_GWS ||
	    old_mem->mem_type == AMDGPU_PL_OA ||
	    new_mem->mem_type == AMDGPU_PL_GDS ||
	    new_mem->mem_type == AMDGPU_PL_GWS ||
	    new_mem->mem_type == AMDGPU_PL_OA) {
		/* Nothing to save here */
713
		ttm_bo_move_null(bo, new_mem);
714 715
		return 0;
	}
716

717 718
	if (!adev->mman.buffer_funcs_enabled) {
		r = -ENODEV;
A
Alex Deucher 已提交
719
		goto memcpy;
720
	}
A
Alex Deucher 已提交
721 722 723

	if (old_mem->mem_type == TTM_PL_VRAM &&
	    new_mem->mem_type == TTM_PL_SYSTEM) {
724
		r = amdgpu_move_vram_ram(bo, evict, ctx, new_mem);
A
Alex Deucher 已提交
725 726
	} else if (old_mem->mem_type == TTM_PL_SYSTEM &&
		   new_mem->mem_type == TTM_PL_VRAM) {
727
		r = amdgpu_move_ram_vram(bo, evict, ctx, new_mem);
A
Alex Deucher 已提交
728
	} else {
729
		r = amdgpu_move_blit(bo, evict,
730
				     new_mem, old_mem);
A
Alex Deucher 已提交
731 732 733 734
	}

	if (r) {
memcpy:
735 736 737 738
		/* Check that all memory is CPU accessible */
		if (!amdgpu_mem_visible(adev, old_mem) ||
		    !amdgpu_mem_visible(adev, new_mem)) {
			pr_err("Move buffer fallback to memcpy unavailable\n");
739
			goto fail;
A
Alex Deucher 已提交
740
		}
741 742 743

		r = ttm_bo_move_memcpy(bo, ctx, new_mem);
		if (r)
744
			goto fail;
A
Alex Deucher 已提交
745 746
	}

747 748 749 750 751 752 753 754 755
	if (bo->type == ttm_bo_type_device &&
	    new_mem->mem_type == TTM_PL_VRAM &&
	    old_mem->mem_type != TTM_PL_VRAM) {
		/* amdgpu_bo_fault_reserve_notify will re-set this if the CPU
		 * accesses the BO after it's moved.
		 */
		abo->flags &= ~AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED;
	}

A
Alex Deucher 已提交
756 757 758
	/* update statistics */
	atomic64_add((u64)bo->num_pages << PAGE_SHIFT, &adev->num_bytes_moved);
	return 0;
759 760 761 762 763
fail:
	swap(*new_mem, bo->mem);
	amdgpu_bo_move_notify(bo, false, new_mem);
	swap(*new_mem, bo->mem);
	return r;
A
Alex Deucher 已提交
764 765
}

766 767 768 769 770
/**
 * amdgpu_ttm_io_mem_reserve - Reserve a block of memory during a fault
 *
 * Called by ttm_mem_io_reserve() ultimately via ttm_bo_vm_fault()
 */
771
static int amdgpu_ttm_io_mem_reserve(struct ttm_bo_device *bdev, struct ttm_resource *mem)
A
Alex Deucher 已提交
772
{
773
	struct amdgpu_device *adev = amdgpu_ttm_adev(bdev);
774
	struct drm_mm_node *mm_node = mem->mm_node;
775
	size_t bus_size = (size_t)mem->num_pages << PAGE_SHIFT;
A
Alex Deucher 已提交
776 777 778 779 780 781 782 783 784 785

	switch (mem->mem_type) {
	case TTM_PL_SYSTEM:
		/* system memory */
		return 0;
	case TTM_PL_TT:
		break;
	case TTM_PL_VRAM:
		mem->bus.offset = mem->start << PAGE_SHIFT;
		/* check if it's visible */
786
		if ((mem->bus.offset + bus_size) > adev->gmc.visible_vram_size)
A
Alex Deucher 已提交
787
			return -EINVAL;
788 789
		/* Only physically contiguous buffers apply. In a contiguous
		 * buffer, size of the first mm_node would match the number of
790
		 * pages in ttm_resource.
791 792 793 794 795 796
		 */
		if (adev->mman.aper_base_kaddr &&
		    (mm_node->size == mem->num_pages))
			mem->bus.addr = (u8 *)adev->mman.aper_base_kaddr +
					mem->bus.offset;

797
		mem->bus.offset += adev->gmc.aper_base;
A
Alex Deucher 已提交
798
		mem->bus.is_iomem = true;
799
		mem->bus.caching = ttm_write_combined;
A
Alex Deucher 已提交
800 801 802 803 804 805 806
		break;
	default:
		return -EINVAL;
	}
	return 0;
}

807 808 809
static unsigned long amdgpu_ttm_io_mem_pfn(struct ttm_buffer_object *bo,
					   unsigned long page_offset)
{
810
	struct amdgpu_device *adev = amdgpu_ttm_adev(bo->bdev);
811
	uint64_t offset = (page_offset << PAGE_SHIFT);
812
	struct drm_mm_node *mm;
813

814
	mm = amdgpu_find_mm_node(&bo->mem, &offset);
815 816
	offset += adev->gmc.aper_base;
	return mm->start + (offset >> PAGE_SHIFT);
817 818
}

819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839
/**
 * amdgpu_ttm_domain_start - Returns GPU start address
 * @adev: amdgpu device object
 * @type: type of the memory
 *
 * Returns:
 * GPU start address of a memory domain
 */

uint64_t amdgpu_ttm_domain_start(struct amdgpu_device *adev, uint32_t type)
{
	switch (type) {
	case TTM_PL_TT:
		return adev->gmc.gart_start;
	case TTM_PL_VRAM:
		return adev->gmc.vram_start;
	}

	return 0;
}

A
Alex Deucher 已提交
840 841 842 843
/*
 * TTM backend functions.
 */
struct amdgpu_ttm_tt {
844
	struct ttm_dma_tt	ttm;
845
	struct drm_gem_object	*gobj;
846 847
	u64			offset;
	uint64_t		userptr;
848
	struct task_struct	*usertask;
849
	uint32_t		userflags;
850
	bool			bound;
851
#if IS_ENABLED(CONFIG_DRM_AMDGPU_USERPTR)
852
	struct hmm_range	*range;
853
#endif
A
Alex Deucher 已提交
854 855
};

856
#ifdef CONFIG_DRM_AMDGPU_USERPTR
857
/**
858 859
 * amdgpu_ttm_tt_get_user_pages - get device accessible pages that back user
 * memory and start HMM tracking CPU page table update
860
 *
861 862
 * Calling function must call amdgpu_ttm_tt_userptr_range_done() once and only
 * once afterwards to stop HMM tracking
863
 */
864
int amdgpu_ttm_tt_get_user_pages(struct amdgpu_bo *bo, struct page **pages)
A
Alex Deucher 已提交
865
{
866
	struct ttm_tt *ttm = bo->tbo.ttm;
A
Alex Deucher 已提交
867
	struct amdgpu_ttm_tt *gtt = (void *)ttm;
868
	unsigned long start = gtt->userptr;
869 870
	struct vm_area_struct *vma;
	struct hmm_range *range;
871 872
	unsigned long timeout;
	struct mm_struct *mm;
873
	unsigned long i;
874
	int r = 0;
A
Alex Deucher 已提交
875

876 877 878
	mm = bo->notifier.mm;
	if (unlikely(!mm)) {
		DRM_DEBUG_DRIVER("BO is not registered?\n");
879
		return -EFAULT;
880
	}
881

882 883 884 885
	/* Another get_user_pages is running at the same time?? */
	if (WARN_ON(gtt->range))
		return -EFAULT;

886
	if (!mmget_not_zero(mm)) /* Happens during process shutdown */
887 888
		return -ESRCH;

889 890
	range = kzalloc(sizeof(*range), GFP_KERNEL);
	if (unlikely(!range)) {
891
		r = -ENOMEM;
892 893
		goto out;
	}
894 895 896
	range->notifier = &bo->notifier;
	range->start = bo->notifier.interval_tree.start;
	range->end = bo->notifier.interval_tree.last + 1;
897
	range->default_flags = HMM_PFN_REQ_FAULT;
898
	if (!amdgpu_ttm_tt_is_readonly(ttm))
899
		range->default_flags |= HMM_PFN_REQ_WRITE;
900

901 902 903
	range->hmm_pfns = kvmalloc_array(ttm->num_pages,
					 sizeof(*range->hmm_pfns), GFP_KERNEL);
	if (unlikely(!range->hmm_pfns)) {
904 905
		r = -ENOMEM;
		goto out_free_ranges;
A
Alex Deucher 已提交
906
	}
907

908
	mmap_read_lock(mm);
909 910 911
	vma = find_vma(mm, start);
	if (unlikely(!vma || start < vma->vm_start)) {
		r = -EFAULT;
912
		goto out_unlock;
913
	}
914
	if (unlikely((gtt->userflags & AMDGPU_GEM_USERPTR_ANONONLY) &&
915
		vma->vm_file)) {
916
		r = -EPERM;
917
		goto out_unlock;
918
	}
919
	mmap_read_unlock(mm);
920
	timeout = jiffies + msecs_to_jiffies(HMM_RANGE_DEFAULT_TIMEOUT);
921

922 923
retry:
	range->notifier_seq = mmu_interval_read_begin(&bo->notifier);
A
Alex Deucher 已提交
924

925
	mmap_read_lock(mm);
926
	r = hmm_range_fault(range);
927
	mmap_read_unlock(mm);
928
	if (unlikely(r)) {
929 930 931 932
		/*
		 * FIXME: This timeout should encompass the retry from
		 * mmu_interval_read_retry() as well.
		 */
933
		if (r == -EBUSY && !time_after(jiffies, timeout))
934
			goto retry;
935
		goto out_free_pfns;
936
	}
937

938 939 940 941 942 943
	/*
	 * Due to default_flags, all pages are HMM_PFN_VALID or
	 * hmm_range_fault() fails. FIXME: The pages cannot be touched outside
	 * the notifier_lock, and mmu_interval_read_retry() must be done first.
	 */
	for (i = 0; i < ttm->num_pages; i++)
944
		pages[i] = hmm_pfn_to_page(range->hmm_pfns[i]);
945 946

	gtt->range = range;
947
	mmput(mm);
948

949
	return 0;
950

951
out_unlock:
952
	mmap_read_unlock(mm);
953
out_free_pfns:
954
	kvfree(range->hmm_pfns);
955
out_free_ranges:
956
	kfree(range);
957
out:
958
	mmput(mm);
959 960 961
	return r;
}

962
/**
963 964
 * amdgpu_ttm_tt_userptr_range_done - stop HMM track the CPU page table change
 * Check if the pages backing this ttm range have been invalidated
965
 *
966
 * Returns: true if pages are still valid
967
 */
968
bool amdgpu_ttm_tt_get_user_pages_done(struct ttm_tt *ttm)
969
{
970
	struct amdgpu_ttm_tt *gtt = (void *)ttm;
971
	bool r = false;
972

973 974
	if (!gtt || !gtt->userptr)
		return false;
975

976 977
	DRM_DEBUG_DRIVER("user_pages_done 0x%llx pages 0x%lx\n",
		gtt->userptr, ttm->num_pages);
978

979
	WARN_ONCE(!gtt->range || !gtt->range->hmm_pfns,
980 981
		"No user pages to check\n");

982
	if (gtt->range) {
983 984 985 986 987 988
		/*
		 * FIXME: Must always hold notifier_lock for this, and must
		 * not ignore the return code.
		 */
		r = mmu_interval_read_retry(gtt->range->notifier,
					 gtt->range->notifier_seq);
989
		kvfree(gtt->range->hmm_pfns);
990 991
		kfree(gtt->range);
		gtt->range = NULL;
992
	}
993

994
	return !r;
995
}
996
#endif
997

998
/**
999
 * amdgpu_ttm_tt_set_user_pages - Copy pages in, putting old pages as necessary.
1000
 *
1001
 * Called by amdgpu_cs_list_validate(). This creates the page list
1002 1003
 * that backs user memory and will ultimately be mapped into the device
 * address space.
1004
 */
1005
void amdgpu_ttm_tt_set_user_pages(struct ttm_tt *ttm, struct page **pages)
1006
{
1007
	unsigned long i;
1008

1009
	for (i = 0; i < ttm->num_pages; ++i)
1010
		ttm->pages[i] = pages ? pages[i] : NULL;
1011 1012
}

1013
/**
1014
 * amdgpu_ttm_tt_pin_userptr - 	prepare the sg table with the user pages
1015 1016 1017
 *
 * Called by amdgpu_ttm_backend_bind()
 **/
D
Dave Airlie 已提交
1018 1019
static int amdgpu_ttm_tt_pin_userptr(struct ttm_bo_device *bdev,
				     struct ttm_tt *ttm)
1020
{
D
Dave Airlie 已提交
1021
	struct amdgpu_device *adev = amdgpu_ttm_adev(bdev);
1022 1023 1024 1025 1026 1027 1028
	struct amdgpu_ttm_tt *gtt = (void *)ttm;
	int r;

	int write = !(gtt->userflags & AMDGPU_GEM_USERPTR_READONLY);
	enum dma_data_direction direction = write ?
		DMA_BIDIRECTIONAL : DMA_TO_DEVICE;

1029
	/* Allocate an SG array and squash pages into it */
A
Alex Deucher 已提交
1030 1031 1032 1033 1034 1035
	r = sg_alloc_table_from_pages(ttm->sg, ttm->pages, ttm->num_pages, 0,
				      ttm->num_pages << PAGE_SHIFT,
				      GFP_KERNEL);
	if (r)
		goto release_sg;

1036
	/* Map SG to device */
1037 1038
	r = dma_map_sgtable(adev->dev, ttm->sg, direction, 0);
	if (r)
A
Alex Deucher 已提交
1039 1040
		goto release_sg;

1041
	/* convert SG to linear array of pages and dma addresses */
A
Alex Deucher 已提交
1042 1043 1044 1045 1046 1047 1048 1049 1050 1051
	drm_prime_sg_to_page_addr_arrays(ttm->sg, ttm->pages,
					 gtt->ttm.dma_address, ttm->num_pages);

	return 0;

release_sg:
	kfree(ttm->sg);
	return r;
}

1052 1053 1054
/**
 * amdgpu_ttm_tt_unpin_userptr - Unpin and unmap userptr pages
 */
D
Dave Airlie 已提交
1055 1056
static void amdgpu_ttm_tt_unpin_userptr(struct ttm_bo_device *bdev,
					struct ttm_tt *ttm)
A
Alex Deucher 已提交
1057
{
D
Dave Airlie 已提交
1058
	struct amdgpu_device *adev = amdgpu_ttm_adev(bdev);
A
Alex Deucher 已提交
1059 1060 1061 1062 1063 1064 1065 1066 1067 1068
	struct amdgpu_ttm_tt *gtt = (void *)ttm;

	int write = !(gtt->userflags & AMDGPU_GEM_USERPTR_READONLY);
	enum dma_data_direction direction = write ?
		DMA_BIDIRECTIONAL : DMA_TO_DEVICE;

	/* double check that we don't free the table twice */
	if (!ttm->sg->sgl)
		return;

1069
	/* unmap the pages mapped to the device */
1070
	dma_unmap_sgtable(adev->dev, ttm->sg, direction, 0);
1071
	sg_free_table(ttm->sg);
1072

1073
#if IS_ENABLED(CONFIG_DRM_AMDGPU_USERPTR)
1074 1075 1076 1077 1078
	if (gtt->range) {
		unsigned long i;

		for (i = 0; i < ttm->num_pages; i++) {
			if (ttm->pages[i] !=
1079
			    hmm_pfn_to_page(gtt->range->hmm_pfns[i]))
1080 1081 1082 1083 1084
				break;
		}

		WARN((i == ttm->num_pages), "Missing get_user_page_done\n");
	}
1085
#endif
A
Alex Deucher 已提交
1086 1087
}

1088
static int amdgpu_ttm_gart_bind(struct amdgpu_device *adev,
1089 1090 1091 1092 1093 1094 1095 1096
				struct ttm_buffer_object *tbo,
				uint64_t flags)
{
	struct amdgpu_bo *abo = ttm_to_amdgpu_bo(tbo);
	struct ttm_tt *ttm = tbo->ttm;
	struct amdgpu_ttm_tt *gtt = (void *)ttm;
	int r;

1097 1098 1099
	if (amdgpu_bo_encrypted(abo))
		flags |= AMDGPU_PTE_TMZ;

1100
	if (abo->flags & AMDGPU_GEM_CREATE_CP_MQD_GFX9) {
1101 1102 1103 1104 1105 1106 1107
		uint64_t page_idx = 1;

		r = amdgpu_gart_bind(adev, gtt->offset, page_idx,
				ttm->pages, gtt->ttm.dma_address, flags);
		if (r)
			goto gart_bind_fail;

1108 1109 1110 1111
		/* The memory type of the first page defaults to UC. Now
		 * modify the memory type to NC from the second page of
		 * the BO onward.
		 */
1112 1113
		flags &= ~AMDGPU_PTE_MTYPE_VG10_MASK;
		flags |= AMDGPU_PTE_MTYPE_VG10(AMDGPU_MTYPE_NC);
1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132

		r = amdgpu_gart_bind(adev,
				gtt->offset + (page_idx << PAGE_SHIFT),
				ttm->num_pages - page_idx,
				&ttm->pages[page_idx],
				&(gtt->ttm.dma_address[page_idx]), flags);
	} else {
		r = amdgpu_gart_bind(adev, gtt->offset, ttm->num_pages,
				     ttm->pages, gtt->ttm.dma_address, flags);
	}

gart_bind_fail:
	if (r)
		DRM_ERROR("failed to bind %lu pages at 0x%08llX\n",
			  ttm->num_pages, gtt->offset);

	return r;
}

1133 1134 1135 1136 1137 1138
/**
 * amdgpu_ttm_backend_bind - Bind GTT memory
 *
 * Called by ttm_tt_bind() on behalf of ttm_bo_handle_move_mem().
 * This handles binding GTT memory to the device address space.
 */
D
Dave Airlie 已提交
1139 1140
static int amdgpu_ttm_backend_bind(struct ttm_bo_device *bdev,
				   struct ttm_tt *ttm,
1141
				   struct ttm_resource *bo_mem)
A
Alex Deucher 已提交
1142
{
D
Dave Airlie 已提交
1143
	struct amdgpu_device *adev = amdgpu_ttm_adev(bdev);
A
Alex Deucher 已提交
1144
	struct amdgpu_ttm_tt *gtt = (void*)ttm;
1145
	uint64_t flags;
1146
	int r = 0;
A
Alex Deucher 已提交
1147

1148 1149 1150 1151 1152 1153
	if (!bo_mem)
		return -EINVAL;

	if (gtt->bound)
		return 0;

1154
	if (gtt->userptr) {
D
Dave Airlie 已提交
1155
		r = amdgpu_ttm_tt_pin_userptr(bdev, ttm);
1156 1157 1158 1159 1160
		if (r) {
			DRM_ERROR("failed to pin userptr\n");
			return r;
		}
	}
A
Alex Deucher 已提交
1161 1162 1163 1164 1165 1166 1167 1168 1169 1170
	if (!ttm->num_pages) {
		WARN(1, "nothing to bind %lu pages for mreg %p back %p!\n",
		     ttm->num_pages, bo_mem, ttm);
	}

	if (bo_mem->mem_type == AMDGPU_PL_GDS ||
	    bo_mem->mem_type == AMDGPU_PL_GWS ||
	    bo_mem->mem_type == AMDGPU_PL_OA)
		return -EINVAL;

1171 1172
	if (!amdgpu_gtt_mgr_has_gart_addr(bo_mem)) {
		gtt->offset = AMDGPU_BO_INVALID_OFFSET;
1173
		return 0;
1174
	}
1175

1176
	/* compute PTE flags relevant to this BO memory */
C
Christian König 已提交
1177
	flags = amdgpu_ttm_tt_pte_flags(adev, ttm, bo_mem);
1178 1179

	/* bind pages into GART page tables */
1180
	gtt->offset = (u64)bo_mem->start << PAGE_SHIFT;
C
Christian König 已提交
1181
	r = amdgpu_gart_bind(adev, gtt->offset, ttm->num_pages,
1182 1183
		ttm->pages, gtt->ttm.dma_address, flags);

1184
	if (r)
1185 1186
		DRM_ERROR("failed to bind %lu pages at 0x%08llX\n",
			  ttm->num_pages, gtt->offset);
1187
	gtt->bound = true;
1188
	return r;
1189 1190
}

1191 1192 1193
/**
 * amdgpu_ttm_alloc_gart - Allocate GART memory for buffer object
 */
1194
int amdgpu_ttm_alloc_gart(struct ttm_buffer_object *bo)
1195
{
1196
	struct amdgpu_device *adev = amdgpu_ttm_adev(bo->bdev);
1197
	struct ttm_operation_ctx ctx = { false, false };
1198
	struct amdgpu_ttm_tt *gtt = (void*)bo->ttm;
1199
	struct ttm_resource tmp;
1200 1201
	struct ttm_placement placement;
	struct ttm_place placements;
1202
	uint64_t addr, flags;
1203 1204
	int r;

1205
	if (bo->mem.start != AMDGPU_BO_INVALID_OFFSET)
1206 1207
		return 0;

1208 1209 1210 1211
	addr = amdgpu_gmc_agp_addr(bo);
	if (addr != AMDGPU_BO_INVALID_OFFSET) {
		bo->mem.start = addr >> PAGE_SHIFT;
	} else {
1212

1213 1214 1215 1216 1217 1218 1219 1220 1221
		/* allocate GART space */
		tmp = bo->mem;
		tmp.mm_node = NULL;
		placement.num_placement = 1;
		placement.placement = &placements;
		placement.num_busy_placement = 1;
		placement.busy_placement = &placements;
		placements.fpfn = 0;
		placements.lpfn = adev->gmc.gart_size >> PAGE_SHIFT;
1222 1223
		placements.mem_type = TTM_PL_TT;
		placements.flags = bo->mem.placement;
1224 1225 1226 1227

		r = ttm_bo_mem_space(bo, &placement, &tmp, &ctx);
		if (unlikely(r))
			return r;
1228

1229 1230
		/* compute PTE flags for this buffer object */
		flags = amdgpu_ttm_tt_pte_flags(adev, bo->ttm, &tmp);
1231

1232
		/* Bind pages */
1233
		gtt->offset = (u64)tmp.start << PAGE_SHIFT;
1234 1235
		r = amdgpu_ttm_gart_bind(adev, bo, flags);
		if (unlikely(r)) {
1236
			ttm_resource_free(bo, &tmp);
1237 1238 1239
			return r;
		}

1240
		ttm_resource_free(bo, &bo->mem);
1241
		bo->mem = tmp;
1242
	}
1243

1244
	return 0;
A
Alex Deucher 已提交
1245 1246
}

1247 1248 1249 1250 1251 1252
/**
 * amdgpu_ttm_recover_gart - Rebind GTT pages
 *
 * Called by amdgpu_gtt_mgr_recover() from amdgpu_device_reset() to
 * rebind GTT pages during a GPU reset.
 */
1253
int amdgpu_ttm_recover_gart(struct ttm_buffer_object *tbo)
1254
{
1255
	struct amdgpu_device *adev = amdgpu_ttm_adev(tbo->bdev);
1256
	uint64_t flags;
1257 1258
	int r;

1259
	if (!tbo->ttm)
1260 1261
		return 0;

1262 1263 1264
	flags = amdgpu_ttm_tt_pte_flags(adev, tbo->ttm, &tbo->mem);
	r = amdgpu_ttm_gart_bind(adev, tbo, flags);

1265
	return r;
1266 1267
}

1268 1269 1270 1271 1272 1273
/**
 * amdgpu_ttm_backend_unbind - Unbind GTT mapped pages
 *
 * Called by ttm_tt_unbind() on behalf of ttm_bo_move_ttm() and
 * ttm_tt_destroy().
 */
D
Dave Airlie 已提交
1274 1275
static void amdgpu_ttm_backend_unbind(struct ttm_bo_device *bdev,
				      struct ttm_tt *ttm)
A
Alex Deucher 已提交
1276
{
D
Dave Airlie 已提交
1277
	struct amdgpu_device *adev = amdgpu_ttm_adev(bdev);
A
Alex Deucher 已提交
1278
	struct amdgpu_ttm_tt *gtt = (void *)ttm;
1279
	int r;
A
Alex Deucher 已提交
1280

1281 1282 1283
	if (!gtt->bound)
		return;

1284
	/* if the pages have userptr pinning then clear that first */
1285
	if (gtt->userptr)
D
Dave Airlie 已提交
1286
		amdgpu_ttm_tt_unpin_userptr(bdev, ttm);
1287

1288
	if (gtt->offset == AMDGPU_BO_INVALID_OFFSET)
1289
		return;
1290

A
Alex Deucher 已提交
1291
	/* unbind shouldn't be done for GDS/GWS/OA in ttm_bo_clean_mm */
C
Christian König 已提交
1292
	r = amdgpu_gart_unbind(adev, gtt->offset, ttm->num_pages);
1293
	if (r)
1294 1295
		DRM_ERROR("failed to unbind %lu pages at 0x%08llX\n",
			  gtt->ttm.ttm.num_pages, gtt->offset);
1296
	gtt->bound = false;
A
Alex Deucher 已提交
1297 1298
}

D
Dave Airlie 已提交
1299 1300
static void amdgpu_ttm_backend_destroy(struct ttm_bo_device *bdev,
				       struct ttm_tt *ttm)
A
Alex Deucher 已提交
1301 1302 1303
{
	struct amdgpu_ttm_tt *gtt = (void *)ttm;

1304
	amdgpu_ttm_backend_unbind(bdev, ttm);
D
Dave Airlie 已提交
1305
	ttm_tt_destroy_common(bdev, ttm);
1306 1307 1308
	if (gtt->usertask)
		put_task_struct(gtt->usertask);

A
Alex Deucher 已提交
1309 1310 1311 1312
	ttm_dma_tt_fini(&gtt->ttm);
	kfree(gtt);
}

1313 1314 1315 1316 1317 1318 1319
/**
 * amdgpu_ttm_tt_create - Create a ttm_tt object for a given BO
 *
 * @bo: The buffer object to create a GTT ttm_tt object around
 *
 * Called by ttm_tt_create().
 */
1320 1321
static struct ttm_tt *amdgpu_ttm_tt_create(struct ttm_buffer_object *bo,
					   uint32_t page_flags)
A
Alex Deucher 已提交
1322
{
1323
	struct amdgpu_bo *abo = ttm_to_amdgpu_bo(bo);
A
Alex Deucher 已提交
1324
	struct amdgpu_ttm_tt *gtt;
1325
	enum ttm_caching caching;
A
Alex Deucher 已提交
1326 1327 1328 1329 1330

	gtt = kzalloc(sizeof(struct amdgpu_ttm_tt), GFP_KERNEL);
	if (gtt == NULL) {
		return NULL;
	}
1331
	gtt->gobj = &bo->base;
1332

1333 1334 1335 1336 1337
	if (abo->flags & AMDGPU_GEM_CREATE_CPU_GTT_USWC)
		caching = ttm_write_combined;
	else
		caching = ttm_cached;

1338
	/* allocate space for the uninitialized page entries */
1339
	if (ttm_sg_tt_init(&gtt->ttm, bo, page_flags, caching)) {
A
Alex Deucher 已提交
1340 1341 1342 1343 1344 1345
		kfree(gtt);
		return NULL;
	}
	return &gtt->ttm.ttm;
}

1346 1347 1348 1349 1350 1351
/**
 * amdgpu_ttm_tt_populate - Map GTT pages visible to the device
 *
 * Map the pages of a ttm_tt object to an address space visible
 * to the underlying device.
 */
D
Dave Airlie 已提交
1352 1353 1354
static int amdgpu_ttm_tt_populate(struct ttm_bo_device *bdev,
				  struct ttm_tt *ttm,
				  struct ttm_operation_ctx *ctx)
A
Alex Deucher 已提交
1355
{
D
Dave Airlie 已提交
1356
	struct amdgpu_device *adev = amdgpu_ttm_adev(bdev);
A
Alex Deucher 已提交
1357 1358
	struct amdgpu_ttm_tt *gtt = (void *)ttm;

1359
	/* user pages are bound by amdgpu_ttm_tt_pin_userptr() */
A
Alex Deucher 已提交
1360
	if (gtt && gtt->userptr) {
1361
		ttm->sg = kzalloc(sizeof(struct sg_table), GFP_KERNEL);
A
Alex Deucher 已提交
1362 1363 1364 1365 1366 1367 1368
		if (!ttm->sg)
			return -ENOMEM;

		ttm->page_flags |= TTM_PAGE_FLAG_SG;
		return 0;
	}

1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381
	if (ttm->page_flags & TTM_PAGE_FLAG_SG) {
		if (!ttm->sg) {
			struct dma_buf_attachment *attach;
			struct sg_table *sgt;

			attach = gtt->gobj->import_attach;
			sgt = dma_buf_map_attachment(attach, DMA_BIDIRECTIONAL);
			if (IS_ERR(sgt))
				return PTR_ERR(sgt);

			ttm->sg = sgt;
		}

A
Alex Deucher 已提交
1382
		drm_prime_sg_to_page_addr_arrays(ttm->sg, ttm->pages,
1383 1384
						 gtt->ttm.dma_address,
						 ttm->num_pages);
1385
		return 0;
A
Alex Deucher 已提交
1386 1387 1388
	}

#ifdef CONFIG_SWIOTLB
1389
	if (adev->need_swiotlb && swiotlb_nr_tbl()) {
1390
		return ttm_dma_populate(&gtt->ttm, adev->dev, ctx);
A
Alex Deucher 已提交
1391 1392 1393
	}
#endif

1394 1395
	/* fall back to generic helper to populate the page array
	 * and map them to the device */
1396
	return ttm_populate_and_map_pages(adev->dev, &gtt->ttm, ctx);
A
Alex Deucher 已提交
1397 1398
}

1399 1400 1401 1402 1403 1404
/**
 * amdgpu_ttm_tt_unpopulate - unmap GTT pages and unpopulate page arrays
 *
 * Unmaps pages of a ttm_tt object from the device address space and
 * unpopulates the page array backing it.
 */
D
Dave Airlie 已提交
1405
static void amdgpu_ttm_tt_unpopulate(struct ttm_bo_device *bdev, struct ttm_tt *ttm)
A
Alex Deucher 已提交
1406 1407
{
	struct amdgpu_ttm_tt *gtt = (void *)ttm;
1408
	struct amdgpu_device *adev;
A
Alex Deucher 已提交
1409 1410

	if (gtt && gtt->userptr) {
1411
		amdgpu_ttm_tt_set_user_pages(ttm, NULL);
A
Alex Deucher 已提交
1412 1413 1414 1415 1416
		kfree(ttm->sg);
		ttm->page_flags &= ~TTM_PAGE_FLAG_SG;
		return;
	}

1417 1418 1419 1420 1421 1422 1423 1424 1425 1426
	if (ttm->sg && gtt->gobj->import_attach) {
		struct dma_buf_attachment *attach;

		attach = gtt->gobj->import_attach;
		dma_buf_unmap_attachment(attach, ttm->sg, DMA_BIDIRECTIONAL);
		ttm->sg = NULL;
		return;
	}

	if (ttm->page_flags & TTM_PAGE_FLAG_SG)
A
Alex Deucher 已提交
1427 1428
		return;

D
Dave Airlie 已提交
1429
	adev = amdgpu_ttm_adev(bdev);
A
Alex Deucher 已提交
1430 1431

#ifdef CONFIG_SWIOTLB
1432
	if (adev->need_swiotlb && swiotlb_nr_tbl()) {
A
Alex Deucher 已提交
1433 1434 1435 1436 1437
		ttm_dma_unpopulate(&gtt->ttm, adev->dev);
		return;
	}
#endif

1438
	/* fall back to generic helper to unmap and unpopulate array */
1439
	ttm_unmap_and_unpopulate_pages(adev->dev, &gtt->ttm);
A
Alex Deucher 已提交
1440 1441
}

1442
/**
1443 1444
 * amdgpu_ttm_tt_set_userptr - Initialize userptr GTT ttm_tt for the current
 * task
1445
 *
1446
 * @bo: The ttm_buffer_object to bind this userptr to
1447 1448 1449 1450 1451 1452
 * @addr:  The address in the current tasks VM space to use
 * @flags: Requirements of userptr object.
 *
 * Called by amdgpu_gem_userptr_ioctl() to bind userptr pages
 * to current task
 */
1453 1454
int amdgpu_ttm_tt_set_userptr(struct ttm_buffer_object *bo,
			      uint64_t addr, uint32_t flags)
A
Alex Deucher 已提交
1455
{
1456
	struct amdgpu_ttm_tt *gtt;
A
Alex Deucher 已提交
1457

1458 1459 1460 1461 1462 1463
	if (!bo->ttm) {
		/* TODO: We want a separate TTM object type for userptrs */
		bo->ttm = amdgpu_ttm_tt_create(bo, 0);
		if (bo->ttm == NULL)
			return -ENOMEM;
	}
A
Alex Deucher 已提交
1464

1465
	gtt = (void*)bo->ttm;
A
Alex Deucher 已提交
1466 1467
	gtt->userptr = addr;
	gtt->userflags = flags;
1468 1469 1470 1471 1472 1473

	if (gtt->usertask)
		put_task_struct(gtt->usertask);
	gtt->usertask = current->group_leader;
	get_task_struct(gtt->usertask);

A
Alex Deucher 已提交
1474 1475 1476
	return 0;
}

1477 1478 1479
/**
 * amdgpu_ttm_tt_get_usermm - Return memory manager for ttm_tt object
 */
1480
struct mm_struct *amdgpu_ttm_tt_get_usermm(struct ttm_tt *ttm)
A
Alex Deucher 已提交
1481 1482 1483 1484
{
	struct amdgpu_ttm_tt *gtt = (void *)ttm;

	if (gtt == NULL)
1485
		return NULL;
A
Alex Deucher 已提交
1486

1487 1488 1489 1490
	if (gtt->usertask == NULL)
		return NULL;

	return gtt->usertask->mm;
A
Alex Deucher 已提交
1491 1492
}

1493
/**
1494 1495
 * amdgpu_ttm_tt_affect_userptr - Determine if a ttm_tt object lays inside an
 * address range for the current task.
1496 1497
 *
 */
1498 1499 1500 1501 1502 1503
bool amdgpu_ttm_tt_affect_userptr(struct ttm_tt *ttm, unsigned long start,
				  unsigned long end)
{
	struct amdgpu_ttm_tt *gtt = (void *)ttm;
	unsigned long size;

1504
	if (gtt == NULL || !gtt->userptr)
1505 1506
		return false;

1507 1508 1509
	/* Return false if no part of the ttm_tt object lies within
	 * the range
	 */
1510 1511 1512 1513 1514 1515 1516
	size = (unsigned long)gtt->ttm.ttm.num_pages * PAGE_SIZE;
	if (gtt->userptr > end || gtt->userptr + size <= start)
		return false;

	return true;
}

1517
/**
1518
 * amdgpu_ttm_tt_is_userptr - Have the pages backing by userptr?
1519
 */
1520
bool amdgpu_ttm_tt_is_userptr(struct ttm_tt *ttm)
1521 1522 1523 1524 1525 1526
{
	struct amdgpu_ttm_tt *gtt = (void *)ttm;

	if (gtt == NULL || !gtt->userptr)
		return false;

1527
	return true;
1528 1529
}

1530 1531 1532
/**
 * amdgpu_ttm_tt_is_readonly - Is the ttm_tt object read only?
 */
A
Alex Deucher 已提交
1533 1534 1535 1536 1537 1538 1539 1540 1541 1542
bool amdgpu_ttm_tt_is_readonly(struct ttm_tt *ttm)
{
	struct amdgpu_ttm_tt *gtt = (void *)ttm;

	if (gtt == NULL)
		return false;

	return !!(gtt->userflags & AMDGPU_GEM_USERPTR_READONLY);
}

1543
/**
1544
 * amdgpu_ttm_tt_pde_flags - Compute PDE flags for ttm_tt object
1545 1546 1547
 *
 * @ttm: The ttm_tt object to compute the flags for
 * @mem: The memory registry backing this ttm_tt object
1548 1549
 *
 * Figure out the flags to use for a VM PDE (Page Directory Entry).
1550
 */
1551
uint64_t amdgpu_ttm_tt_pde_flags(struct ttm_tt *ttm, struct ttm_resource *mem)
A
Alex Deucher 已提交
1552
{
1553
	uint64_t flags = 0;
A
Alex Deucher 已提交
1554 1555 1556 1557

	if (mem && mem->mem_type != TTM_PL_SYSTEM)
		flags |= AMDGPU_PTE_VALID;

1558
	if (mem && mem->mem_type == TTM_PL_TT) {
A
Alex Deucher 已提交
1559 1560
		flags |= AMDGPU_PTE_SYSTEM;

1561
		if (ttm->caching == ttm_cached)
1562 1563
			flags |= AMDGPU_PTE_SNOOPED;
	}
A
Alex Deucher 已提交
1564

1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576
	return flags;
}

/**
 * amdgpu_ttm_tt_pte_flags - Compute PTE flags for ttm_tt object
 *
 * @ttm: The ttm_tt object to compute the flags for
 * @mem: The memory registry backing this ttm_tt object

 * Figure out the flags to use for a VM PTE (Page Table Entry).
 */
uint64_t amdgpu_ttm_tt_pte_flags(struct amdgpu_device *adev, struct ttm_tt *ttm,
1577
				 struct ttm_resource *mem)
1578 1579 1580
{
	uint64_t flags = amdgpu_ttm_tt_pde_flags(ttm, mem);

1581
	flags |= adev->gart.gart_pte_flags;
A
Alex Deucher 已提交
1582 1583 1584 1585 1586 1587 1588 1589
	flags |= AMDGPU_PTE_READABLE;

	if (!amdgpu_ttm_tt_is_readonly(ttm))
		flags |= AMDGPU_PTE_WRITEABLE;

	return flags;
}

1590
/**
1591 1592
 * amdgpu_ttm_bo_eviction_valuable - Check to see if we can evict a buffer
 * object.
1593
 *
1594 1595 1596
 * Return true if eviction is sensible. Called by ttm_mem_evict_first() on
 * behalf of ttm_bo_mem_force_space() which tries to evict buffer objects until
 * it can find space for a new object and by ttm_bo_force_list_clean() which is
1597 1598
 * used to clean out a memory space.
 */
1599 1600 1601
static bool amdgpu_ttm_bo_eviction_valuable(struct ttm_buffer_object *bo,
					    const struct ttm_place *place)
{
1602 1603
	unsigned long num_pages = bo->mem.num_pages;
	struct drm_mm_node *node = bo->mem.mm_node;
1604
	struct dma_resv_list *flist;
1605 1606 1607
	struct dma_fence *f;
	int i;

1608
	if (bo->type == ttm_bo_type_kernel &&
1609
	    !amdgpu_vm_evictable(ttm_to_amdgpu_bo(bo)))
1610 1611
		return false;

1612 1613 1614 1615
	/* If bo is a KFD BO, check if the bo belongs to the current process.
	 * If true, then return false as any KFD process needs all its BOs to
	 * be resident to run successfully
	 */
1616
	flist = dma_resv_get_list(bo->base.resv);
1617 1618 1619
	if (flist) {
		for (i = 0; i < flist->shared_count; ++i) {
			f = rcu_dereference_protected(flist->shared[i],
1620
				dma_resv_held(bo->base.resv));
1621 1622 1623 1624
			if (amdkfd_fence_check_mm(f, current->mm))
				return false;
		}
	}
1625

1626 1627
	switch (bo->mem.mem_type) {
	case TTM_PL_TT:
1628 1629 1630
		if (amdgpu_bo_is_amdgpu_bo(bo) &&
		    amdgpu_bo_encrypted(ttm_to_amdgpu_bo(bo)))
			return false;
1631
		return true;
1632

1633
	case TTM_PL_VRAM:
1634 1635 1636 1637 1638 1639 1640 1641 1642
		/* Check each drm MM node individually */
		while (num_pages) {
			if (place->fpfn < (node->start + node->size) &&
			    !(place->lpfn && place->lpfn <= node->start))
				return true;

			num_pages -= node->size;
			++node;
		}
1643
		return false;
1644

1645 1646
	default:
		break;
1647 1648 1649 1650 1651
	}

	return ttm_bo_eviction_valuable(bo, place);
}

1652
/**
1653
 * amdgpu_ttm_access_memory - Read or Write memory that backs a buffer object.
1654 1655 1656 1657 1658 1659 1660 1661 1662 1663
 *
 * @bo:  The buffer object to read/write
 * @offset:  Offset into buffer object
 * @buf:  Secondary buffer to write/read from
 * @len: Length in bytes of access
 * @write:  true if writing
 *
 * This is used to access VRAM that backs a buffer object via MMIO
 * access for debugging purposes.
 */
1664 1665 1666 1667
static int amdgpu_ttm_access_memory(struct ttm_buffer_object *bo,
				    unsigned long offset,
				    void *buf, int len, int write)
{
1668
	struct amdgpu_bo *abo = ttm_to_amdgpu_bo(bo);
1669
	struct amdgpu_device *adev = amdgpu_ttm_adev(abo->tbo.bdev);
1670
	struct drm_mm_node *nodes;
1671 1672 1673 1674 1675 1676 1677 1678
	uint32_t value = 0;
	int ret = 0;
	uint64_t pos;
	unsigned long flags;

	if (bo->mem.mem_type != TTM_PL_VRAM)
		return -EIO;

1679 1680 1681
	pos = offset;
	nodes = amdgpu_find_mm_node(&abo->tbo.mem, &pos);
	pos += (nodes->start << PAGE_SHIFT);
1682

1683
	while (len && pos < adev->gmc.mc_vram_size) {
1684
		uint64_t aligned_pos = pos & ~(uint64_t)3;
1685
		uint64_t bytes = 4 - (pos & 3);
1686 1687 1688 1689 1690 1691 1692 1693
		uint32_t shift = (pos & 3) * 8;
		uint32_t mask = 0xffffffff << shift;

		if (len < bytes) {
			mask &= 0xffffffff >> (bytes - len) * 8;
			bytes = len;
		}

1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715
		if (mask != 0xffffffff) {
			spin_lock_irqsave(&adev->mmio_idx_lock, flags);
			WREG32_NO_KIQ(mmMM_INDEX, ((uint32_t)aligned_pos) | 0x80000000);
			WREG32_NO_KIQ(mmMM_INDEX_HI, aligned_pos >> 31);
			if (!write || mask != 0xffffffff)
				value = RREG32_NO_KIQ(mmMM_DATA);
			if (write) {
				value &= ~mask;
				value |= (*(uint32_t *)buf << shift) & mask;
				WREG32_NO_KIQ(mmMM_DATA, value);
			}
			spin_unlock_irqrestore(&adev->mmio_idx_lock, flags);
			if (!write) {
				value = (value & mask) >> shift;
				memcpy(buf, &value, bytes);
			}
		} else {
			bytes = (nodes->start + nodes->size) << PAGE_SHIFT;
			bytes = min(bytes - pos, (uint64_t)len & ~0x3ull);

			amdgpu_device_vram_access(adev, pos, (uint32_t *)buf,
						  bytes, write);
1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730
		}

		ret += bytes;
		buf = (uint8_t *)buf + bytes;
		pos += bytes;
		len -= bytes;
		if (pos >= (nodes->start + nodes->size) << PAGE_SHIFT) {
			++nodes;
			pos = (nodes->start << PAGE_SHIFT);
		}
	}

	return ret;
}

1731 1732 1733 1734 1735 1736
static void
amdgpu_bo_delete_mem_notify(struct ttm_buffer_object *bo)
{
	amdgpu_bo_move_notify(bo, false, NULL);
}

A
Alex Deucher 已提交
1737 1738 1739 1740
static struct ttm_bo_driver amdgpu_bo_driver = {
	.ttm_tt_create = &amdgpu_ttm_tt_create,
	.ttm_tt_populate = &amdgpu_ttm_tt_populate,
	.ttm_tt_unpopulate = &amdgpu_ttm_tt_unpopulate,
1741
	.ttm_tt_destroy = &amdgpu_ttm_backend_destroy,
1742
	.eviction_valuable = amdgpu_ttm_bo_eviction_valuable,
A
Alex Deucher 已提交
1743 1744 1745
	.evict_flags = &amdgpu_evict_flags,
	.move = &amdgpu_bo_move,
	.verify_access = &amdgpu_verify_access,
1746
	.delete_mem_notify = &amdgpu_bo_delete_mem_notify,
1747
	.release_notify = &amdgpu_bo_release_notify,
A
Alex Deucher 已提交
1748
	.io_mem_reserve = &amdgpu_ttm_io_mem_reserve,
1749
	.io_mem_pfn = amdgpu_ttm_io_mem_pfn,
1750 1751
	.access_memory = &amdgpu_ttm_access_memory,
	.del_from_lru_notify = &amdgpu_vm_del_from_lru_notify
A
Alex Deucher 已提交
1752 1753
};

1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765
/*
 * Firmware Reservation functions
 */
/**
 * amdgpu_ttm_fw_reserve_vram_fini - free fw reserved vram
 *
 * @adev: amdgpu_device pointer
 *
 * free fw reserved vram if it has been reserved.
 */
static void amdgpu_ttm_fw_reserve_vram_fini(struct amdgpu_device *adev)
{
1766 1767
	amdgpu_bo_free_kernel(&adev->mman.fw_vram_usage_reserved_bo,
		NULL, &adev->mman.fw_vram_usage_va);
1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778
}

/**
 * amdgpu_ttm_fw_reserve_vram_init - create bo vram reservation from fw
 *
 * @adev: amdgpu_device pointer
 *
 * create bo vram reservation from fw.
 */
static int amdgpu_ttm_fw_reserve_vram_init(struct amdgpu_device *adev)
{
1779 1780
	uint64_t vram_size = adev->gmc.visible_vram_size;

1781 1782
	adev->mman.fw_vram_usage_va = NULL;
	adev->mman.fw_vram_usage_reserved_bo = NULL;
1783

1784 1785
	if (adev->mman.fw_vram_usage_size == 0 ||
	    adev->mman.fw_vram_usage_size > vram_size)
1786
		return 0;
1787

1788
	return amdgpu_bo_create_kernel_at(adev,
1789 1790
					  adev->mman.fw_vram_usage_start_offset,
					  adev->mman.fw_vram_usage_size,
1791
					  AMDGPU_GEM_DOMAIN_VRAM,
1792 1793
					  &adev->mman.fw_vram_usage_reserved_bo,
					  &adev->mman.fw_vram_usage_va);
1794
}
1795

1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817
/*
 * Memoy training reservation functions
 */

/**
 * amdgpu_ttm_training_reserve_vram_fini - free memory training reserved vram
 *
 * @adev: amdgpu_device pointer
 *
 * free memory training reserved vram if it has been reserved.
 */
static int amdgpu_ttm_training_reserve_vram_fini(struct amdgpu_device *adev)
{
	struct psp_memory_training_context *ctx = &adev->psp.mem_train_ctx;

	ctx->init = PSP_MEM_TRAIN_NOT_SUPPORT;
	amdgpu_bo_free_kernel(&ctx->c2p_bo, NULL, NULL);
	ctx->c2p_bo = NULL;

	return 0;
}

1818
static void amdgpu_ttm_training_data_block_init(struct amdgpu_device *adev)
1819
{
1820
	struct psp_memory_training_context *ctx = &adev->psp.mem_train_ctx;
1821

1822
	memset(ctx, 0, sizeof(*ctx));
1823

1824
	ctx->c2p_train_data_offset =
1825
		ALIGN((adev->gmc.mc_vram_size - adev->mman.discovery_tmr_size - SZ_1M), SZ_1M);
1826 1827 1828 1829 1830 1831 1832 1833 1834
	ctx->p2c_train_data_offset =
		(adev->gmc.mc_vram_size - GDDR6_MEM_TRAINING_OFFSET);
	ctx->train_data_size =
		GDDR6_MEM_TRAINING_DATA_SIZE_IN_BYTES;
	
	DRM_DEBUG("train_data_size:%llx,p2c_train_data_offset:%llx,c2p_train_data_offset:%llx.\n",
			ctx->train_data_size,
			ctx->p2c_train_data_offset,
			ctx->c2p_train_data_offset);
1835 1836
}

1837 1838 1839
/*
 * reserve TMR memory at the top of VRAM which holds
 * IP Discovery data and is protected by PSP.
1840
 */
1841
static int amdgpu_ttm_reserve_tmr(struct amdgpu_device *adev)
1842 1843 1844
{
	int ret;
	struct psp_memory_training_context *ctx = &adev->psp.mem_train_ctx;
1845
	bool mem_train_support = false;
1846

1847
	if (!amdgpu_sriov_vf(adev)) {
1848
		ret = amdgpu_mem_train_support(adev);
1849
		if (ret == 1)
1850
			mem_train_support = true;
1851
		else if (ret == -1)
1852 1853
			return -EINVAL;
		else
1854
			DRM_DEBUG("memory training does not support!\n");
1855 1856
	}

1857 1858 1859 1860 1861 1862 1863
	/*
	 * Query reserved tmr size through atom firmwareinfo for Sienna_Cichlid and onwards for all
	 * the use cases (IP discovery/G6 memory training/profiling/diagnostic data.etc)
	 *
	 * Otherwise, fallback to legacy approach to check and reserve tmr block for ip
	 * discovery data and G6 memory training data respectively
	 */
1864
	adev->mman.discovery_tmr_size =
1865
		amdgpu_atomfirmware_get_fw_reserved_fb_size(adev);
1866 1867
	if (!adev->mman.discovery_tmr_size)
		adev->mman.discovery_tmr_size = DISCOVERY_TMR_OFFSET;
1868 1869 1870 1871 1872

	if (mem_train_support) {
		/* reserve vram for mem train according to TMR location */
		amdgpu_ttm_training_data_block_init(adev);
		ret = amdgpu_bo_create_kernel_at(adev,
1873 1874 1875 1876 1877
					 ctx->c2p_train_data_offset,
					 ctx->train_data_size,
					 AMDGPU_GEM_DOMAIN_VRAM,
					 &ctx->c2p_bo,
					 NULL);
1878 1879 1880 1881
		if (ret) {
			DRM_ERROR("alloc c2p_bo failed(%d)!\n", ret);
			amdgpu_ttm_training_reserve_vram_fini(adev);
			return ret;
1882
		}
1883
		ctx->init = PSP_MEM_TRAIN_RESERVE_SUCCESS;
1884
	}
1885 1886

	ret = amdgpu_bo_create_kernel_at(adev,
1887 1888
				adev->gmc.real_vram_size - adev->mman.discovery_tmr_size,
				adev->mman.discovery_tmr_size,
1889
				AMDGPU_GEM_DOMAIN_VRAM,
1890
				&adev->mman.discovery_memory,
1891
				NULL);
1892
	if (ret) {
1893
		DRM_ERROR("alloc tmr failed(%d)!\n", ret);
1894
		amdgpu_bo_free_kernel(&adev->mman.discovery_memory, NULL, NULL);
1895
		return ret;
1896 1897 1898 1899 1900
	}

	return 0;
}

1901
/**
1902 1903
 * amdgpu_ttm_init - Init the memory management (ttm) as well as various
 * gtt/vram related fields.
1904 1905 1906 1907 1908 1909
 *
 * This initializes all of the memory space pools that the TTM layer
 * will need such as the GTT space (system memory mapped to the device),
 * VRAM (on-board memory), and on-chip memories (GDS, GWS, OA) which
 * can be mapped per VMID.
 */
A
Alex Deucher 已提交
1910 1911
int amdgpu_ttm_init(struct amdgpu_device *adev)
{
1912
	uint64_t gtt_size;
A
Alex Deucher 已提交
1913
	int r;
1914
	u64 vis_vram_limit;
A
Alex Deucher 已提交
1915

1916 1917
	mutex_init(&adev->mman.gtt_window_lock);

A
Alex Deucher 已提交
1918 1919 1920
	/* No others user of address space so set it to 0 */
	r = ttm_bo_device_init(&adev->mman.bdev,
			       &amdgpu_bo_driver,
1921 1922
			       adev_to_drm(adev)->anon_inode->i_mapping,
			       adev_to_drm(adev)->vma_offset_manager,
1923
			       dma_addressing_limited(adev->dev));
A
Alex Deucher 已提交
1924 1925 1926 1927 1928
	if (r) {
		DRM_ERROR("failed initializing buffer object driver(%d).\n", r);
		return r;
	}
	adev->mman.initialized = true;
1929 1930 1931 1932

	/* We opt to avoid OOM on system pages allocations */
	adev->mman.bdev.no_retry = true;

1933
	/* Initialize VRAM pool with all of VRAM divided into pages */
1934
	r = amdgpu_vram_mgr_init(adev);
A
Alex Deucher 已提交
1935 1936 1937 1938
	if (r) {
		DRM_ERROR("Failed initializing VRAM heap.\n");
		return r;
	}
1939 1940 1941 1942

	/* Reduce size of CPU-visible VRAM if requested */
	vis_vram_limit = (u64)amdgpu_vis_vram_limit * 1024 * 1024;
	if (amdgpu_vis_vram_limit > 0 &&
1943 1944
	    vis_vram_limit <= adev->gmc.visible_vram_size)
		adev->gmc.visible_vram_size = vis_vram_limit;
1945

A
Alex Deucher 已提交
1946
	/* Change the size here instead of the init above so only lpfn is affected */
1947
	amdgpu_ttm_set_buffer_funcs_status(adev, false);
1948 1949 1950 1951
#ifdef CONFIG_64BIT
	adev->mman.aper_base_kaddr = ioremap_wc(adev->gmc.aper_base,
						adev->gmc.visible_vram_size);
#endif
A
Alex Deucher 已提交
1952

1953 1954 1955 1956
	/*
	 *The reserved vram for firmware must be pinned to the specified
	 *place on the VRAM, so reserve it early.
	 */
1957
	r = amdgpu_ttm_fw_reserve_vram_init(adev);
1958 1959 1960 1961
	if (r) {
		return r;
	}

1962
	/*
1963 1964 1965
	 * only NAVI10 and onwards ASIC support for IP discovery.
	 * If IP discovery enabled, a block of memory should be
	 * reserved for IP discovey.
1966
	 */
1967
	if (adev->mman.discovery_bin) {
1968
		r = amdgpu_ttm_reserve_tmr(adev);
1969 1970 1971
		if (r)
			return r;
	}
1972

1973 1974 1975 1976
	/* allocate memory as required for VGA
	 * This is used for VGA emulation and pre-OS scanout buffers to
	 * avoid display artifacts while transitioning between pre-OS
	 * and driver.  */
1977
	r = amdgpu_bo_create_kernel_at(adev, 0, adev->mman.stolen_vga_size,
1978
				       AMDGPU_GEM_DOMAIN_VRAM,
1979
				       &adev->mman.stolen_vga_memory,
1980
				       NULL);
C
Christian König 已提交
1981 1982
	if (r)
		return r;
1983 1984
	r = amdgpu_bo_create_kernel_at(adev, adev->mman.stolen_vga_size,
				       adev->mman.stolen_extended_size,
1985
				       AMDGPU_GEM_DOMAIN_VRAM,
1986
				       &adev->mman.stolen_extended_memory,
1987
				       NULL);
C
Christian König 已提交
1988 1989
	if (r)
		return r;
1990

A
Alex Deucher 已提交
1991
	DRM_INFO("amdgpu: %uM of VRAM memory ready\n",
1992
		 (unsigned) (adev->gmc.real_vram_size / (1024 * 1024)));
1993

1994 1995
	/* Compute GTT size, either bsaed on 3/4th the size of RAM size
	 * or whatever the user passed on module init */
1996 1997 1998 1999
	if (amdgpu_gtt_size == -1) {
		struct sysinfo si;

		si_meminfo(&si);
2000
		gtt_size = min(max((AMDGPU_DEFAULT_GTT_SIZE_MB << 20),
2001
			       adev->gmc.mc_vram_size),
2002 2003 2004
			       ((uint64_t)si.totalram * si.mem_unit * 3/4));
	}
	else
2005
		gtt_size = (uint64_t)amdgpu_gtt_size << 20;
2006 2007

	/* Initialize GTT memory pool */
2008
	r = amdgpu_gtt_mgr_init(adev, gtt_size);
A
Alex Deucher 已提交
2009 2010 2011 2012 2013
	if (r) {
		DRM_ERROR("Failed initializing GTT heap.\n");
		return r;
	}
	DRM_INFO("amdgpu: %uM of GTT memory ready.\n",
2014
		 (unsigned)(gtt_size / (1024 * 1024)));
A
Alex Deucher 已提交
2015

2016
	/* Initialize various on-chip memory pools */
2017
	r = amdgpu_ttm_init_on_chip(adev, AMDGPU_PL_GDS, adev->gds.gds_size);
2018 2019 2020
	if (r) {
		DRM_ERROR("Failed initializing GDS heap.\n");
		return r;
A
Alex Deucher 已提交
2021 2022
	}

2023
	r = amdgpu_ttm_init_on_chip(adev, AMDGPU_PL_GWS, adev->gds.gws_size);
2024 2025 2026
	if (r) {
		DRM_ERROR("Failed initializing gws heap.\n");
		return r;
A
Alex Deucher 已提交
2027 2028
	}

2029
	r = amdgpu_ttm_init_on_chip(adev, AMDGPU_PL_OA, adev->gds.oa_size);
2030 2031 2032
	if (r) {
		DRM_ERROR("Failed initializing oa heap.\n");
		return r;
A
Alex Deucher 已提交
2033 2034 2035 2036 2037
	}

	return 0;
}

2038
/**
2039
 * amdgpu_ttm_late_init - Handle any late initialization for amdgpu_ttm
2040
 */
2041 2042
void amdgpu_ttm_late_init(struct amdgpu_device *adev)
{
2043
	/* return the VGA stolen memory (if any) back to VRAM */
2044 2045 2046
	if (!adev->mman.keep_stolen_vga_memory)
		amdgpu_bo_free_kernel(&adev->mman.stolen_vga_memory, NULL, NULL);
	amdgpu_bo_free_kernel(&adev->mman.stolen_extended_memory, NULL, NULL);
2047 2048
}

2049 2050 2051
/**
 * amdgpu_ttm_fini - De-initialize the TTM memory pools
 */
A
Alex Deucher 已提交
2052 2053 2054 2055
void amdgpu_ttm_fini(struct amdgpu_device *adev)
{
	if (!adev->mman.initialized)
		return;
2056

2057
	amdgpu_ttm_training_reserve_vram_fini(adev);
2058
	/* return the stolen vga memory back to VRAM */
2059 2060
	if (adev->mman.keep_stolen_vga_memory)
		amdgpu_bo_free_kernel(&adev->mman.stolen_vga_memory, NULL, NULL);
2061
	/* return the IP Discovery TMR memory back to VRAM */
2062
	amdgpu_bo_free_kernel(&adev->mman.discovery_memory, NULL, NULL);
2063
	amdgpu_ttm_fw_reserve_vram_fini(adev);
2064

2065 2066 2067
	if (adev->mman.aper_base_kaddr)
		iounmap(adev->mman.aper_base_kaddr);
	adev->mman.aper_base_kaddr = NULL;
2068

2069 2070
	amdgpu_vram_mgr_fini(adev);
	amdgpu_gtt_mgr_fini(adev);
2071 2072 2073
	ttm_range_man_fini(&adev->mman.bdev, AMDGPU_PL_GDS);
	ttm_range_man_fini(&adev->mman.bdev, AMDGPU_PL_GWS);
	ttm_range_man_fini(&adev->mman.bdev, AMDGPU_PL_OA);
A
Alex Deucher 已提交
2074 2075 2076 2077 2078
	ttm_bo_device_release(&adev->mman.bdev);
	adev->mman.initialized = false;
	DRM_INFO("amdgpu: ttm finalized\n");
}

2079 2080 2081 2082 2083 2084 2085 2086 2087 2088
/**
 * amdgpu_ttm_set_buffer_funcs_status - enable/disable use of buffer functions
 *
 * @adev: amdgpu_device pointer
 * @enable: true when we can use buffer functions.
 *
 * Enable/disable use of buffer functions during suspend/resume. This should
 * only be called at bootup or when userspace isn't running.
 */
void amdgpu_ttm_set_buffer_funcs_status(struct amdgpu_device *adev, bool enable)
A
Alex Deucher 已提交
2089
{
2090
	struct ttm_resource_manager *man = ttm_manager_type(&adev->mman.bdev, TTM_PL_VRAM);
2091
	uint64_t size;
2092
	int r;
A
Alex Deucher 已提交
2093

2094
	if (!adev->mman.initialized || amdgpu_in_reset(adev) ||
2095
	    adev->mman.buffer_funcs_enabled == enable)
A
Alex Deucher 已提交
2096 2097
		return;

2098 2099
	if (enable) {
		struct amdgpu_ring *ring;
N
Nirmoy Das 已提交
2100
		struct drm_gpu_scheduler *sched;
2101 2102

		ring = adev->mman.buffer_funcs_ring;
N
Nirmoy Das 已提交
2103 2104
		sched = &ring->sched;
		r = drm_sched_entity_init(&adev->mman.entity,
2105
					  DRM_SCHED_PRIORITY_KERNEL, &sched,
N
Nirmoy Das 已提交
2106
					  1, NULL);
2107 2108 2109 2110 2111 2112
		if (r) {
			DRM_ERROR("Failed setting up TTM BO move entity (%d)\n",
				  r);
			return;
		}
	} else {
2113
		drm_sched_entity_destroy(&adev->mman.entity);
2114 2115
		dma_fence_put(man->move);
		man->move = NULL;
2116 2117
	}

A
Alex Deucher 已提交
2118
	/* this just adjusts TTM size idea, which sets lpfn to the correct value */
2119 2120 2121 2122
	if (enable)
		size = adev->gmc.real_vram_size;
	else
		size = adev->gmc.visible_vram_size;
A
Alex Deucher 已提交
2123
	man->size = size >> PAGE_SHIFT;
2124
	adev->mman.buffer_funcs_enabled = enable;
A
Alex Deucher 已提交
2125 2126
}

2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156
static vm_fault_t amdgpu_ttm_fault(struct vm_fault *vmf)
{
	struct ttm_buffer_object *bo = vmf->vma->vm_private_data;
	vm_fault_t ret;

	ret = ttm_bo_vm_reserve(bo, vmf);
	if (ret)
		return ret;

	ret = amdgpu_bo_fault_reserve_notify(bo);
	if (ret)
		goto unlock;

	ret = ttm_bo_vm_fault_reserved(vmf, vmf->vma->vm_page_prot,
				       TTM_BO_VM_NUM_PREFAULT, 1);
	if (ret == VM_FAULT_RETRY && !(vmf->flags & FAULT_FLAG_RETRY_NOWAIT))
		return ret;

unlock:
	dma_resv_unlock(bo->base.resv);
	return ret;
}

static struct vm_operations_struct amdgpu_ttm_vm_ops = {
	.fault = amdgpu_ttm_fault,
	.open = ttm_bo_vm_open,
	.close = ttm_bo_vm_close,
	.access = ttm_bo_vm_access
};

A
Alex Deucher 已提交
2157 2158
int amdgpu_mmap(struct file *filp, struct vm_area_struct *vma)
{
2159
	struct drm_file *file_priv = filp->private_data;
2160
	struct amdgpu_device *adev = drm_to_adev(file_priv->minor->dev);
2161
	int r;
A
Alex Deucher 已提交
2162

2163 2164 2165
	r = ttm_bo_mmap(filp, vma, &adev->mman.bdev);
	if (unlikely(r != 0))
		return r;
C
Christian König 已提交
2166

2167 2168
	vma->vm_ops = &amdgpu_ttm_vm_ops;
	return 0;
A
Alex Deucher 已提交
2169 2170
}

2171 2172
int amdgpu_copy_buffer(struct amdgpu_ring *ring, uint64_t src_offset,
		       uint64_t dst_offset, uint32_t byte_count,
2173
		       struct dma_resv *resv,
2174
		       struct dma_fence **fence, bool direct_submit,
2175
		       bool vm_needs_flush, bool tmz)
A
Alex Deucher 已提交
2176
{
2177 2178
	enum amdgpu_ib_pool_type pool = direct_submit ? AMDGPU_IB_POOL_DIRECT :
		AMDGPU_IB_POOL_DELAYED;
A
Alex Deucher 已提交
2179
	struct amdgpu_device *adev = ring->adev;
2180 2181
	struct amdgpu_job *job;

A
Alex Deucher 已提交
2182 2183 2184 2185 2186
	uint32_t max_bytes;
	unsigned num_loops, num_dw;
	unsigned i;
	int r;

2187
	if (direct_submit && !ring->sched.ready) {
2188 2189 2190 2191
		DRM_ERROR("Trying to move memory with ring turned off.\n");
		return -EINVAL;
	}

A
Alex Deucher 已提交
2192 2193
	max_bytes = adev->mman.buffer_funcs->copy_max_bytes;
	num_loops = DIV_ROUND_UP(byte_count, max_bytes);
L
Luben Tuikov 已提交
2194
	num_dw = ALIGN(num_loops * adev->mman.buffer_funcs->copy_num_dw, 8);
2195

2196
	r = amdgpu_job_alloc_with_ib(adev, num_dw * 4, pool, &job);
2197
	if (r)
2198
		return r;
2199

2200
	if (vm_needs_flush) {
2201
		job->vm_pd_addr = amdgpu_gmc_pd_addr(adev->gart.bo);
2202 2203
		job->vm_needs_flush = true;
	}
2204
	if (resv) {
2205
		r = amdgpu_sync_resv(adev, &job->sync, resv,
2206 2207
				     AMDGPU_SYNC_ALWAYS,
				     AMDGPU_FENCE_OWNER_UNDEFINED);
2208 2209 2210 2211
		if (r) {
			DRM_ERROR("sync failed (%d).\n", r);
			goto error_free;
		}
A
Alex Deucher 已提交
2212 2213 2214 2215 2216
	}

	for (i = 0; i < num_loops; i++) {
		uint32_t cur_size_in_bytes = min(byte_count, max_bytes);

2217
		amdgpu_emit_copy_buffer(adev, &job->ibs[0], src_offset,
2218
					dst_offset, cur_size_in_bytes, tmz);
A
Alex Deucher 已提交
2219 2220 2221 2222 2223 2224

		src_offset += cur_size_in_bytes;
		dst_offset += cur_size_in_bytes;
		byte_count -= cur_size_in_bytes;
	}

2225 2226
	amdgpu_ring_pad_ib(ring, &job->ibs[0]);
	WARN_ON(job->ibs[0].length_dw > num_dw);
2227 2228 2229
	if (direct_submit)
		r = amdgpu_job_submit_direct(job, ring, fence);
	else
2230
		r = amdgpu_job_submit(job, &adev->mman.entity,
2231
				      AMDGPU_FENCE_OWNER_UNDEFINED, fence);
2232 2233
	if (r)
		goto error_free;
A
Alex Deucher 已提交
2234

2235
	return r;
2236

2237
error_free:
2238
	amdgpu_job_free(job);
2239
	DRM_ERROR("Error scheduling IBs (%d)\n", r);
2240
	return r;
A
Alex Deucher 已提交
2241 2242
}

2243
int amdgpu_fill_buffer(struct amdgpu_bo *bo,
2244
		       uint32_t src_data,
2245
		       struct dma_resv *resv,
2246
		       struct dma_fence **fence)
2247
{
2248
	struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
2249
	uint32_t max_bytes = adev->mman.buffer_funcs->fill_max_bytes;
2250 2251
	struct amdgpu_ring *ring = adev->mman.buffer_funcs_ring;

2252 2253
	struct drm_mm_node *mm_node;
	unsigned long num_pages;
2254
	unsigned int num_loops, num_dw;
2255 2256

	struct amdgpu_job *job;
2257 2258
	int r;

2259
	if (!adev->mman.buffer_funcs_enabled) {
2260 2261 2262 2263
		DRM_ERROR("Trying to clear memory with ring turned off.\n");
		return -EINVAL;
	}

2264
	if (bo->tbo.mem.mem_type == TTM_PL_TT) {
2265
		r = amdgpu_ttm_alloc_gart(&bo->tbo);
2266 2267 2268 2269
		if (r)
			return r;
	}

2270 2271 2272 2273
	num_pages = bo->tbo.num_pages;
	mm_node = bo->tbo.mem.mm_node;
	num_loops = 0;
	while (num_pages) {
2274
		uint64_t byte_count = mm_node->size << PAGE_SHIFT;
2275

2276
		num_loops += DIV_ROUND_UP_ULL(byte_count, max_bytes);
2277 2278 2279
		num_pages -= mm_node->size;
		++mm_node;
	}
2280
	num_dw = num_loops * adev->mman.buffer_funcs->fill_num_dw;
2281 2282

	/* for IB padding */
2283
	num_dw += 64;
2284

2285 2286
	r = amdgpu_job_alloc_with_ib(adev, num_dw * 4, AMDGPU_IB_POOL_DELAYED,
				     &job);
2287 2288 2289 2290 2291
	if (r)
		return r;

	if (resv) {
		r = amdgpu_sync_resv(adev, &job->sync, resv,
2292 2293
				     AMDGPU_SYNC_ALWAYS,
				     AMDGPU_FENCE_OWNER_UNDEFINED);
2294 2295 2296 2297 2298 2299
		if (r) {
			DRM_ERROR("sync failed (%d).\n", r);
			goto error_free;
		}
	}

2300 2301
	num_pages = bo->tbo.num_pages;
	mm_node = bo->tbo.mem.mm_node;
2302

2303
	while (num_pages) {
2304
		uint64_t byte_count = mm_node->size << PAGE_SHIFT;
2305
		uint64_t dst_addr;
2306

2307
		dst_addr = amdgpu_mm_node_addr(&bo->tbo, mm_node, &bo->tbo.mem);
2308
		while (byte_count) {
2309 2310
			uint32_t cur_size_in_bytes = min_t(uint64_t, byte_count,
							   max_bytes);
2311

2312 2313
			amdgpu_emit_fill_buffer(adev, &job->ibs[0], src_data,
						dst_addr, cur_size_in_bytes);
2314 2315 2316 2317 2318 2319 2320

			dst_addr += cur_size_in_bytes;
			byte_count -= cur_size_in_bytes;
		}

		num_pages -= mm_node->size;
		++mm_node;
2321 2322 2323 2324
	}

	amdgpu_ring_pad_ib(ring, &job->ibs[0]);
	WARN_ON(job->ibs[0].length_dw > num_dw);
2325
	r = amdgpu_job_submit(job, &adev->mman.entity,
2326
			      AMDGPU_FENCE_OWNER_UNDEFINED, fence);
2327 2328 2329 2330 2331 2332 2333 2334 2335 2336
	if (r)
		goto error_free;

	return 0;

error_free:
	amdgpu_job_free(job);
	return r;
}

A
Alex Deucher 已提交
2337 2338 2339 2340 2341
#if defined(CONFIG_DEBUG_FS)

static int amdgpu_mm_dump_table(struct seq_file *m, void *data)
{
	struct drm_info_node *node = (struct drm_info_node *)m->private;
2342
	unsigned ttm_pl = (uintptr_t)node->info_ent->data;
A
Alex Deucher 已提交
2343
	struct drm_device *dev = node->minor->dev;
2344
	struct amdgpu_device *adev = drm_to_adev(dev);
2345
	struct ttm_resource_manager *man = ttm_manager_type(&adev->mman.bdev, ttm_pl);
D
Daniel Vetter 已提交
2346
	struct drm_printer p = drm_seq_file_printer(m);
A
Alex Deucher 已提交
2347

2348
	man->func->debug(man, &p);
D
Daniel Vetter 已提交
2349
	return 0;
A
Alex Deucher 已提交
2350 2351
}

2352
static const struct drm_info_list amdgpu_ttm_debugfs_list[] = {
2353 2354 2355 2356 2357
	{"amdgpu_vram_mm", amdgpu_mm_dump_table, 0, (void *)TTM_PL_VRAM},
	{"amdgpu_gtt_mm", amdgpu_mm_dump_table, 0, (void *)TTM_PL_TT},
	{"amdgpu_gds_mm", amdgpu_mm_dump_table, 0, (void *)AMDGPU_PL_GDS},
	{"amdgpu_gws_mm", amdgpu_mm_dump_table, 0, (void *)AMDGPU_PL_GWS},
	{"amdgpu_oa_mm", amdgpu_mm_dump_table, 0, (void *)AMDGPU_PL_OA},
A
Alex Deucher 已提交
2358 2359 2360 2361 2362 2363
	{"ttm_page_pool", ttm_page_alloc_debugfs, 0, NULL},
#ifdef CONFIG_SWIOTLB
	{"ttm_dma_page_pool", ttm_dma_page_alloc_debugfs, 0, NULL}
#endif
};

2364 2365 2366 2367 2368
/**
 * amdgpu_ttm_vram_read - Linear read access to VRAM
 *
 * Accesses VRAM via MMIO for debugging purposes.
 */
A
Alex Deucher 已提交
2369 2370 2371
static ssize_t amdgpu_ttm_vram_read(struct file *f, char __user *buf,
				    size_t size, loff_t *pos)
{
A
Al Viro 已提交
2372
	struct amdgpu_device *adev = file_inode(f)->i_private;
A
Alex Deucher 已提交
2373 2374 2375 2376 2377
	ssize_t result = 0;

	if (size & 0x3 || *pos & 0x3)
		return -EINVAL;

2378
	if (*pos >= adev->gmc.mc_vram_size)
2379 2380
		return -ENXIO;

2381
	size = min(size, (size_t)(adev->gmc.mc_vram_size - *pos));
A
Alex Deucher 已提交
2382
	while (size) {
2383 2384
		size_t bytes = min(size, AMDGPU_TTM_VRAM_MAX_DW_READ * 4);
		uint32_t value[AMDGPU_TTM_VRAM_MAX_DW_READ];
A
Alex Deucher 已提交
2385

2386
		amdgpu_device_vram_access(adev, *pos, value, bytes, false);
2387 2388
		if (copy_to_user(buf, value, bytes))
			return -EFAULT;
A
Alex Deucher 已提交
2389

2390 2391 2392 2393
		result += bytes;
		buf += bytes;
		*pos += bytes;
		size -= bytes;
A
Alex Deucher 已提交
2394 2395 2396 2397 2398
	}

	return result;
}

2399 2400 2401 2402 2403
/**
 * amdgpu_ttm_vram_write - Linear write access to VRAM
 *
 * Accesses VRAM via MMIO for debugging purposes.
 */
2404 2405 2406 2407 2408 2409 2410 2411 2412 2413
static ssize_t amdgpu_ttm_vram_write(struct file *f, const char __user *buf,
				    size_t size, loff_t *pos)
{
	struct amdgpu_device *adev = file_inode(f)->i_private;
	ssize_t result = 0;
	int r;

	if (size & 0x3 || *pos & 0x3)
		return -EINVAL;

2414
	if (*pos >= adev->gmc.mc_vram_size)
2415 2416 2417 2418 2419 2420
		return -ENXIO;

	while (size) {
		unsigned long flags;
		uint32_t value;

2421
		if (*pos >= adev->gmc.mc_vram_size)
2422 2423 2424 2425 2426 2427 2428
			return result;

		r = get_user(value, (uint32_t *)buf);
		if (r)
			return r;

		spin_lock_irqsave(&adev->mmio_idx_lock, flags);
2429 2430 2431
		WREG32_NO_KIQ(mmMM_INDEX, ((uint32_t)*pos) | 0x80000000);
		WREG32_NO_KIQ(mmMM_INDEX_HI, *pos >> 31);
		WREG32_NO_KIQ(mmMM_DATA, value);
2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442
		spin_unlock_irqrestore(&adev->mmio_idx_lock, flags);

		result += 4;
		buf += 4;
		*pos += 4;
		size -= 4;
	}

	return result;
}

A
Alex Deucher 已提交
2443 2444 2445
static const struct file_operations amdgpu_ttm_vram_fops = {
	.owner = THIS_MODULE,
	.read = amdgpu_ttm_vram_read,
2446 2447
	.write = amdgpu_ttm_vram_write,
	.llseek = default_llseek,
A
Alex Deucher 已提交
2448 2449
};

2450 2451
#ifdef CONFIG_DRM_AMDGPU_GART_DEBUGFS

2452 2453 2454
/**
 * amdgpu_ttm_gtt_read - Linear read access to GTT memory
 */
A
Alex Deucher 已提交
2455 2456 2457
static ssize_t amdgpu_ttm_gtt_read(struct file *f, char __user *buf,
				   size_t size, loff_t *pos)
{
A
Al Viro 已提交
2458
	struct amdgpu_device *adev = file_inode(f)->i_private;
A
Alex Deucher 已提交
2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501
	ssize_t result = 0;
	int r;

	while (size) {
		loff_t p = *pos / PAGE_SIZE;
		unsigned off = *pos & ~PAGE_MASK;
		size_t cur_size = min_t(size_t, size, PAGE_SIZE - off);
		struct page *page;
		void *ptr;

		if (p >= adev->gart.num_cpu_pages)
			return result;

		page = adev->gart.pages[p];
		if (page) {
			ptr = kmap(page);
			ptr += off;

			r = copy_to_user(buf, ptr, cur_size);
			kunmap(adev->gart.pages[p]);
		} else
			r = clear_user(buf, cur_size);

		if (r)
			return -EFAULT;

		result += cur_size;
		buf += cur_size;
		*pos += cur_size;
		size -= cur_size;
	}

	return result;
}

static const struct file_operations amdgpu_ttm_gtt_fops = {
	.owner = THIS_MODULE,
	.read = amdgpu_ttm_gtt_read,
	.llseek = default_llseek
};

#endif

2502 2503 2504 2505 2506 2507 2508
/**
 * amdgpu_iomem_read - Virtual read access to GPU mapped memory
 *
 * This function is used to read memory that has been mapped to the
 * GPU and the known addresses are not physical addresses but instead
 * bus addresses (e.g., what you'd put in an IB or ring buffer).
 */
2509 2510
static ssize_t amdgpu_iomem_read(struct file *f, char __user *buf,
				 size_t size, loff_t *pos)
2511 2512 2513
{
	struct amdgpu_device *adev = file_inode(f)->i_private;
	struct iommu_domain *dom;
2514 2515
	ssize_t result = 0;
	int r;
2516

2517
	/* retrieve the IOMMU domain if any for this device */
2518
	dom = iommu_get_domain_for_dev(adev->dev);
2519

2520 2521 2522 2523 2524 2525 2526 2527 2528 2529
	while (size) {
		phys_addr_t addr = *pos & PAGE_MASK;
		loff_t off = *pos & ~PAGE_MASK;
		size_t bytes = PAGE_SIZE - off;
		unsigned long pfn;
		struct page *p;
		void *ptr;

		bytes = bytes < size ? bytes : size;

2530 2531 2532 2533
		/* Translate the bus address to a physical address.  If
		 * the domain is NULL it means there is no IOMMU active
		 * and the address translation is the identity
		 */
2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544
		addr = dom ? iommu_iova_to_phys(dom, addr) : addr;

		pfn = addr >> PAGE_SHIFT;
		if (!pfn_valid(pfn))
			return -EPERM;

		p = pfn_to_page(pfn);
		if (p->mapping != adev->mman.bdev.dev_mapping)
			return -EPERM;

		ptr = kmap(p);
2545
		r = copy_to_user(buf, ptr + off, bytes);
2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557
		kunmap(p);
		if (r)
			return -EFAULT;

		size -= bytes;
		*pos += bytes;
		result += bytes;
	}

	return result;
}

2558 2559 2560 2561 2562 2563 2564
/**
 * amdgpu_iomem_write - Virtual write access to GPU mapped memory
 *
 * This function is used to write memory that has been mapped to the
 * GPU and the known addresses are not physical addresses but instead
 * bus addresses (e.g., what you'd put in an IB or ring buffer).
 */
2565 2566 2567 2568 2569 2570 2571
static ssize_t amdgpu_iomem_write(struct file *f, const char __user *buf,
				 size_t size, loff_t *pos)
{
	struct amdgpu_device *adev = file_inode(f)->i_private;
	struct iommu_domain *dom;
	ssize_t result = 0;
	int r;
2572 2573

	dom = iommu_get_domain_for_dev(adev->dev);
2574

2575 2576 2577 2578 2579 2580 2581 2582 2583
	while (size) {
		phys_addr_t addr = *pos & PAGE_MASK;
		loff_t off = *pos & ~PAGE_MASK;
		size_t bytes = PAGE_SIZE - off;
		unsigned long pfn;
		struct page *p;
		void *ptr;

		bytes = bytes < size ? bytes : size;
2584

2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595
		addr = dom ? iommu_iova_to_phys(dom, addr) : addr;

		pfn = addr >> PAGE_SHIFT;
		if (!pfn_valid(pfn))
			return -EPERM;

		p = pfn_to_page(pfn);
		if (p->mapping != adev->mman.bdev.dev_mapping)
			return -EPERM;

		ptr = kmap(p);
2596
		r = copy_from_user(ptr + off, buf, bytes);
2597 2598 2599 2600 2601 2602 2603 2604 2605 2606
		kunmap(p);
		if (r)
			return -EFAULT;

		size -= bytes;
		*pos += bytes;
		result += bytes;
	}

	return result;
2607 2608
}

2609
static const struct file_operations amdgpu_ttm_iomem_fops = {
2610
	.owner = THIS_MODULE,
2611 2612
	.read = amdgpu_iomem_read,
	.write = amdgpu_iomem_write,
2613 2614
	.llseek = default_llseek
};
2615 2616 2617 2618 2619 2620 2621 2622 2623 2624

static const struct {
	char *name;
	const struct file_operations *fops;
	int domain;
} ttm_debugfs_entries[] = {
	{ "amdgpu_vram", &amdgpu_ttm_vram_fops, TTM_PL_VRAM },
#ifdef CONFIG_DRM_AMDGPU_GART_DEBUGFS
	{ "amdgpu_gtt", &amdgpu_ttm_gtt_fops, TTM_PL_TT },
#endif
2625
	{ "amdgpu_iomem", &amdgpu_ttm_iomem_fops, TTM_PL_SYSTEM },
2626 2627
};

2628 2629
#endif

2630
int amdgpu_ttm_debugfs_init(struct amdgpu_device *adev)
A
Alex Deucher 已提交
2631 2632 2633 2634
{
#if defined(CONFIG_DEBUG_FS)
	unsigned count;

2635
	struct drm_minor *minor = adev_to_drm(adev)->primary;
A
Alex Deucher 已提交
2636 2637
	struct dentry *ent, *root = minor->debugfs_root;

2638 2639 2640 2641 2642 2643 2644 2645 2646
	for (count = 0; count < ARRAY_SIZE(ttm_debugfs_entries); count++) {
		ent = debugfs_create_file(
				ttm_debugfs_entries[count].name,
				S_IFREG | S_IRUGO, root,
				adev,
				ttm_debugfs_entries[count].fops);
		if (IS_ERR(ent))
			return PTR_ERR(ent);
		if (ttm_debugfs_entries[count].domain == TTM_PL_VRAM)
2647
			i_size_write(ent->d_inode, adev->gmc.mc_vram_size);
2648
		else if (ttm_debugfs_entries[count].domain == TTM_PL_TT)
2649
			i_size_write(ent->d_inode, adev->gmc.gart_size);
2650 2651
		adev->mman.debugfs_entries[count] = ent;
	}
A
Alex Deucher 已提交
2652 2653 2654 2655

	count = ARRAY_SIZE(amdgpu_ttm_debugfs_list);

#ifdef CONFIG_SWIOTLB
2656
	if (!(adev->need_swiotlb && swiotlb_nr_tbl()))
A
Alex Deucher 已提交
2657 2658 2659 2660 2661 2662 2663 2664
		--count;
#endif

	return amdgpu_debugfs_add_files(adev, amdgpu_ttm_debugfs_list, count);
#else
	return 0;
#endif
}