amdgpu_ttm.c 65.6 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 34 35 36
#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>
A
Alex Deucher 已提交
37 38 39 40 41 42 43 44
#include <drm/drmP.h>
#include <drm/amdgpu_drm.h>
#include <linux/seq_file.h>
#include <linux/slab.h>
#include <linux/swiotlb.h>
#include <linux/swap.h>
#include <linux/pagemap.h>
#include <linux/debugfs.h>
45
#include <linux/iommu.h>
A
Alex Deucher 已提交
46
#include "amdgpu.h"
47
#include "amdgpu_object.h"
48
#include "amdgpu_trace.h"
49
#include "amdgpu_amdkfd.h"
50
#include "amdgpu_sdma.h"
A
Alex Deucher 已提交
51 52 53 54
#include "bif/bif_4_1_d.h"

#define DRM_FILE_PAGE_OFFSET (0x100000000ULL >> PAGE_SHIFT)

55 56 57 58 59 60
static int amdgpu_map_buffer(struct ttm_buffer_object *bo,
			     struct ttm_mem_reg *mem, unsigned num_pages,
			     uint64_t offset, unsigned window,
			     struct amdgpu_ring *ring,
			     uint64_t *addr);

A
Alex Deucher 已提交
61 62 63 64 65 66
static int amdgpu_ttm_debugfs_init(struct amdgpu_device *adev);
static void amdgpu_ttm_debugfs_fini(struct amdgpu_device *adev);

/*
 * Global memory.
 */
67 68 69 70 71 72 73 74 75 76

/**
 * amdgpu_ttm_mem_global_init - Initialize and acquire reference to
 * memory object
 *
 * @ref: Object for initialization.
 *
 * This is called by drm_global_item_ref() when an object is being
 * initialized.
 */
A
Alex Deucher 已提交
77 78 79 80 81
static int amdgpu_ttm_mem_global_init(struct drm_global_reference *ref)
{
	return ttm_mem_global_init(ref->object);
}

82 83 84 85 86 87 88 89
/**
 * amdgpu_ttm_mem_global_release - Drop reference to a memory object
 *
 * @ref: Object being removed
 *
 * This is called by drm_global_item_unref() when an object is being
 * released.
 */
A
Alex Deucher 已提交
90 91 92 93 94
static void amdgpu_ttm_mem_global_release(struct drm_global_reference *ref)
{
	ttm_mem_global_release(ref->object);
}

95
/**
96
 * amdgpu_ttm_global_init - Initialize global TTM memory reference structures.
97
 *
98
 * @adev: AMDGPU device for which the global structures need to be registered.
99 100 101 102
 *
 * This is called as part of the AMDGPU ttm init from amdgpu_ttm_init()
 * during bring up.
 */
103
static int amdgpu_ttm_global_init(struct amdgpu_device *adev)
A
Alex Deucher 已提交
104 105 106 107
{
	struct drm_global_reference *global_ref;
	int r;

108
	/* ensure reference is false in case init fails */
A
Alex Deucher 已提交
109
	adev->mman.mem_global_referenced = false;
110

A
Alex Deucher 已提交
111 112 113 114 115 116
	global_ref = &adev->mman.mem_global_ref;
	global_ref->global_type = DRM_GLOBAL_TTM_MEM;
	global_ref->size = sizeof(struct ttm_mem_global);
	global_ref->init = &amdgpu_ttm_mem_global_init;
	global_ref->release = &amdgpu_ttm_mem_global_release;
	r = drm_global_item_ref(global_ref);
117
	if (r) {
A
Alex Deucher 已提交
118 119
		DRM_ERROR("Failed setting up TTM memory accounting "
			  "subsystem.\n");
120
		goto error_mem;
A
Alex Deucher 已提交
121 122 123 124 125 126 127 128 129 130
	}

	adev->mman.bo_global_ref.mem_glob =
		adev->mman.mem_global_ref.object;
	global_ref = &adev->mman.bo_global_ref.ref;
	global_ref->global_type = DRM_GLOBAL_TTM_BO;
	global_ref->size = sizeof(struct ttm_bo_global);
	global_ref->init = &ttm_bo_global_init;
	global_ref->release = &ttm_bo_global_release;
	r = drm_global_item_ref(global_ref);
131
	if (r) {
A
Alex Deucher 已提交
132
		DRM_ERROR("Failed setting up TTM BO subsystem.\n");
133
		goto error_bo;
A
Alex Deucher 已提交
134 135
	}

136 137
	mutex_init(&adev->mman.gtt_window_lock);

A
Alex Deucher 已提交
138
	adev->mman.mem_global_referenced = true;
139

A
Alex Deucher 已提交
140
	return 0;
141 142 143 144 145

error_bo:
	drm_global_item_unref(&adev->mman.mem_global_ref);
error_mem:
	return r;
A
Alex Deucher 已提交
146 147 148 149 150
}

static void amdgpu_ttm_global_fini(struct amdgpu_device *adev)
{
	if (adev->mman.mem_global_referenced) {
151
		mutex_destroy(&adev->mman.gtt_window_lock);
A
Alex Deucher 已提交
152 153 154 155 156 157 158 159 160 161 162
		drm_global_item_unref(&adev->mman.bo_global_ref.ref);
		drm_global_item_unref(&adev->mman.mem_global_ref);
		adev->mman.mem_global_referenced = false;
	}
}

static int amdgpu_invalidate_caches(struct ttm_bo_device *bdev, uint32_t flags)
{
	return 0;
}

163
/**
164 165
 * amdgpu_init_mem_type - Initialize a memory manager for a specific type of
 * memory request.
166
 *
167 168 169
 * @bdev: The TTM BO device object (contains a reference to amdgpu_device)
 * @type: The type of memory requested
 * @man: The memory type manager for each domain
170 171 172 173
 *
 * This is called by ttm_bo_init_mm() when a buffer object is being
 * initialized.
 */
A
Alex Deucher 已提交
174 175 176 177 178
static int amdgpu_init_mem_type(struct ttm_bo_device *bdev, uint32_t type,
				struct ttm_mem_type_manager *man)
{
	struct amdgpu_device *adev;

179
	adev = amdgpu_ttm_adev(bdev);
A
Alex Deucher 已提交
180 181 182 183 184 185 186 187 188

	switch (type) {
	case TTM_PL_SYSTEM:
		/* System memory */
		man->flags = TTM_MEMTYPE_FLAG_MAPPABLE;
		man->available_caching = TTM_PL_MASK_CACHING;
		man->default_caching = TTM_PL_FLAG_CACHED;
		break;
	case TTM_PL_TT:
189
		/* GTT memory  */
190
		man->func = &amdgpu_gtt_mgr_func;
191
		man->gpu_offset = adev->gmc.gart_start;
A
Alex Deucher 已提交
192 193 194 195 196 197
		man->available_caching = TTM_PL_MASK_CACHING;
		man->default_caching = TTM_PL_FLAG_CACHED;
		man->flags = TTM_MEMTYPE_FLAG_MAPPABLE | TTM_MEMTYPE_FLAG_CMA;
		break;
	case TTM_PL_VRAM:
		/* "On-card" video ram */
C
Christian König 已提交
198
		man->func = &amdgpu_vram_mgr_func;
199
		man->gpu_offset = adev->gmc.vram_start;
A
Alex Deucher 已提交
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
		man->flags = TTM_MEMTYPE_FLAG_FIXED |
			     TTM_MEMTYPE_FLAG_MAPPABLE;
		man->available_caching = TTM_PL_FLAG_UNCACHED | TTM_PL_FLAG_WC;
		man->default_caching = TTM_PL_FLAG_WC;
		break;
	case AMDGPU_PL_GDS:
	case AMDGPU_PL_GWS:
	case AMDGPU_PL_OA:
		/* On-chip GDS memory*/
		man->func = &ttm_bo_manager_func;
		man->gpu_offset = 0;
		man->flags = TTM_MEMTYPE_FLAG_FIXED | TTM_MEMTYPE_FLAG_CMA;
		man->available_caching = TTM_PL_FLAG_UNCACHED;
		man->default_caching = TTM_PL_FLAG_UNCACHED;
		break;
	default:
		DRM_ERROR("Unsupported memory type %u\n", (unsigned)type);
		return -EINVAL;
	}
	return 0;
}

222 223 224 225 226 227 228 229
/**
 * 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 已提交
230 231 232
static void amdgpu_evict_flags(struct ttm_buffer_object *bo,
				struct ttm_placement *placement)
{
233
	struct amdgpu_device *adev = amdgpu_ttm_adev(bo->bdev);
234
	struct amdgpu_bo *abo;
235
	static const struct ttm_place placements = {
A
Alex Deucher 已提交
236 237 238 239 240
		.fpfn = 0,
		.lpfn = 0,
		.flags = TTM_PL_MASK_CACHING | TTM_PL_FLAG_SYSTEM
	};

241
	/* Don't handle scatter gather BOs */
242 243 244 245 246 247
	if (bo->type == ttm_bo_type_sg) {
		placement->num_placement = 0;
		placement->num_busy_placement = 0;
		return;
	}

248
	/* Object isn't an AMDGPU object so ignore */
249
	if (!amdgpu_bo_is_amdgpu_bo(bo)) {
A
Alex Deucher 已提交
250 251 252 253 254 255
		placement->placement = &placements;
		placement->busy_placement = &placements;
		placement->num_placement = 1;
		placement->num_busy_placement = 1;
		return;
	}
256

257
	abo = ttm_to_amdgpu_bo(bo);
A
Alex Deucher 已提交
258 259
	switch (bo->mem.mem_type) {
	case TTM_PL_VRAM:
260
		if (!adev->mman.buffer_funcs_enabled) {
261
			/* Move to system memory */
262
			amdgpu_bo_placement_from_domain(abo, AMDGPU_GEM_DOMAIN_CPU);
263
		} else if (!amdgpu_gmc_vram_full_visible(&adev->gmc) &&
264 265
			   !(abo->flags & AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED) &&
			   amdgpu_bo_in_cpu_visible_vram(abo)) {
266 267 268 269 270 271

			/* 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
			 */
272
			amdgpu_bo_placement_from_domain(abo, AMDGPU_GEM_DOMAIN_VRAM |
273
							 AMDGPU_GEM_DOMAIN_GTT);
274
			abo->placements[0].fpfn = adev->gmc.visible_vram_size >> PAGE_SHIFT;
275 276 277
			abo->placements[0].lpfn = 0;
			abo->placement.busy_placement = &abo->placements[1];
			abo->placement.num_busy_placement = 1;
278
		} else {
279
			/* Move to GTT memory */
280
			amdgpu_bo_placement_from_domain(abo, AMDGPU_GEM_DOMAIN_GTT);
281
		}
A
Alex Deucher 已提交
282 283 284
		break;
	case TTM_PL_TT:
	default:
285
		amdgpu_bo_placement_from_domain(abo, AMDGPU_GEM_DOMAIN_CPU);
A
Alex Deucher 已提交
286
	}
287
	*placement = abo->placement;
A
Alex Deucher 已提交
288 289
}

290 291 292
/**
 * amdgpu_verify_access - Verify access for a mmap call
 *
293 294
 * @bo:	The buffer object to map
 * @filp: The file pointer from the process performing the mmap
295 296 297 298
 *
 * 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 已提交
299 300
static int amdgpu_verify_access(struct ttm_buffer_object *bo, struct file *filp)
{
301
	struct amdgpu_bo *abo = ttm_to_amdgpu_bo(bo);
A
Alex Deucher 已提交
302

303 304 305 306 307 308 309
	/*
	 * Don't verify access for KFD BOs. They don't have a GEM
	 * object associated with them.
	 */
	if (abo->kfd_bo)
		return 0;

310 311
	if (amdgpu_ttm_tt_get_usermm(bo->ttm))
		return -EPERM;
312
	return drm_vma_node_verify_access(&abo->gem_base.vma_node,
D
David Herrmann 已提交
313
					  filp->private_data);
A
Alex Deucher 已提交
314 315
}

316 317 318
/**
 * amdgpu_move_null - Register memory for a buffer object
 *
319 320
 * @bo: The bo to assign the memory to
 * @new_mem: The memory to be assigned.
321
 *
322
 * Assign the memory from new_mem to the memory of the buffer object bo.
323
 */
A
Alex Deucher 已提交
324 325 326 327 328 329 330 331 332 333
static void amdgpu_move_null(struct ttm_buffer_object *bo,
			     struct ttm_mem_reg *new_mem)
{
	struct ttm_mem_reg *old_mem = &bo->mem;

	BUG_ON(old_mem->mm_node != NULL);
	*old_mem = *new_mem;
	new_mem->mm_node = NULL;
}

334
/**
335 336 337 338 339 340
 * 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.
 *
341
 */
342 343 344
static uint64_t amdgpu_mm_node_addr(struct ttm_buffer_object *bo,
				    struct drm_mm_node *mm_node,
				    struct ttm_mem_reg *mem)
A
Alex Deucher 已提交
345
{
346
	uint64_t addr = 0;
347

348
	if (mm_node->start != AMDGPU_BO_INVALID_OFFSET) {
349 350 351
		addr = mm_node->start << PAGE_SHIFT;
		addr += bo->bdev->man[mem->mem_type].gpu_offset;
	}
352
	return addr;
353 354
}

355
/**
356 357 358 359 360 361
 * 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.
 *
362 363 364
 */
static struct drm_mm_node *amdgpu_find_mm_node(struct ttm_mem_reg *mem,
					       unsigned long *offset)
365
{
366
	struct drm_mm_node *mm_node = mem->mm_node;
367

368 369 370 371 372 373
	while (*offset >= (mm_node->size << PAGE_SHIFT)) {
		*offset -= (mm_node->size << PAGE_SHIFT);
		++mm_node;
	}
	return mm_node;
}
374

375 376
/**
 * amdgpu_copy_ttm_mem_to_mem - Helper function for copy
377 378 379 380 381 382 383 384 385 386 387 388 389
 *
 * 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.
 *
 * @f: Returns the last fence if multiple jobs are submitted.
 */
int amdgpu_ttm_copy_mem_to_mem(struct amdgpu_device *adev,
			       struct amdgpu_copy_mem *src,
			       struct amdgpu_copy_mem *dst,
			       uint64_t size,
			       struct reservation_object *resv,
			       struct dma_fence **f)
390 391
{
	struct amdgpu_ring *ring = adev->mman.buffer_funcs_ring;
392 393 394
	struct drm_mm_node *src_mm, *dst_mm;
	uint64_t src_node_start, dst_node_start, src_node_size,
		 dst_node_size, src_page_offset, dst_page_offset;
395
	struct dma_fence *fence = NULL;
396 397 398
	int r = 0;
	const uint64_t GTT_MAX_BYTES = (AMDGPU_GTT_MAX_TRANSFER_SIZE *
					AMDGPU_GPU_PAGE_SIZE);
399

400
	if (!adev->mman.buffer_funcs_enabled) {
A
Alex Deucher 已提交
401 402 403 404
		DRM_ERROR("Trying to move memory with ring turned off.\n");
		return -EINVAL;
	}

405
	src_mm = amdgpu_find_mm_node(src->mem, &src->offset);
406 407 408 409
	src_node_start = amdgpu_mm_node_addr(src->bo, src_mm, src->mem) +
					     src->offset;
	src_node_size = (src_mm->size << PAGE_SHIFT) - src->offset;
	src_page_offset = src_node_start & (PAGE_SIZE - 1);
410

411
	dst_mm = amdgpu_find_mm_node(dst->mem, &dst->offset);
412 413 414 415
	dst_node_start = amdgpu_mm_node_addr(dst->bo, dst_mm, dst->mem) +
					     dst->offset;
	dst_node_size = (dst_mm->size << PAGE_SHIFT) - dst->offset;
	dst_page_offset = dst_node_start & (PAGE_SIZE - 1);
416

417
	mutex_lock(&adev->mman.gtt_window_lock);
418 419 420 421

	while (size) {
		unsigned long cur_size;
		uint64_t from = src_node_start, to = dst_node_start;
422
		struct dma_fence *next;
423

424 425 426 427 428 429 430 431 432 433 434 435
		/* Copy size cannot exceed GTT_MAX_BYTES. So if src or dst
		 * begins at an offset, then adjust the size accordingly
		 */
		cur_size = min3(min(src_node_size, dst_node_size), size,
				GTT_MAX_BYTES);
		if (cur_size + src_page_offset > GTT_MAX_BYTES ||
		    cur_size + dst_page_offset > GTT_MAX_BYTES)
			cur_size -= max(src_page_offset, dst_page_offset);

		/* Map only what needs to be accessed. Map src to window 0 and
		 * dst to window 1
		 */
436
		if (src->mem->start == AMDGPU_BO_INVALID_OFFSET) {
437 438 439 440
			r = amdgpu_map_buffer(src->bo, src->mem,
					PFN_UP(cur_size + src_page_offset),
					src_node_start, 0, ring,
					&from);
441 442
			if (r)
				goto error;
443 444 445 446
			/* Adjust the offset because amdgpu_map_buffer returns
			 * start of mapped page
			 */
			from += src_page_offset;
447 448
		}

449
		if (dst->mem->start == AMDGPU_BO_INVALID_OFFSET) {
450 451 452 453
			r = amdgpu_map_buffer(dst->bo, dst->mem,
					PFN_UP(cur_size + dst_page_offset),
					dst_node_start, 1, ring,
					&to);
454 455
			if (r)
				goto error;
456
			to += dst_page_offset;
457 458
		}

459 460
		r = amdgpu_copy_buffer(ring, from, to, cur_size,
				       resv, &next, false, true);
461 462 463
		if (r)
			goto error;

464
		dma_fence_put(fence);
465 466
		fence = next;

467 468
		size -= cur_size;
		if (!size)
469 470
			break;

471 472 473 474 475
		src_node_size -= cur_size;
		if (!src_node_size) {
			src_node_start = amdgpu_mm_node_addr(src->bo, ++src_mm,
							     src->mem);
			src_node_size = (src_mm->size << PAGE_SHIFT);
476
		} else {
477 478
			src_node_start += cur_size;
			src_page_offset = src_node_start & (PAGE_SIZE - 1);
479
		}
480 481 482 483 484
		dst_node_size -= cur_size;
		if (!dst_node_size) {
			dst_node_start = amdgpu_mm_node_addr(dst->bo, ++dst_mm,
							     dst->mem);
			dst_node_size = (dst_mm->size << PAGE_SHIFT);
485
		} else {
486 487
			dst_node_start += cur_size;
			dst_page_offset = dst_node_start & (PAGE_SIZE - 1);
488 489
		}
	}
490
error:
491
	mutex_unlock(&adev->mman.gtt_window_lock);
492 493 494 495 496 497
	if (f)
		*f = dma_fence_get(fence);
	dma_fence_put(fence);
	return r;
}

498 499 500
/**
 * amdgpu_move_blit - Copy an entire buffer to another buffer
 *
501 502
 * This is a helper called by amdgpu_bo_move() and amdgpu_move_vram_ram() to
 * help move buffers to and from VRAM.
503
 */
504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525
static int amdgpu_move_blit(struct ttm_buffer_object *bo,
			    bool evict, bool no_wait_gpu,
			    struct ttm_mem_reg *new_mem,
			    struct ttm_mem_reg *old_mem)
{
	struct amdgpu_device *adev = amdgpu_ttm_adev(bo->bdev);
	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,
				       bo->resv, &fence);
	if (r)
		goto error;
526 527

	r = ttm_bo_pipeline_move(bo, fence, evict, new_mem);
528
	dma_fence_put(fence);
A
Alex Deucher 已提交
529
	return r;
530 531 532

error:
	if (fence)
533 534
		dma_fence_wait(fence, false);
	dma_fence_put(fence);
535
	return r;
A
Alex Deucher 已提交
536 537
}

538 539 540 541 542
/**
 * amdgpu_move_vram_ram - Copy VRAM buffer to RAM buffer
 *
 * Called by amdgpu_bo_move().
 */
543 544
static int amdgpu_move_vram_ram(struct ttm_buffer_object *bo, bool evict,
				struct ttm_operation_ctx *ctx,
A
Alex Deucher 已提交
545 546 547 548 549 550 551 552 553
				struct ttm_mem_reg *new_mem)
{
	struct amdgpu_device *adev;
	struct ttm_mem_reg *old_mem = &bo->mem;
	struct ttm_mem_reg tmp_mem;
	struct ttm_place placements;
	struct ttm_placement placement;
	int r;

554
	adev = amdgpu_ttm_adev(bo->bdev);
555 556

	/* create space/pages for new_mem in GTT space */
A
Alex Deucher 已提交
557 558 559 560 561 562 563
	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;
564
	placements.lpfn = 0;
A
Alex Deucher 已提交
565
	placements.flags = TTM_PL_MASK_CACHING | TTM_PL_FLAG_TT;
566
	r = ttm_bo_mem_space(bo, &placement, &tmp_mem, ctx);
A
Alex Deucher 已提交
567 568 569 570
	if (unlikely(r)) {
		return r;
	}

571
	/* set caching flags */
A
Alex Deucher 已提交
572 573 574 575 576
	r = ttm_tt_set_placement_caching(bo->ttm, tmp_mem.placement);
	if (unlikely(r)) {
		goto out_cleanup;
	}

577
	/* Bind the memory to the GTT space */
578
	r = ttm_tt_bind(bo->ttm, &tmp_mem, ctx);
A
Alex Deucher 已提交
579 580 581
	if (unlikely(r)) {
		goto out_cleanup;
	}
582 583

	/* blit VRAM to GTT */
584
	r = amdgpu_move_blit(bo, evict, ctx->no_wait_gpu, &tmp_mem, old_mem);
A
Alex Deucher 已提交
585 586 587
	if (unlikely(r)) {
		goto out_cleanup;
	}
588 589

	/* move BO (in tmp_mem) to new_mem */
590
	r = ttm_bo_move_ttm(bo, ctx, new_mem);
A
Alex Deucher 已提交
591 592 593 594 595
out_cleanup:
	ttm_bo_mem_put(bo, &tmp_mem);
	return r;
}

596 597 598 599 600
/**
 * amdgpu_move_ram_vram - Copy buffer from RAM to VRAM
 *
 * Called by amdgpu_bo_move().
 */
601 602
static int amdgpu_move_ram_vram(struct ttm_buffer_object *bo, bool evict,
				struct ttm_operation_ctx *ctx,
A
Alex Deucher 已提交
603 604 605 606 607 608 609 610 611
				struct ttm_mem_reg *new_mem)
{
	struct amdgpu_device *adev;
	struct ttm_mem_reg *old_mem = &bo->mem;
	struct ttm_mem_reg tmp_mem;
	struct ttm_placement placement;
	struct ttm_place placements;
	int r;

612
	adev = amdgpu_ttm_adev(bo->bdev);
613 614

	/* make space in GTT for old_mem buffer */
A
Alex Deucher 已提交
615 616 617 618 619 620 621
	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;
622
	placements.lpfn = 0;
A
Alex Deucher 已提交
623
	placements.flags = TTM_PL_MASK_CACHING | TTM_PL_FLAG_TT;
624
	r = ttm_bo_mem_space(bo, &placement, &tmp_mem, ctx);
A
Alex Deucher 已提交
625 626 627
	if (unlikely(r)) {
		return r;
	}
628 629

	/* move/bind old memory to GTT space */
630
	r = ttm_bo_move_ttm(bo, ctx, &tmp_mem);
A
Alex Deucher 已提交
631 632 633
	if (unlikely(r)) {
		goto out_cleanup;
	}
634 635

	/* copy to VRAM */
636
	r = amdgpu_move_blit(bo, evict, ctx->no_wait_gpu, new_mem, old_mem);
A
Alex Deucher 已提交
637 638 639 640 641 642 643 644
	if (unlikely(r)) {
		goto out_cleanup;
	}
out_cleanup:
	ttm_bo_mem_put(bo, &tmp_mem);
	return r;
}

645 646 647 648 649
/**
 * amdgpu_bo_move - Move a buffer object to a new memory location
 *
 * Called by ttm_bo_handle_move_mem()
 */
650 651 652
static int amdgpu_bo_move(struct ttm_buffer_object *bo, bool evict,
			  struct ttm_operation_ctx *ctx,
			  struct ttm_mem_reg *new_mem)
A
Alex Deucher 已提交
653 654
{
	struct amdgpu_device *adev;
655
	struct amdgpu_bo *abo;
A
Alex Deucher 已提交
656 657 658
	struct ttm_mem_reg *old_mem = &bo->mem;
	int r;

659
	/* Can't move a pinned BO */
660
	abo = ttm_to_amdgpu_bo(bo);
661 662 663
	if (WARN_ON_ONCE(abo->pin_count > 0))
		return -EINVAL;

664
	adev = amdgpu_ttm_adev(bo->bdev);
665

A
Alex Deucher 已提交
666 667 668 669 670 671 672 673 674 675 676 677
	if (old_mem->mem_type == TTM_PL_SYSTEM && bo->ttm == NULL) {
		amdgpu_move_null(bo, new_mem);
		return 0;
	}
	if ((old_mem->mem_type == TTM_PL_TT &&
	     new_mem->mem_type == TTM_PL_SYSTEM) ||
	    (old_mem->mem_type == TTM_PL_SYSTEM &&
	     new_mem->mem_type == TTM_PL_TT)) {
		/* bind is enough */
		amdgpu_move_null(bo, new_mem);
		return 0;
	}
678 679

	if (!adev->mman.buffer_funcs_enabled)
A
Alex Deucher 已提交
680 681 682 683
		goto memcpy;

	if (old_mem->mem_type == TTM_PL_VRAM &&
	    new_mem->mem_type == TTM_PL_SYSTEM) {
684
		r = amdgpu_move_vram_ram(bo, evict, ctx, new_mem);
A
Alex Deucher 已提交
685 686
	} else if (old_mem->mem_type == TTM_PL_SYSTEM &&
		   new_mem->mem_type == TTM_PL_VRAM) {
687
		r = amdgpu_move_ram_vram(bo, evict, ctx, new_mem);
A
Alex Deucher 已提交
688
	} else {
689 690
		r = amdgpu_move_blit(bo, evict, ctx->no_wait_gpu,
				     new_mem, old_mem);
A
Alex Deucher 已提交
691 692 693 694
	}

	if (r) {
memcpy:
695
		r = ttm_bo_move_memcpy(bo, ctx, new_mem);
A
Alex Deucher 已提交
696 697 698 699 700
		if (r) {
			return r;
		}
	}

701 702 703 704 705 706 707 708 709
	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 已提交
710 711 712 713 714
	/* update statistics */
	atomic64_add((u64)bo->num_pages << PAGE_SHIFT, &adev->num_bytes_moved);
	return 0;
}

715 716 717 718 719
/**
 * 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()
 */
A
Alex Deucher 已提交
720 721 722
static int amdgpu_ttm_io_mem_reserve(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
{
	struct ttm_mem_type_manager *man = &bdev->man[mem->mem_type];
723
	struct amdgpu_device *adev = amdgpu_ttm_adev(bdev);
724
	struct drm_mm_node *mm_node = mem->mm_node;
A
Alex Deucher 已提交
725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741

	mem->bus.addr = NULL;
	mem->bus.offset = 0;
	mem->bus.size = mem->num_pages << PAGE_SHIFT;
	mem->bus.base = 0;
	mem->bus.is_iomem = false;
	if (!(man->flags & TTM_MEMTYPE_FLAG_MAPPABLE))
		return -EINVAL;
	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 */
742
		if ((mem->bus.offset + mem->bus.size) > adev->gmc.visible_vram_size)
A
Alex Deucher 已提交
743
			return -EINVAL;
744 745 746 747 748 749 750 751 752
		/* Only physically contiguous buffers apply. In a contiguous
		 * buffer, size of the first mm_node would match the number of
		 * pages in ttm_mem_reg.
		 */
		if (adev->mman.aper_base_kaddr &&
		    (mm_node->size == mem->num_pages))
			mem->bus.addr = (u8 *)adev->mman.aper_base_kaddr +
					mem->bus.offset;

753
		mem->bus.base = adev->gmc.aper_base;
A
Alex Deucher 已提交
754 755 756 757 758 759 760 761 762 763 764 765
		mem->bus.is_iomem = true;
		break;
	default:
		return -EINVAL;
	}
	return 0;
}

static void amdgpu_ttm_io_mem_free(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
{
}

766 767 768
static unsigned long amdgpu_ttm_io_mem_pfn(struct ttm_buffer_object *bo,
					   unsigned long page_offset)
{
769 770
	struct drm_mm_node *mm;
	unsigned long offset = (page_offset << PAGE_SHIFT);
771

772 773 774
	mm = amdgpu_find_mm_node(&bo->mem, &offset);
	return (bo->mem.bus.base >> PAGE_SHIFT) + mm->start +
		(offset >> PAGE_SHIFT);
775 776
}

A
Alex Deucher 已提交
777 778 779
/*
 * TTM backend functions.
 */
780 781 782 783 784
struct amdgpu_ttm_gup_task_list {
	struct list_head	list;
	struct task_struct	*task;
};

A
Alex Deucher 已提交
785
struct amdgpu_ttm_tt {
786 787 788
	struct ttm_dma_tt	ttm;
	u64			offset;
	uint64_t		userptr;
789
	struct task_struct	*usertask;
790 791 792
	uint32_t		userflags;
	spinlock_t              guptasklock;
	struct list_head        guptasks;
793
	atomic_t		mmu_invalidations;
794
	uint32_t		last_set_pages;
A
Alex Deucher 已提交
795 796
};

797
/**
798 799
 * amdgpu_ttm_tt_get_user_pages - Pin pages of memory pointed to by a USERPTR
 * pointer to memory
800 801 802 803 804
 *
 * Called by amdgpu_gem_userptr_ioctl() and amdgpu_cs_parser_bos().
 * This provides a wrapper around the get_user_pages() call to provide
 * device accessible pages that back user memory.
 */
805
int amdgpu_ttm_tt_get_user_pages(struct ttm_tt *ttm, struct page **pages)
A
Alex Deucher 已提交
806 807
{
	struct amdgpu_ttm_tt *gtt = (void *)ttm;
808
	struct mm_struct *mm = gtt->usertask->mm;
809
	unsigned int flags = 0;
810 811
	unsigned pinned = 0;
	int r;
A
Alex Deucher 已提交
812

813 814 815
	if (!mm) /* Happens during process shutdown */
		return -ESRCH;

816 817 818
	if (!(gtt->userflags & AMDGPU_GEM_USERPTR_READONLY))
		flags |= FOLL_WRITE;

819
	down_read(&mm->mmap_sem);
820

A
Alex Deucher 已提交
821
	if (gtt->userflags & AMDGPU_GEM_USERPTR_ANONONLY) {
822 823 824 825
		/*
		 * check that we only use anonymous memory to prevent problems
		 * with writeback
		 */
A
Alex Deucher 已提交
826 827 828
		unsigned long end = gtt->userptr + ttm->num_pages * PAGE_SIZE;
		struct vm_area_struct *vma;

829
		vma = find_vma(mm, gtt->userptr);
830
		if (!vma || vma->vm_file || vma->vm_end < end) {
831
			up_read(&mm->mmap_sem);
A
Alex Deucher 已提交
832
			return -EPERM;
833
		}
A
Alex Deucher 已提交
834 835
	}

836
	/* loop enough times using contiguous pages of memory */
A
Alex Deucher 已提交
837 838 839
	do {
		unsigned num_pages = ttm->num_pages - pinned;
		uint64_t userptr = gtt->userptr + pinned * PAGE_SIZE;
840
		struct page **p = pages + pinned;
841 842 843 844 845 846
		struct amdgpu_ttm_gup_task_list guptask;

		guptask.task = current;
		spin_lock(&gtt->guptasklock);
		list_add(&guptask.list, &gtt->guptasks);
		spin_unlock(&gtt->guptasklock);
A
Alex Deucher 已提交
847

848 849 850 851 852 853
		if (mm == current->mm)
			r = get_user_pages(userptr, num_pages, flags, p, NULL);
		else
			r = get_user_pages_remote(gtt->usertask,
					mm, userptr, num_pages,
					flags, p, NULL, NULL);
854 855 856 857

		spin_lock(&gtt->guptasklock);
		list_del(&guptask.list);
		spin_unlock(&gtt->guptasklock);
A
Alex Deucher 已提交
858 859 860 861 862 863 864 865

		if (r < 0)
			goto release_pages;

		pinned += r;

	} while (pinned < ttm->num_pages);

866
	up_read(&mm->mmap_sem);
867 868 869
	return 0;

release_pages:
870
	release_pages(pages, pinned);
871
	up_read(&mm->mmap_sem);
872 873 874
	return r;
}

875
/**
876
 * amdgpu_ttm_tt_set_user_pages - Copy pages in, putting old pages as necessary.
877
 *
878
 * Called by amdgpu_cs_list_validate(). This creates the page list
879 880 881
 * that backs user memory and will ultimately be mapped into the device
 * address space.
 */
882
void amdgpu_ttm_tt_set_user_pages(struct ttm_tt *ttm, struct page **pages)
883 884 885 886
{
	struct amdgpu_ttm_tt *gtt = (void *)ttm;
	unsigned i;

887
	gtt->last_set_pages = atomic_read(&gtt->mmu_invalidations);
888 889 890 891 892
	for (i = 0; i < ttm->num_pages; ++i) {
		if (ttm->pages[i])
			put_page(ttm->pages[i]);

		ttm->pages[i] = pages ? pages[i] : NULL;
893 894 895
	}
}

896 897 898 899 900
/**
 * amdgpu_ttm_tt_mark_user_page - Mark pages as dirty
 *
 * Called while unpinning userptr pages
 */
901
void amdgpu_ttm_tt_mark_user_pages(struct ttm_tt *ttm)
902 903 904 905
{
	struct amdgpu_ttm_tt *gtt = (void *)ttm;
	unsigned i;

906 907 908 909 910 911 912 913 914 915
	for (i = 0; i < ttm->num_pages; ++i) {
		struct page *page = ttm->pages[i];

		if (!page)
			continue;

		if (!(gtt->userflags & AMDGPU_GEM_USERPTR_READONLY))
			set_page_dirty(page);

		mark_page_accessed(page);
916 917 918
	}
}

919
/**
920
 * amdgpu_ttm_tt_pin_userptr - 	prepare the sg table with the user pages
921 922 923
 *
 * Called by amdgpu_ttm_backend_bind()
 **/
924 925
static int amdgpu_ttm_tt_pin_userptr(struct ttm_tt *ttm)
{
926
	struct amdgpu_device *adev = amdgpu_ttm_adev(ttm->bdev);
927 928 929 930 931 932 933 934
	struct amdgpu_ttm_tt *gtt = (void *)ttm;
	unsigned nents;
	int r;

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

935
	/* Allocate an SG array and squash pages into it */
A
Alex Deucher 已提交
936 937 938 939 940 941
	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;

942
	/* Map SG to device */
A
Alex Deucher 已提交
943 944 945 946 947
	r = -ENOMEM;
	nents = dma_map_sg(adev->dev, ttm->sg->sgl, ttm->sg->nents, direction);
	if (nents != ttm->sg->nents)
		goto release_sg;

948
	/* convert SG to linear array of pages and dma addresses */
A
Alex Deucher 已提交
949 950 951 952 953 954 955 956 957 958
	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;
}

959 960 961
/**
 * amdgpu_ttm_tt_unpin_userptr - Unpin and unmap userptr pages
 */
A
Alex Deucher 已提交
962 963
static void amdgpu_ttm_tt_unpin_userptr(struct ttm_tt *ttm)
{
964
	struct amdgpu_device *adev = amdgpu_ttm_adev(ttm->bdev);
A
Alex Deucher 已提交
965 966 967 968 969 970 971 972 973 974
	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;

975
	/* unmap the pages mapped to the device */
A
Alex Deucher 已提交
976 977
	dma_unmap_sg(adev->dev, ttm->sg->sgl, ttm->sg->nents, direction);

978
	/* mark the pages as dirty */
979
	amdgpu_ttm_tt_mark_user_pages(ttm);
980

A
Alex Deucher 已提交
981 982 983
	sg_free_table(ttm->sg);
}

984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022
int amdgpu_ttm_gart_bind(struct amdgpu_device *adev,
				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;

	if (abo->flags & AMDGPU_GEM_CREATE_MQD_GFX9) {
		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;

		/* Patch mtype of the second part BO */
		flags &=  ~AMDGPU_PTE_MTYPE_MASK;
		flags |= AMDGPU_PTE_MTYPE(AMDGPU_MTYPE_NC);

		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;
}

1023 1024 1025 1026 1027 1028
/**
 * 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.
 */
A
Alex Deucher 已提交
1029 1030 1031
static int amdgpu_ttm_backend_bind(struct ttm_tt *ttm,
				   struct ttm_mem_reg *bo_mem)
{
C
Christian König 已提交
1032
	struct amdgpu_device *adev = amdgpu_ttm_adev(ttm->bdev);
A
Alex Deucher 已提交
1033
	struct amdgpu_ttm_tt *gtt = (void*)ttm;
1034
	uint64_t flags;
1035
	int r = 0;
A
Alex Deucher 已提交
1036

1037 1038 1039 1040 1041 1042 1043
	if (gtt->userptr) {
		r = amdgpu_ttm_tt_pin_userptr(ttm);
		if (r) {
			DRM_ERROR("failed to pin userptr\n");
			return r;
		}
	}
A
Alex Deucher 已提交
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053
	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;

1054 1055
	if (!amdgpu_gtt_mgr_has_gart_addr(bo_mem)) {
		gtt->offset = AMDGPU_BO_INVALID_OFFSET;
1056
		return 0;
1057
	}
1058

1059
	/* compute PTE flags relevant to this BO memory */
C
Christian König 已提交
1060
	flags = amdgpu_ttm_tt_pte_flags(adev, ttm, bo_mem);
1061 1062

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

1067
	if (r)
1068 1069
		DRM_ERROR("failed to bind %lu pages at 0x%08llX\n",
			  ttm->num_pages, gtt->offset);
1070
	return r;
1071 1072
}

1073 1074 1075
/**
 * amdgpu_ttm_alloc_gart - Allocate GART memory for buffer object
 */
1076
int amdgpu_ttm_alloc_gart(struct ttm_buffer_object *bo)
1077
{
1078
	struct amdgpu_device *adev = amdgpu_ttm_adev(bo->bdev);
1079
	struct ttm_operation_ctx ctx = { false, false };
1080
	struct amdgpu_ttm_tt *gtt = (void*)bo->ttm;
1081 1082 1083
	struct ttm_mem_reg tmp;
	struct ttm_placement placement;
	struct ttm_place placements;
1084
	uint64_t addr, flags;
1085 1086
	int r;

1087
	if (bo->mem.start != AMDGPU_BO_INVALID_OFFSET)
1088 1089
		return 0;

1090 1091 1092 1093
	addr = amdgpu_gmc_agp_addr(bo);
	if (addr != AMDGPU_BO_INVALID_OFFSET) {
		bo->mem.start = addr >> PAGE_SHIFT;
	} else {
1094

1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109
		/* 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;
		placements.flags = (bo->mem.placement & ~TTM_PL_MASK_MEM) |
			TTM_PL_FLAG_TT;

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

1111 1112
		/* compute PTE flags for this buffer object */
		flags = amdgpu_ttm_tt_pte_flags(adev, bo->ttm, &tmp);
1113

1114
		/* Bind pages */
1115
		gtt->offset = (u64)tmp.start << PAGE_SHIFT;
1116 1117 1118 1119 1120 1121 1122 1123
		r = amdgpu_ttm_gart_bind(adev, bo, flags);
		if (unlikely(r)) {
			ttm_bo_mem_put(bo, &tmp);
			return r;
		}

		ttm_bo_mem_put(bo, &bo->mem);
		bo->mem = tmp;
1124
	}
1125

1126 1127 1128 1129
	bo->offset = (bo->mem.start << PAGE_SHIFT) +
		bo->bdev->man[bo->mem.mem_type].gpu_offset;

	return 0;
A
Alex Deucher 已提交
1130 1131
}

1132 1133 1134 1135 1136 1137
/**
 * 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.
 */
1138
int amdgpu_ttm_recover_gart(struct ttm_buffer_object *tbo)
1139
{
1140
	struct amdgpu_device *adev = amdgpu_ttm_adev(tbo->bdev);
1141
	uint64_t flags;
1142 1143
	int r;

1144
	if (!tbo->ttm)
1145 1146
		return 0;

1147 1148 1149
	flags = amdgpu_ttm_tt_pte_flags(adev, tbo->ttm, &tbo->mem);
	r = amdgpu_ttm_gart_bind(adev, tbo, flags);

1150
	return r;
1151 1152
}

1153 1154 1155 1156 1157 1158
/**
 * amdgpu_ttm_backend_unbind - Unbind GTT mapped pages
 *
 * Called by ttm_tt_unbind() on behalf of ttm_bo_move_ttm() and
 * ttm_tt_destroy().
 */
A
Alex Deucher 已提交
1159 1160
static int amdgpu_ttm_backend_unbind(struct ttm_tt *ttm)
{
C
Christian König 已提交
1161
	struct amdgpu_device *adev = amdgpu_ttm_adev(ttm->bdev);
A
Alex Deucher 已提交
1162
	struct amdgpu_ttm_tt *gtt = (void *)ttm;
1163
	int r;
A
Alex Deucher 已提交
1164

1165
	/* if the pages have userptr pinning then clear that first */
1166 1167 1168
	if (gtt->userptr)
		amdgpu_ttm_tt_unpin_userptr(ttm);

1169
	if (gtt->offset == AMDGPU_BO_INVALID_OFFSET)
1170 1171
		return 0;

A
Alex Deucher 已提交
1172
	/* unbind shouldn't be done for GDS/GWS/OA in ttm_bo_clean_mm */
C
Christian König 已提交
1173
	r = amdgpu_gart_unbind(adev, gtt->offset, ttm->num_pages);
1174
	if (r)
1175 1176 1177
		DRM_ERROR("failed to unbind %lu pages at 0x%08llX\n",
			  gtt->ttm.ttm.num_pages, gtt->offset);
	return r;
A
Alex Deucher 已提交
1178 1179 1180 1181 1182 1183
}

static void amdgpu_ttm_backend_destroy(struct ttm_tt *ttm)
{
	struct amdgpu_ttm_tt *gtt = (void *)ttm;

1184 1185 1186
	if (gtt->usertask)
		put_task_struct(gtt->usertask);

A
Alex Deucher 已提交
1187 1188 1189 1190 1191 1192 1193 1194 1195 1196
	ttm_dma_tt_fini(&gtt->ttm);
	kfree(gtt);
}

static struct ttm_backend_func amdgpu_backend_func = {
	.bind = &amdgpu_ttm_backend_bind,
	.unbind = &amdgpu_ttm_backend_unbind,
	.destroy = &amdgpu_ttm_backend_destroy,
};

1197 1198 1199 1200 1201 1202 1203
/**
 * 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().
 */
1204 1205
static struct ttm_tt *amdgpu_ttm_tt_create(struct ttm_buffer_object *bo,
					   uint32_t page_flags)
A
Alex Deucher 已提交
1206 1207 1208 1209
{
	struct amdgpu_device *adev;
	struct amdgpu_ttm_tt *gtt;

1210
	adev = amdgpu_ttm_adev(bo->bdev);
A
Alex Deucher 已提交
1211 1212 1213 1214 1215 1216

	gtt = kzalloc(sizeof(struct amdgpu_ttm_tt), GFP_KERNEL);
	if (gtt == NULL) {
		return NULL;
	}
	gtt->ttm.ttm.func = &amdgpu_backend_func;
1217 1218

	/* allocate space for the uninitialized page entries */
1219
	if (ttm_sg_tt_init(&gtt->ttm, bo, page_flags)) {
A
Alex Deucher 已提交
1220 1221 1222 1223 1224 1225
		kfree(gtt);
		return NULL;
	}
	return &gtt->ttm.ttm;
}

1226 1227 1228 1229 1230 1231
/**
 * 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.
 */
1232 1233
static int amdgpu_ttm_tt_populate(struct ttm_tt *ttm,
			struct ttm_operation_ctx *ctx)
A
Alex Deucher 已提交
1234
{
1235
	struct amdgpu_device *adev = amdgpu_ttm_adev(ttm->bdev);
A
Alex Deucher 已提交
1236 1237 1238
	struct amdgpu_ttm_tt *gtt = (void *)ttm;
	bool slave = !!(ttm->page_flags & TTM_PAGE_FLAG_SG);

1239
	/* user pages are bound by amdgpu_ttm_tt_pin_userptr() */
A
Alex Deucher 已提交
1240
	if (gtt && gtt->userptr) {
1241
		ttm->sg = kzalloc(sizeof(struct sg_table), GFP_KERNEL);
A
Alex Deucher 已提交
1242 1243 1244 1245 1246 1247 1248 1249 1250 1251
		if (!ttm->sg)
			return -ENOMEM;

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

	if (slave && ttm->sg) {
		drm_prime_sg_to_page_addr_arrays(ttm->sg, ttm->pages,
1252 1253
						 gtt->ttm.dma_address,
						 ttm->num_pages);
A
Alex Deucher 已提交
1254
		ttm->state = tt_unbound;
1255
		return 0;
A
Alex Deucher 已提交
1256 1257 1258
	}

#ifdef CONFIG_SWIOTLB
1259
	if (adev->need_swiotlb && swiotlb_nr_tbl()) {
1260
		return ttm_dma_populate(&gtt->ttm, adev->dev, ctx);
A
Alex Deucher 已提交
1261 1262 1263
	}
#endif

1264 1265
	/* fall back to generic helper to populate the page array
	 * and map them to the device */
1266
	return ttm_populate_and_map_pages(adev->dev, &gtt->ttm, ctx);
A
Alex Deucher 已提交
1267 1268
}

1269 1270 1271 1272 1273 1274
/**
 * 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.
 */
A
Alex Deucher 已提交
1275 1276 1277 1278 1279 1280 1281
static void amdgpu_ttm_tt_unpopulate(struct ttm_tt *ttm)
{
	struct amdgpu_device *adev;
	struct amdgpu_ttm_tt *gtt = (void *)ttm;
	bool slave = !!(ttm->page_flags & TTM_PAGE_FLAG_SG);

	if (gtt && gtt->userptr) {
1282
		amdgpu_ttm_tt_set_user_pages(ttm, NULL);
A
Alex Deucher 已提交
1283 1284 1285 1286 1287 1288 1289 1290
		kfree(ttm->sg);
		ttm->page_flags &= ~TTM_PAGE_FLAG_SG;
		return;
	}

	if (slave)
		return;

1291
	adev = amdgpu_ttm_adev(ttm->bdev);
A
Alex Deucher 已提交
1292 1293

#ifdef CONFIG_SWIOTLB
1294
	if (adev->need_swiotlb && swiotlb_nr_tbl()) {
A
Alex Deucher 已提交
1295 1296 1297 1298 1299
		ttm_dma_unpopulate(&gtt->ttm, adev->dev);
		return;
	}
#endif

1300
	/* fall back to generic helper to unmap and unpopulate array */
1301
	ttm_unmap_and_unpopulate_pages(adev->dev, &gtt->ttm);
A
Alex Deucher 已提交
1302 1303
}

1304
/**
1305 1306
 * amdgpu_ttm_tt_set_userptr - Initialize userptr GTT ttm_tt for the current
 * task
1307 1308 1309 1310 1311 1312 1313 1314
 *
 * @ttm: The ttm_tt object to bind this userptr object to
 * @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
 */
A
Alex Deucher 已提交
1315 1316 1317 1318 1319 1320 1321 1322 1323 1324
int amdgpu_ttm_tt_set_userptr(struct ttm_tt *ttm, uint64_t addr,
			      uint32_t flags)
{
	struct amdgpu_ttm_tt *gtt = (void *)ttm;

	if (gtt == NULL)
		return -EINVAL;

	gtt->userptr = addr;
	gtt->userflags = flags;
1325 1326 1327 1328 1329 1330

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

1331 1332
	spin_lock_init(&gtt->guptasklock);
	INIT_LIST_HEAD(&gtt->guptasks);
1333
	atomic_set(&gtt->mmu_invalidations, 0);
1334
	gtt->last_set_pages = 0;
1335

A
Alex Deucher 已提交
1336 1337 1338
	return 0;
}

1339 1340 1341
/**
 * amdgpu_ttm_tt_get_usermm - Return memory manager for ttm_tt object
 */
1342
struct mm_struct *amdgpu_ttm_tt_get_usermm(struct ttm_tt *ttm)
A
Alex Deucher 已提交
1343 1344 1345 1346
{
	struct amdgpu_ttm_tt *gtt = (void *)ttm;

	if (gtt == NULL)
1347
		return NULL;
A
Alex Deucher 已提交
1348

1349 1350 1351 1352
	if (gtt->usertask == NULL)
		return NULL;

	return gtt->usertask->mm;
A
Alex Deucher 已提交
1353 1354
}

1355
/**
1356 1357
 * amdgpu_ttm_tt_affect_userptr - Determine if a ttm_tt object lays inside an
 * address range for the current task.
1358 1359
 *
 */
1360 1361 1362 1363
bool amdgpu_ttm_tt_affect_userptr(struct ttm_tt *ttm, unsigned long start,
				  unsigned long end)
{
	struct amdgpu_ttm_tt *gtt = (void *)ttm;
1364
	struct amdgpu_ttm_gup_task_list *entry;
1365 1366
	unsigned long size;

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

1370 1371 1372
	/* Return false if no part of the ttm_tt object lies within
	 * the range
	 */
1373 1374 1375 1376
	size = (unsigned long)gtt->ttm.ttm.num_pages * PAGE_SIZE;
	if (gtt->userptr > end || gtt->userptr + size <= start)
		return false;

1377 1378 1379
	/* Search the lists of tasks that hold this mapping and see
	 * if current is one of them.  If it is return false.
	 */
1380 1381 1382 1383 1384 1385 1386 1387 1388
	spin_lock(&gtt->guptasklock);
	list_for_each_entry(entry, &gtt->guptasks, list) {
		if (entry->task == current) {
			spin_unlock(&gtt->guptasklock);
			return false;
		}
	}
	spin_unlock(&gtt->guptasklock);

1389 1390
	atomic_inc(&gtt->mmu_invalidations);

1391 1392 1393
	return true;
}

1394
/**
1395
 * amdgpu_ttm_tt_userptr_invalidated - Has the ttm_tt object been invalidated?
1396
 */
1397 1398 1399 1400 1401 1402 1403 1404 1405 1406
bool amdgpu_ttm_tt_userptr_invalidated(struct ttm_tt *ttm,
				       int *last_invalidated)
{
	struct amdgpu_ttm_tt *gtt = (void *)ttm;
	int prev_invalidated = *last_invalidated;

	*last_invalidated = atomic_read(&gtt->mmu_invalidations);
	return prev_invalidated != *last_invalidated;
}

1407
/**
1408 1409
 * amdgpu_ttm_tt_userptr_needs_pages - Have the pages backing this ttm_tt object
 * been invalidated since the last time they've been set?
1410
 */
1411 1412 1413 1414 1415 1416 1417 1418 1419 1420
bool amdgpu_ttm_tt_userptr_needs_pages(struct ttm_tt *ttm)
{
	struct amdgpu_ttm_tt *gtt = (void *)ttm;

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

	return atomic_read(&gtt->mmu_invalidations) != gtt->last_set_pages;
}

1421 1422 1423
/**
 * amdgpu_ttm_tt_is_readonly - Is the ttm_tt object read only?
 */
A
Alex Deucher 已提交
1424 1425 1426 1427 1428 1429 1430 1431 1432 1433
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);
}

1434
/**
1435
 * amdgpu_ttm_tt_pde_flags - Compute PDE flags for ttm_tt object
1436 1437 1438
 *
 * @ttm: The ttm_tt object to compute the flags for
 * @mem: The memory registry backing this ttm_tt object
1439 1440
 *
 * Figure out the flags to use for a VM PDE (Page Directory Entry).
1441
 */
1442
uint64_t amdgpu_ttm_tt_pde_flags(struct ttm_tt *ttm, struct ttm_mem_reg *mem)
A
Alex Deucher 已提交
1443
{
1444
	uint64_t flags = 0;
A
Alex Deucher 已提交
1445 1446 1447 1448

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

1449
	if (mem && mem->mem_type == TTM_PL_TT) {
A
Alex Deucher 已提交
1450 1451
		flags |= AMDGPU_PTE_SYSTEM;

1452 1453 1454
		if (ttm->caching_state == tt_cached)
			flags |= AMDGPU_PTE_SNOOPED;
	}
A
Alex Deucher 已提交
1455

1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471
	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,
				 struct ttm_mem_reg *mem)
{
	uint64_t flags = amdgpu_ttm_tt_pde_flags(ttm, mem);

1472
	flags |= adev->gart.gart_pte_flags;
A
Alex Deucher 已提交
1473 1474 1475 1476 1477 1478 1479 1480
	flags |= AMDGPU_PTE_READABLE;

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

	return flags;
}

1481
/**
1482 1483
 * amdgpu_ttm_bo_eviction_valuable - Check to see if we can evict a buffer
 * object.
1484
 *
1485 1486 1487
 * 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
1488 1489
 * used to clean out a memory space.
 */
1490 1491 1492
static bool amdgpu_ttm_bo_eviction_valuable(struct ttm_buffer_object *bo,
					    const struct ttm_place *place)
{
1493 1494
	unsigned long num_pages = bo->mem.num_pages;
	struct drm_mm_node *node = bo->mem.mm_node;
1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511
	struct reservation_object_list *flist;
	struct dma_fence *f;
	int i;

	/* 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
	 */
	flist = reservation_object_get_list(bo->resv);
	if (flist) {
		for (i = 0; i < flist->shared_count; ++i) {
			f = rcu_dereference_protected(flist->shared[i],
				reservation_object_held(bo->resv));
			if (amdkfd_fence_check_mm(f, current->mm))
				return false;
		}
	}
1512

1513 1514 1515
	switch (bo->mem.mem_type) {
	case TTM_PL_TT:
		return true;
1516

1517
	case TTM_PL_VRAM:
1518 1519 1520 1521 1522 1523 1524 1525 1526
		/* 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;
		}
1527
		return false;
1528

1529 1530
	default:
		break;
1531 1532 1533 1534 1535
	}

	return ttm_bo_eviction_valuable(bo, place);
}

1536
/**
1537
 * amdgpu_ttm_access_memory - Read or Write memory that backs a buffer object.
1538 1539 1540 1541 1542 1543 1544 1545 1546 1547
 *
 * @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.
 */
1548 1549 1550 1551
static int amdgpu_ttm_access_memory(struct ttm_buffer_object *bo,
				    unsigned long offset,
				    void *buf, int len, int write)
{
1552
	struct amdgpu_bo *abo = ttm_to_amdgpu_bo(bo);
1553
	struct amdgpu_device *adev = amdgpu_ttm_adev(abo->tbo.bdev);
1554
	struct drm_mm_node *nodes;
1555 1556 1557 1558 1559 1560 1561 1562
	uint32_t value = 0;
	int ret = 0;
	uint64_t pos;
	unsigned long flags;

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

1563
	nodes = amdgpu_find_mm_node(&abo->tbo.mem, &offset);
1564 1565
	pos = (nodes->start << PAGE_SHIFT) + offset;

1566
	while (len && pos < adev->gmc.mc_vram_size) {
1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577
		uint64_t aligned_pos = pos & ~(uint64_t)3;
		uint32_t bytes = 4 - (pos & 3);
		uint32_t shift = (pos & 3) * 8;
		uint32_t mask = 0xffffffff << shift;

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

		spin_lock_irqsave(&adev->mmio_idx_lock, flags);
1578 1579
		WREG32_NO_KIQ(mmMM_INDEX, ((uint32_t)aligned_pos) | 0x80000000);
		WREG32_NO_KIQ(mmMM_INDEX_HI, aligned_pos >> 31);
1580
		if (!write || mask != 0xffffffff)
1581
			value = RREG32_NO_KIQ(mmMM_DATA);
1582 1583 1584
		if (write) {
			value &= ~mask;
			value |= (*(uint32_t *)buf << shift) & mask;
1585
			WREG32_NO_KIQ(mmMM_DATA, value);
1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605
		}
		spin_unlock_irqrestore(&adev->mmio_idx_lock, flags);
		if (!write) {
			value = (value & mask) >> shift;
			memcpy(buf, &value, bytes);
		}

		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;
}

A
Alex Deucher 已提交
1606 1607 1608 1609 1610 1611
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,
	.invalidate_caches = &amdgpu_invalidate_caches,
	.init_mem_type = &amdgpu_init_mem_type,
1612
	.eviction_valuable = amdgpu_ttm_bo_eviction_valuable,
A
Alex Deucher 已提交
1613 1614 1615 1616 1617 1618 1619
	.evict_flags = &amdgpu_evict_flags,
	.move = &amdgpu_bo_move,
	.verify_access = &amdgpu_verify_access,
	.move_notify = &amdgpu_bo_move_notify,
	.fault_reserve_notify = &amdgpu_bo_fault_reserve_notify,
	.io_mem_reserve = &amdgpu_ttm_io_mem_reserve,
	.io_mem_free = &amdgpu_ttm_io_mem_free,
1620
	.io_mem_pfn = amdgpu_ttm_io_mem_pfn,
1621
	.access_memory = &amdgpu_ttm_access_memory
A
Alex Deucher 已提交
1622 1623
};

1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649
/*
 * 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)
{
	amdgpu_bo_free_kernel(&adev->fw_vram_usage.reserved_bo,
		NULL, &adev->fw_vram_usage.va);
}

/**
 * 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)
{
	struct ttm_operation_ctx ctx = { false, false };
1650
	struct amdgpu_bo_param bp;
1651 1652
	int r = 0;
	int i;
1653
	u64 vram_size = adev->gmc.visible_vram_size;
1654 1655 1656 1657
	u64 offset = adev->fw_vram_usage.start_offset;
	u64 size = adev->fw_vram_usage.size;
	struct amdgpu_bo *bo;

1658 1659 1660 1661 1662 1663 1664 1665
	memset(&bp, 0, sizeof(bp));
	bp.size = adev->fw_vram_usage.size;
	bp.byte_align = PAGE_SIZE;
	bp.domain = AMDGPU_GEM_DOMAIN_VRAM;
	bp.flags = AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED |
		AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS;
	bp.type = ttm_bo_type_kernel;
	bp.resv = NULL;
1666 1667 1668 1669 1670 1671
	adev->fw_vram_usage.va = NULL;
	adev->fw_vram_usage.reserved_bo = NULL;

	if (adev->fw_vram_usage.size > 0 &&
		adev->fw_vram_usage.size <= vram_size) {

1672
		r = amdgpu_bo_create(adev, &bp,
1673
				     &adev->fw_vram_usage.reserved_bo);
1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700
		if (r)
			goto error_create;

		r = amdgpu_bo_reserve(adev->fw_vram_usage.reserved_bo, false);
		if (r)
			goto error_reserve;

		/* remove the original mem node and create a new one at the
		 * request position
		 */
		bo = adev->fw_vram_usage.reserved_bo;
		offset = ALIGN(offset, PAGE_SIZE);
		for (i = 0; i < bo->placement.num_placement; ++i) {
			bo->placements[i].fpfn = offset >> PAGE_SHIFT;
			bo->placements[i].lpfn = (offset + size) >> PAGE_SHIFT;
		}

		ttm_bo_mem_put(&bo->tbo, &bo->tbo.mem);
		r = ttm_bo_mem_space(&bo->tbo, &bo->placement,
				     &bo->tbo.mem, &ctx);
		if (r)
			goto error_pin;

		r = amdgpu_bo_pin_restricted(adev->fw_vram_usage.reserved_bo,
			AMDGPU_GEM_DOMAIN_VRAM,
			adev->fw_vram_usage.start_offset,
			(adev->fw_vram_usage.start_offset +
1701
			adev->fw_vram_usage.size));
1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723
		if (r)
			goto error_pin;
		r = amdgpu_bo_kmap(adev->fw_vram_usage.reserved_bo,
			&adev->fw_vram_usage.va);
		if (r)
			goto error_kmap;

		amdgpu_bo_unreserve(adev->fw_vram_usage.reserved_bo);
	}
	return r;

error_kmap:
	amdgpu_bo_unpin(adev->fw_vram_usage.reserved_bo);
error_pin:
	amdgpu_bo_unreserve(adev->fw_vram_usage.reserved_bo);
error_reserve:
	amdgpu_bo_unref(&adev->fw_vram_usage.reserved_bo);
error_create:
	adev->fw_vram_usage.va = NULL;
	adev->fw_vram_usage.reserved_bo = NULL;
	return r;
}
1724
/**
1725 1726
 * amdgpu_ttm_init - Init the memory management (ttm) as well as various
 * gtt/vram related fields.
1727 1728 1729 1730 1731 1732
 *
 * 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 已提交
1733 1734
int amdgpu_ttm_init(struct amdgpu_device *adev)
{
1735
	uint64_t gtt_size;
A
Alex Deucher 已提交
1736
	int r;
1737
	u64 vis_vram_limit;
A
Alex Deucher 已提交
1738

1739
	/* initialize global references for vram/gtt */
1740 1741 1742 1743
	r = amdgpu_ttm_global_init(adev);
	if (r) {
		return r;
	}
A
Alex Deucher 已提交
1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755
	/* No others user of address space so set it to 0 */
	r = ttm_bo_device_init(&adev->mman.bdev,
			       adev->mman.bo_global_ref.ref.object,
			       &amdgpu_bo_driver,
			       adev->ddev->anon_inode->i_mapping,
			       DRM_FILE_PAGE_OFFSET,
			       adev->need_dma32);
	if (r) {
		DRM_ERROR("failed initializing buffer object driver(%d).\n", r);
		return r;
	}
	adev->mman.initialized = true;
1756 1757 1758 1759

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

1760
	/* Initialize VRAM pool with all of VRAM divided into pages */
A
Alex Deucher 已提交
1761
	r = ttm_bo_init_mm(&adev->mman.bdev, TTM_PL_VRAM,
1762
				adev->gmc.real_vram_size >> PAGE_SHIFT);
A
Alex Deucher 已提交
1763 1764 1765 1766
	if (r) {
		DRM_ERROR("Failed initializing VRAM heap.\n");
		return r;
	}
1767 1768 1769 1770

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

A
Alex Deucher 已提交
1774
	/* Change the size here instead of the init above so only lpfn is affected */
1775
	amdgpu_ttm_set_buffer_funcs_status(adev, false);
1776 1777 1778 1779
#ifdef CONFIG_64BIT
	adev->mman.aper_base_kaddr = ioremap_wc(adev->gmc.aper_base,
						adev->gmc.visible_vram_size);
#endif
A
Alex Deucher 已提交
1780

1781 1782 1783 1784
	/*
	 *The reserved vram for firmware must be pinned to the specified
	 *place on the VRAM, so reserve it early.
	 */
1785
	r = amdgpu_ttm_fw_reserve_vram_init(adev);
1786 1787 1788 1789
	if (r) {
		return r;
	}

1790 1791 1792 1793
	/* 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.  */
1794 1795 1796 1797 1798 1799 1800 1801
	if (adev->gmc.stolen_size) {
		r = amdgpu_bo_create_kernel(adev, adev->gmc.stolen_size, PAGE_SIZE,
					    AMDGPU_GEM_DOMAIN_VRAM,
					    &adev->stolen_vga_memory,
					    NULL, NULL);
		if (r)
			return r;
	}
A
Alex Deucher 已提交
1802
	DRM_INFO("amdgpu: %uM of VRAM memory ready\n",
1803
		 (unsigned) (adev->gmc.real_vram_size / (1024 * 1024)));
1804

1805 1806
	/* Compute GTT size, either bsaed on 3/4th the size of RAM size
	 * or whatever the user passed on module init */
1807 1808 1809 1810
	if (amdgpu_gtt_size == -1) {
		struct sysinfo si;

		si_meminfo(&si);
1811
		gtt_size = min(max((AMDGPU_DEFAULT_GTT_SIZE_MB << 20),
1812
			       adev->gmc.mc_vram_size),
1813 1814 1815
			       ((uint64_t)si.totalram * si.mem_unit * 3/4));
	}
	else
1816
		gtt_size = (uint64_t)amdgpu_gtt_size << 20;
1817 1818

	/* Initialize GTT memory pool */
1819
	r = ttm_bo_init_mm(&adev->mman.bdev, TTM_PL_TT, gtt_size >> PAGE_SHIFT);
A
Alex Deucher 已提交
1820 1821 1822 1823 1824
	if (r) {
		DRM_ERROR("Failed initializing GTT heap.\n");
		return r;
	}
	DRM_INFO("amdgpu: %uM of GTT memory ready.\n",
1825
		 (unsigned)(gtt_size / (1024 * 1024)));
A
Alex Deucher 已提交
1826

1827
	/* Initialize various on-chip memory pools */
A
Alex Deucher 已提交
1828 1829 1830 1831 1832 1833 1834 1835 1836 1837
	adev->gds.mem.total_size = adev->gds.mem.total_size << AMDGPU_GDS_SHIFT;
	adev->gds.mem.gfx_partition_size = adev->gds.mem.gfx_partition_size << AMDGPU_GDS_SHIFT;
	adev->gds.mem.cs_partition_size = adev->gds.mem.cs_partition_size << AMDGPU_GDS_SHIFT;
	adev->gds.gws.total_size = adev->gds.gws.total_size << AMDGPU_GWS_SHIFT;
	adev->gds.gws.gfx_partition_size = adev->gds.gws.gfx_partition_size << AMDGPU_GWS_SHIFT;
	adev->gds.gws.cs_partition_size = adev->gds.gws.cs_partition_size << AMDGPU_GWS_SHIFT;
	adev->gds.oa.total_size = adev->gds.oa.total_size << AMDGPU_OA_SHIFT;
	adev->gds.oa.gfx_partition_size = adev->gds.oa.gfx_partition_size << AMDGPU_OA_SHIFT;
	adev->gds.oa.cs_partition_size = adev->gds.oa.cs_partition_size << AMDGPU_OA_SHIFT;
	/* GDS Memory */
1838 1839 1840 1841 1842 1843 1844
	if (adev->gds.mem.total_size) {
		r = ttm_bo_init_mm(&adev->mman.bdev, AMDGPU_PL_GDS,
				   adev->gds.mem.total_size >> PAGE_SHIFT);
		if (r) {
			DRM_ERROR("Failed initializing GDS heap.\n");
			return r;
		}
A
Alex Deucher 已提交
1845 1846 1847
	}

	/* GWS */
1848 1849 1850 1851 1852 1853 1854
	if (adev->gds.gws.total_size) {
		r = ttm_bo_init_mm(&adev->mman.bdev, AMDGPU_PL_GWS,
				   adev->gds.gws.total_size >> PAGE_SHIFT);
		if (r) {
			DRM_ERROR("Failed initializing gws heap.\n");
			return r;
		}
A
Alex Deucher 已提交
1855 1856 1857
	}

	/* OA */
1858 1859 1860 1861 1862 1863 1864
	if (adev->gds.oa.total_size) {
		r = ttm_bo_init_mm(&adev->mman.bdev, AMDGPU_PL_OA,
				   adev->gds.oa.total_size >> PAGE_SHIFT);
		if (r) {
			DRM_ERROR("Failed initializing oa heap.\n");
			return r;
		}
A
Alex Deucher 已提交
1865 1866
	}

1867
	/* Register debugfs entries for amdgpu_ttm */
A
Alex Deucher 已提交
1868 1869 1870 1871 1872 1873 1874 1875
	r = amdgpu_ttm_debugfs_init(adev);
	if (r) {
		DRM_ERROR("Failed to init debugfs\n");
		return r;
	}
	return 0;
}

1876
/**
1877
 * amdgpu_ttm_late_init - Handle any late initialization for amdgpu_ttm
1878
 */
1879 1880
void amdgpu_ttm_late_init(struct amdgpu_device *adev)
{
1881
	/* return the VGA stolen memory (if any) back to VRAM */
1882 1883 1884
	amdgpu_bo_free_kernel(&adev->stolen_vga_memory, NULL, NULL);
}

1885 1886 1887
/**
 * amdgpu_ttm_fini - De-initialize the TTM memory pools
 */
A
Alex Deucher 已提交
1888 1889 1890 1891
void amdgpu_ttm_fini(struct amdgpu_device *adev)
{
	if (!adev->mman.initialized)
		return;
1892

A
Alex Deucher 已提交
1893
	amdgpu_ttm_debugfs_fini(adev);
1894
	amdgpu_ttm_fw_reserve_vram_fini(adev);
1895 1896 1897
	if (adev->mman.aper_base_kaddr)
		iounmap(adev->mman.aper_base_kaddr);
	adev->mman.aper_base_kaddr = NULL;
1898

A
Alex Deucher 已提交
1899 1900
	ttm_bo_clean_mm(&adev->mman.bdev, TTM_PL_VRAM);
	ttm_bo_clean_mm(&adev->mman.bdev, TTM_PL_TT);
1901 1902 1903 1904 1905 1906
	if (adev->gds.mem.total_size)
		ttm_bo_clean_mm(&adev->mman.bdev, AMDGPU_PL_GDS);
	if (adev->gds.gws.total_size)
		ttm_bo_clean_mm(&adev->mman.bdev, AMDGPU_PL_GWS);
	if (adev->gds.oa.total_size)
		ttm_bo_clean_mm(&adev->mman.bdev, AMDGPU_PL_OA);
A
Alex Deucher 已提交
1907 1908 1909 1910 1911 1912
	ttm_bo_device_release(&adev->mman.bdev);
	amdgpu_ttm_global_fini(adev);
	adev->mman.initialized = false;
	DRM_INFO("amdgpu: ttm finalized\n");
}

1913 1914 1915 1916 1917 1918 1919 1920 1921 1922
/**
 * 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 已提交
1923
{
1924 1925
	struct ttm_mem_type_manager *man = &adev->mman.bdev.man[TTM_PL_VRAM];
	uint64_t size;
1926
	int r;
A
Alex Deucher 已提交
1927

1928 1929
	if (!adev->mman.initialized || adev->in_gpu_reset ||
	    adev->mman.buffer_funcs_enabled == enable)
A
Alex Deucher 已提交
1930 1931
		return;

1932 1933 1934 1935 1936 1937
	if (enable) {
		struct amdgpu_ring *ring;
		struct drm_sched_rq *rq;

		ring = adev->mman.buffer_funcs_ring;
		rq = &ring->sched.sched_rq[DRM_SCHED_PRIORITY_KERNEL];
1938
		r = drm_sched_entity_init(&adev->mman.entity, &rq, 1, NULL);
1939 1940 1941 1942 1943 1944
		if (r) {
			DRM_ERROR("Failed setting up TTM BO move entity (%d)\n",
				  r);
			return;
		}
	} else {
1945
		drm_sched_entity_destroy(&adev->mman.entity);
1946 1947
		dma_fence_put(man->move);
		man->move = NULL;
1948 1949
	}

A
Alex Deucher 已提交
1950
	/* this just adjusts TTM size idea, which sets lpfn to the correct value */
1951 1952 1953 1954
	if (enable)
		size = adev->gmc.real_vram_size;
	else
		size = adev->gmc.visible_vram_size;
A
Alex Deucher 已提交
1955
	man->size = size >> PAGE_SHIFT;
1956
	adev->mman.buffer_funcs_enabled = enable;
A
Alex Deucher 已提交
1957 1958 1959 1960 1961 1962 1963
}

int amdgpu_mmap(struct file *filp, struct vm_area_struct *vma)
{
	struct drm_file *file_priv;
	struct amdgpu_device *adev;

C
Christian König 已提交
1964
	if (unlikely(vma->vm_pgoff < DRM_FILE_PAGE_OFFSET))
A
Alex Deucher 已提交
1965 1966 1967 1968
		return -EINVAL;

	file_priv = filp->private_data;
	adev = file_priv->minor->dev->dev_private;
C
Christian König 已提交
1969
	if (adev == NULL)
A
Alex Deucher 已提交
1970
		return -EINVAL;
C
Christian König 已提交
1971 1972

	return ttm_bo_mmap(filp, vma, &adev->mman.bdev);
A
Alex Deucher 已提交
1973 1974
}

1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994
static int amdgpu_map_buffer(struct ttm_buffer_object *bo,
			     struct ttm_mem_reg *mem, unsigned num_pages,
			     uint64_t offset, unsigned window,
			     struct amdgpu_ring *ring,
			     uint64_t *addr)
{
	struct amdgpu_ttm_tt *gtt = (void *)bo->ttm;
	struct amdgpu_device *adev = ring->adev;
	struct ttm_tt *ttm = bo->ttm;
	struct amdgpu_job *job;
	unsigned num_dw, num_bytes;
	dma_addr_t *dma_address;
	struct dma_fence *fence;
	uint64_t src_addr, dst_addr;
	uint64_t flags;
	int r;

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

1995
	*addr = adev->gmc.gart_start;
1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011
	*addr += (u64)window * AMDGPU_GTT_MAX_TRANSFER_SIZE *
		AMDGPU_GPU_PAGE_SIZE;

	num_dw = adev->mman.buffer_funcs->copy_num_dw;
	while (num_dw & 0x7)
		num_dw++;

	num_bytes = num_pages * 8;

	r = amdgpu_job_alloc_with_ib(adev, num_dw * 4 + num_bytes, &job);
	if (r)
		return r;

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

2012
	dst_addr = amdgpu_bo_gpu_offset(adev->gart.bo);
2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026
	dst_addr += window * AMDGPU_GTT_MAX_TRANSFER_SIZE * 8;
	amdgpu_emit_copy_buffer(adev, &job->ibs[0], src_addr,
				dst_addr, num_bytes);

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

	dma_address = &gtt->ttm.dma_address[offset >> PAGE_SHIFT];
	flags = amdgpu_ttm_tt_pte_flags(adev, ttm, mem);
	r = amdgpu_gart_map(adev, 0, num_pages, dma_address, flags,
			    &job->ibs[0].ptr[num_dw]);
	if (r)
		goto error_free;

2027
	r = amdgpu_job_submit(job, &adev->mman.entity,
2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040
			      AMDGPU_FENCE_OWNER_UNDEFINED, &fence);
	if (r)
		goto error_free;

	dma_fence_put(fence);

	return r;

error_free:
	amdgpu_job_free(job);
	return r;
}

2041 2042
int amdgpu_copy_buffer(struct amdgpu_ring *ring, uint64_t src_offset,
		       uint64_t dst_offset, uint32_t byte_count,
A
Alex Deucher 已提交
2043
		       struct reservation_object *resv,
2044 2045
		       struct dma_fence **fence, bool direct_submit,
		       bool vm_needs_flush)
A
Alex Deucher 已提交
2046 2047
{
	struct amdgpu_device *adev = ring->adev;
2048 2049
	struct amdgpu_job *job;

A
Alex Deucher 已提交
2050 2051 2052 2053 2054
	uint32_t max_bytes;
	unsigned num_loops, num_dw;
	unsigned i;
	int r;

2055 2056 2057 2058 2059
	if (direct_submit && !ring->ready) {
		DRM_ERROR("Trying to move memory with ring turned off.\n");
		return -EINVAL;
	}

A
Alex Deucher 已提交
2060 2061 2062 2063
	max_bytes = adev->mman.buffer_funcs->copy_max_bytes;
	num_loops = DIV_ROUND_UP(byte_count, max_bytes);
	num_dw = num_loops * adev->mman.buffer_funcs->copy_num_dw;

2064 2065 2066 2067
	/* for IB padding */
	while (num_dw & 0x7)
		num_dw++;

2068 2069
	r = amdgpu_job_alloc_with_ib(adev, num_dw * 4, &job);
	if (r)
2070
		return r;
2071

2072
	if (vm_needs_flush) {
2073
		job->vm_pd_addr = amdgpu_gmc_pd_addr(adev->gart.bo);
2074 2075
		job->vm_needs_flush = true;
	}
2076
	if (resv) {
2077
		r = amdgpu_sync_resv(adev, &job->sync, resv,
2078 2079
				     AMDGPU_FENCE_OWNER_UNDEFINED,
				     false);
2080 2081 2082 2083
		if (r) {
			DRM_ERROR("sync failed (%d).\n", r);
			goto error_free;
		}
A
Alex Deucher 已提交
2084 2085 2086 2087 2088
	}

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

2089 2090
		amdgpu_emit_copy_buffer(adev, &job->ibs[0], src_offset,
					dst_offset, cur_size_in_bytes);
A
Alex Deucher 已提交
2091 2092 2093 2094 2095 2096

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

2097 2098
	amdgpu_ring_pad_ib(ring, &job->ibs[0]);
	WARN_ON(job->ibs[0].length_dw > num_dw);
2099 2100 2101
	if (direct_submit)
		r = amdgpu_job_submit_direct(job, ring, fence);
	else
2102
		r = amdgpu_job_submit(job, &adev->mman.entity,
2103
				      AMDGPU_FENCE_OWNER_UNDEFINED, fence);
2104 2105
	if (r)
		goto error_free;
A
Alex Deucher 已提交
2106

2107
	return r;
2108

2109
error_free:
2110
	amdgpu_job_free(job);
2111
	DRM_ERROR("Error scheduling IBs (%d)\n", r);
2112
	return r;
A
Alex Deucher 已提交
2113 2114
}

2115
int amdgpu_fill_buffer(struct amdgpu_bo *bo,
2116
		       uint32_t src_data,
2117 2118
		       struct reservation_object *resv,
		       struct dma_fence **fence)
2119
{
2120
	struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
2121
	uint32_t max_bytes = adev->mman.buffer_funcs->fill_max_bytes;
2122 2123
	struct amdgpu_ring *ring = adev->mman.buffer_funcs_ring;

2124 2125
	struct drm_mm_node *mm_node;
	unsigned long num_pages;
2126
	unsigned int num_loops, num_dw;
2127 2128

	struct amdgpu_job *job;
2129 2130
	int r;

2131
	if (!adev->mman.buffer_funcs_enabled) {
2132 2133 2134 2135
		DRM_ERROR("Trying to clear memory with ring turned off.\n");
		return -EINVAL;
	}

2136
	if (bo->tbo.mem.mem_type == TTM_PL_TT) {
2137
		r = amdgpu_ttm_alloc_gart(&bo->tbo);
2138 2139 2140 2141
		if (r)
			return r;
	}

2142 2143 2144 2145 2146 2147 2148 2149 2150 2151
	num_pages = bo->tbo.num_pages;
	mm_node = bo->tbo.mem.mm_node;
	num_loops = 0;
	while (num_pages) {
		uint32_t byte_count = mm_node->size << PAGE_SHIFT;

		num_loops += DIV_ROUND_UP(byte_count, max_bytes);
		num_pages -= mm_node->size;
		++mm_node;
	}
2152
	num_dw = num_loops * adev->mman.buffer_funcs->fill_num_dw;
2153 2154

	/* for IB padding */
2155
	num_dw += 64;
2156 2157 2158 2159 2160 2161 2162

	r = amdgpu_job_alloc_with_ib(adev, num_dw * 4, &job);
	if (r)
		return r;

	if (resv) {
		r = amdgpu_sync_resv(adev, &job->sync, resv,
2163
				     AMDGPU_FENCE_OWNER_UNDEFINED, false);
2164 2165 2166 2167 2168 2169
		if (r) {
			DRM_ERROR("sync failed (%d).\n", r);
			goto error_free;
		}
	}

2170 2171
	num_pages = bo->tbo.num_pages;
	mm_node = bo->tbo.mem.mm_node;
2172

2173 2174 2175
	while (num_pages) {
		uint32_t byte_count = mm_node->size << PAGE_SHIFT;
		uint64_t dst_addr;
2176

2177
		dst_addr = amdgpu_mm_node_addr(&bo->tbo, mm_node, &bo->tbo.mem);
2178 2179 2180
		while (byte_count) {
			uint32_t cur_size_in_bytes = min(byte_count, max_bytes);

2181 2182
			amdgpu_emit_fill_buffer(adev, &job->ibs[0], src_data,
						dst_addr, cur_size_in_bytes);
2183 2184 2185 2186 2187 2188 2189

			dst_addr += cur_size_in_bytes;
			byte_count -= cur_size_in_bytes;
		}

		num_pages -= mm_node->size;
		++mm_node;
2190 2191 2192 2193
	}

	amdgpu_ring_pad_ib(ring, &job->ibs[0]);
	WARN_ON(job->ibs[0].length_dw > num_dw);
2194
	r = amdgpu_job_submit(job, &adev->mman.entity,
2195
			      AMDGPU_FENCE_OWNER_UNDEFINED, fence);
2196 2197 2198 2199 2200 2201 2202 2203 2204 2205
	if (r)
		goto error_free;

	return 0;

error_free:
	amdgpu_job_free(job);
	return r;
}

A
Alex Deucher 已提交
2206 2207 2208 2209 2210
#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;
2211
	unsigned ttm_pl = (uintptr_t)node->info_ent->data;
A
Alex Deucher 已提交
2212 2213
	struct drm_device *dev = node->minor->dev;
	struct amdgpu_device *adev = dev->dev_private;
2214
	struct ttm_mem_type_manager *man = &adev->mman.bdev.man[ttm_pl];
D
Daniel Vetter 已提交
2215
	struct drm_printer p = drm_seq_file_printer(m);
A
Alex Deucher 已提交
2216

2217
	man->func->debug(man, &p);
D
Daniel Vetter 已提交
2218
	return 0;
A
Alex Deucher 已提交
2219 2220
}

2221
static const struct drm_info_list amdgpu_ttm_debugfs_list[] = {
2222 2223 2224 2225 2226
	{"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 已提交
2227 2228 2229 2230 2231 2232
	{"ttm_page_pool", ttm_page_alloc_debugfs, 0, NULL},
#ifdef CONFIG_SWIOTLB
	{"ttm_dma_page_pool", ttm_dma_page_alloc_debugfs, 0, NULL}
#endif
};

2233 2234 2235 2236 2237
/**
 * amdgpu_ttm_vram_read - Linear read access to VRAM
 *
 * Accesses VRAM via MMIO for debugging purposes.
 */
A
Alex Deucher 已提交
2238 2239 2240
static ssize_t amdgpu_ttm_vram_read(struct file *f, char __user *buf,
				    size_t size, loff_t *pos)
{
A
Al Viro 已提交
2241
	struct amdgpu_device *adev = file_inode(f)->i_private;
A
Alex Deucher 已提交
2242 2243 2244 2245 2246 2247
	ssize_t result = 0;
	int r;

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

2248
	if (*pos >= adev->gmc.mc_vram_size)
2249 2250
		return -ENXIO;

A
Alex Deucher 已提交
2251 2252 2253 2254
	while (size) {
		unsigned long flags;
		uint32_t value;

2255
		if (*pos >= adev->gmc.mc_vram_size)
A
Alex Deucher 已提交
2256 2257 2258
			return result;

		spin_lock_irqsave(&adev->mmio_idx_lock, flags);
2259 2260 2261
		WREG32_NO_KIQ(mmMM_INDEX, ((uint32_t)*pos) | 0x80000000);
		WREG32_NO_KIQ(mmMM_INDEX_HI, *pos >> 31);
		value = RREG32_NO_KIQ(mmMM_DATA);
A
Alex Deucher 已提交
2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276
		spin_unlock_irqrestore(&adev->mmio_idx_lock, flags);

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

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

	return result;
}

2277 2278 2279 2280 2281
/**
 * amdgpu_ttm_vram_write - Linear write access to VRAM
 *
 * Accesses VRAM via MMIO for debugging purposes.
 */
2282 2283 2284 2285 2286 2287 2288 2289 2290 2291
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;

2292
	if (*pos >= adev->gmc.mc_vram_size)
2293 2294 2295 2296 2297 2298
		return -ENXIO;

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

2299
		if (*pos >= adev->gmc.mc_vram_size)
2300 2301 2302 2303 2304 2305 2306
			return result;

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

		spin_lock_irqsave(&adev->mmio_idx_lock, flags);
2307 2308 2309
		WREG32_NO_KIQ(mmMM_INDEX, ((uint32_t)*pos) | 0x80000000);
		WREG32_NO_KIQ(mmMM_INDEX_HI, *pos >> 31);
		WREG32_NO_KIQ(mmMM_DATA, value);
2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320
		spin_unlock_irqrestore(&adev->mmio_idx_lock, flags);

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

	return result;
}

A
Alex Deucher 已提交
2321 2322 2323
static const struct file_operations amdgpu_ttm_vram_fops = {
	.owner = THIS_MODULE,
	.read = amdgpu_ttm_vram_read,
2324 2325
	.write = amdgpu_ttm_vram_write,
	.llseek = default_llseek,
A
Alex Deucher 已提交
2326 2327
};

2328 2329
#ifdef CONFIG_DRM_AMDGPU_GART_DEBUGFS

2330 2331 2332
/**
 * amdgpu_ttm_gtt_read - Linear read access to GTT memory
 */
A
Alex Deucher 已提交
2333 2334 2335
static ssize_t amdgpu_ttm_gtt_read(struct file *f, char __user *buf,
				   size_t size, loff_t *pos)
{
A
Al Viro 已提交
2336
	struct amdgpu_device *adev = file_inode(f)->i_private;
A
Alex Deucher 已提交
2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379
	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

2380 2381 2382 2383 2384 2385 2386
/**
 * 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).
 */
2387 2388
static ssize_t amdgpu_iomem_read(struct file *f, char __user *buf,
				 size_t size, loff_t *pos)
2389 2390 2391
{
	struct amdgpu_device *adev = file_inode(f)->i_private;
	struct iommu_domain *dom;
2392 2393
	ssize_t result = 0;
	int r;
2394

2395
	/* retrieve the IOMMU domain if any for this device */
2396
	dom = iommu_get_domain_for_dev(adev->dev);
2397

2398 2399 2400 2401 2402 2403 2404 2405 2406 2407
	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;

2408 2409 2410 2411
		/* 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
		 */
2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422
		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);
2423
		r = copy_to_user(buf, ptr + off, bytes);
2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435
		kunmap(p);
		if (r)
			return -EFAULT;

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

	return result;
}

2436 2437 2438 2439 2440 2441 2442
/**
 * 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).
 */
2443 2444 2445 2446 2447 2448 2449
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;
2450 2451

	dom = iommu_get_domain_for_dev(adev->dev);
2452

2453 2454 2455 2456 2457 2458 2459 2460 2461
	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;
2462

2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473
		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);
2474
		r = copy_from_user(ptr + off, buf, bytes);
2475 2476 2477 2478 2479 2480 2481 2482 2483 2484
		kunmap(p);
		if (r)
			return -EFAULT;

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

	return result;
2485 2486
}

2487
static const struct file_operations amdgpu_ttm_iomem_fops = {
2488
	.owner = THIS_MODULE,
2489 2490
	.read = amdgpu_iomem_read,
	.write = amdgpu_iomem_write,
2491 2492
	.llseek = default_llseek
};
2493 2494 2495 2496 2497 2498 2499 2500 2501 2502

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
2503
	{ "amdgpu_iomem", &amdgpu_ttm_iomem_fops, TTM_PL_SYSTEM },
2504 2505
};

2506 2507
#endif

A
Alex Deucher 已提交
2508 2509 2510 2511 2512 2513 2514 2515
static int amdgpu_ttm_debugfs_init(struct amdgpu_device *adev)
{
#if defined(CONFIG_DEBUG_FS)
	unsigned count;

	struct drm_minor *minor = adev->ddev->primary;
	struct dentry *ent, *root = minor->debugfs_root;

2516 2517 2518 2519 2520 2521 2522 2523 2524
	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)
2525
			i_size_write(ent->d_inode, adev->gmc.mc_vram_size);
2526
		else if (ttm_debugfs_entries[count].domain == TTM_PL_TT)
2527
			i_size_write(ent->d_inode, adev->gmc.gart_size);
2528 2529
		adev->mman.debugfs_entries[count] = ent;
	}
A
Alex Deucher 已提交
2530 2531 2532 2533

	count = ARRAY_SIZE(amdgpu_ttm_debugfs_list);

#ifdef CONFIG_SWIOTLB
2534
	if (!(adev->need_swiotlb && swiotlb_nr_tbl()))
A
Alex Deucher 已提交
2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546
		--count;
#endif

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

static void amdgpu_ttm_debugfs_fini(struct amdgpu_device *adev)
{
#if defined(CONFIG_DEBUG_FS)
2547
	unsigned i;
A
Alex Deucher 已提交
2548

2549 2550
	for (i = 0; i < ARRAY_SIZE(ttm_debugfs_entries); i++)
		debugfs_remove(adev->mman.debugfs_entries[i]);
2551
#endif
A
Alex Deucher 已提交
2552
}