amdgpu_ttm.c 61.9 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 35 36
#include <linux/iommu.h>
#include <linux/pagemap.h>
#include <linux/sched/task.h>
37
#include <linux/sched/mm.h>
38 39 40 41
#include <linux/seq_file.h>
#include <linux/slab.h>
#include <linux/swap.h>
#include <linux/swiotlb.h>
42
#include <linux/dma-buf.h>
43
#include <linux/sizes.h>
44
#include <linux/module.h>
45

46
#include <drm/drm_drv.h>
47 48 49
#include <drm/ttm/ttm_bo_api.h>
#include <drm/ttm/ttm_bo_driver.h>
#include <drm/ttm/ttm_placement.h>
50
#include <drm/ttm/ttm_range_manager.h>
51

A
Alex Deucher 已提交
52
#include <drm/amdgpu_drm.h>
53
#include <drm/drm_drv.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"
62
#include "amdgpu_res_cursor.h"
A
Alex Deucher 已提交
63 64
#include "bif/bif_4_1_d.h"

65 66
MODULE_IMPORT_NS(DMA_BUF);

67 68
#define AMDGPU_TTM_VRAM_MAX_DW_READ	(size_t)128

69
static int amdgpu_ttm_backend_bind(struct ttm_device *bdev,
70 71
				   struct ttm_tt *ttm,
				   struct ttm_resource *bo_mem);
72
static void amdgpu_ttm_backend_unbind(struct ttm_device *bdev,
73
				      struct ttm_tt *ttm);
74

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

83 84 85 86 87 88 89 90
/**
 * 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 已提交
91 92 93
static void amdgpu_evict_flags(struct ttm_buffer_object *bo,
				struct ttm_placement *placement)
{
94
	struct amdgpu_device *adev = amdgpu_ttm_adev(bo->bdev);
95
	struct amdgpu_bo *abo;
96
	static const struct ttm_place placements = {
A
Alex Deucher 已提交
97 98
		.fpfn = 0,
		.lpfn = 0,
99
		.mem_type = TTM_PL_SYSTEM,
100
		.flags = 0
A
Alex Deucher 已提交
101 102
	};

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

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

119
	abo = ttm_to_amdgpu_bo(bo);
120
	if (abo->flags & AMDGPU_GEM_CREATE_DISCARDABLE) {
121 122 123 124
		placement->num_placement = 0;
		placement->num_busy_placement = 0;
		return;
	}
125 126

	switch (bo->resource->mem_type) {
127 128 129 130 131 132 133
	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 已提交
134
	case TTM_PL_VRAM:
135
		if (!adev->mman.buffer_funcs_enabled) {
136
			/* Move to system memory */
137
			amdgpu_bo_placement_from_domain(abo, AMDGPU_GEM_DOMAIN_CPU);
138
		} else if (!amdgpu_gmc_vram_full_visible(&adev->gmc) &&
139 140
			   !(abo->flags & AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED) &&
			   amdgpu_bo_in_cpu_visible_vram(abo)) {
141 142 143 144 145 146

			/* 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
			 */
147
			amdgpu_bo_placement_from_domain(abo, AMDGPU_GEM_DOMAIN_VRAM |
148 149
							AMDGPU_GEM_DOMAIN_GTT |
							AMDGPU_GEM_DOMAIN_CPU);
150
			abo->placements[0].fpfn = adev->gmc.visible_vram_size >> PAGE_SHIFT;
151 152 153
			abo->placements[0].lpfn = 0;
			abo->placement.busy_placement = &abo->placements[1];
			abo->placement.num_busy_placement = 1;
154
		} else {
155
			/* Move to GTT memory */
156 157
			amdgpu_bo_placement_from_domain(abo, AMDGPU_GEM_DOMAIN_GTT |
							AMDGPU_GEM_DOMAIN_CPU);
158
		}
A
Alex Deucher 已提交
159 160
		break;
	case TTM_PL_TT:
161
	case AMDGPU_PL_PREEMPT:
A
Alex Deucher 已提交
162
	default:
163
		amdgpu_bo_placement_from_domain(abo, AMDGPU_GEM_DOMAIN_CPU);
164
		break;
A
Alex Deucher 已提交
165
	}
166
	*placement = abo->placement;
A
Alex Deucher 已提交
167 168
}

169 170 171 172
/**
 * amdgpu_ttm_map_buffer - Map memory into the GART windows
 * @bo: buffer object to map
 * @mem: memory object to map
173
 * @mm_cur: range to map
174 175 176
 * @window: which GART window to use
 * @ring: DMA ring to use for the copy
 * @tmz: if we should setup a TMZ enabled mapping
177
 * @size: in number of bytes to map, out number of bytes mapped
178 179 180 181 182 183
 * @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,
184
				 struct ttm_resource *mem,
185
				 struct amdgpu_res_cursor *mm_cur,
186 187
				 unsigned window, struct amdgpu_ring *ring,
				 bool tmz, uint64_t *size, uint64_t *addr)
188 189
{
	struct amdgpu_device *adev = ring->adev;
190
	unsigned offset, num_pages, num_dw, num_bytes;
191
	uint64_t src_addr, dst_addr;
192 193
	struct dma_fence *fence;
	struct amdgpu_job *job;
194
	void *cpu_addr;
195
	uint64_t flags;
196
	unsigned int i;
197 198 199 200
	int r;

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

	if (WARN_ON(mem->mem_type == AMDGPU_PL_PREEMPT))
		return -EINVAL;
204 205

	/* Map only what can't be accessed directly */
206
	if (!tmz && mem->start != AMDGPU_BO_INVALID_OFFSET) {
207 208
		*addr = amdgpu_ttm_domain_start(adev, mem->mem_type) +
			mm_cur->start;
209 210 211
		return 0;
	}

212 213 214 215 216 217 218 219 220 221 222 223

	/*
	 * If start begins at an offset inside the page, then adjust the size
	 * and addr accordingly
	 */
	offset = mm_cur->start & ~PAGE_MASK;

	num_pages = PFN_UP(*size + offset);
	num_pages = min_t(uint32_t, num_pages, AMDGPU_GTT_MAX_TRANSFER_SIZE);

	*size = min(*size, (uint64_t)num_pages * PAGE_SIZE - offset);

224 225 226
	*addr = adev->gmc.gart_start;
	*addr += (u64)window * AMDGPU_GTT_MAX_TRANSFER_SIZE *
		AMDGPU_GPU_PAGE_SIZE;
227
	*addr += offset;
228 229

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

	r = amdgpu_job_alloc_with_ib(adev, num_dw * 4 + num_bytes,
233
				     AMDGPU_IB_POOL_DELAYED, &job);
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
	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;

252 253 254
	cpu_addr = &job->ibs[0].ptr[num_dw];

	if (mem->mem_type == TTM_PL_TT) {
255
		dma_addr_t *dma_addr;
256

257
		dma_addr = &bo->ttm->dma_address[mm_cur->start >> PAGE_SHIFT];
258
		amdgpu_gart_map(adev, 0, num_pages, dma_addr, flags, cpu_addr);
259 260 261
	} else {
		dma_addr_t dma_address;

262
		dma_address = mm_cur->start;
263 264 265
		dma_address += adev->vm_manager.vram_base_offset;

		for (i = 0; i < num_pages; ++i) {
266 267
			amdgpu_gart_map(adev, i << PAGE_SHIFT, 1, &dma_address,
					flags, cpu_addr);
268 269 270
			dma_address += PAGE_SIZE;
		}
	}
271 272 273 274 275 276 277 278 279 280 281 282 283 284 285

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

286
/**
287
 * amdgpu_ttm_copy_mem_to_mem - Helper function for copy
288 289 290 291 292 293 294
 * @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.
295 296 297 298 299 300 301
 *
 * 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,
302 303
			       const struct amdgpu_copy_mem *src,
			       const struct amdgpu_copy_mem *dst,
304
			       uint64_t size, bool tmz,
305
			       struct dma_resv *resv,
306
			       struct dma_fence **f)
307 308
{
	struct amdgpu_ring *ring = adev->mman.buffer_funcs_ring;
309
	struct amdgpu_res_cursor src_mm, dst_mm;
310
	struct dma_fence *fence = NULL;
311
	int r = 0;
312

313
	if (!adev->mman.buffer_funcs_enabled) {
A
Alex Deucher 已提交
314 315 316 317
		DRM_ERROR("Trying to move memory with ring turned off.\n");
		return -EINVAL;
	}

318 319
	amdgpu_res_first(src->mem, src->offset, size, &src_mm);
	amdgpu_res_first(dst->mem, dst->offset, size, &dst_mm);
320

321
	mutex_lock(&adev->mman.gtt_window_lock);
322
	while (src_mm.remaining) {
323
		uint64_t from, to, cur_size;
324
		struct dma_fence *next;
325

326 327
		/* Never copy more than 256MiB at once to avoid a timeout */
		cur_size = min3(src_mm.size, dst_mm.size, 256ULL << 20);
328 329

		/* Map src to window 0 and dst to window 1. */
330
		r = amdgpu_ttm_map_buffer(src->bo, src->mem, &src_mm,
331
					  0, ring, tmz, &cur_size, &from);
332 333
		if (r)
			goto error;
334

335
		r = amdgpu_ttm_map_buffer(dst->bo, dst->mem, &dst_mm,
336
					  1, ring, tmz, &cur_size, &to);
337 338
		if (r)
			goto error;
339

340
		r = amdgpu_copy_buffer(ring, from, to, cur_size,
341
				       resv, &next, false, true, tmz);
342 343 344
		if (r)
			goto error;

345
		dma_fence_put(fence);
346 347
		fence = next;

348 349
		amdgpu_res_next(&src_mm, cur_size);
		amdgpu_res_next(&dst_mm, cur_size);
350
	}
351
error:
352
	mutex_unlock(&adev->mman.gtt_window_lock);
353 354 355 356 357 358
	if (f)
		*f = dma_fence_get(fence);
	dma_fence_put(fence);
	return r;
}

359
/*
360 361
 * amdgpu_move_blit - Copy an entire buffer to another buffer
 *
362 363
 * This is a helper called by amdgpu_bo_move() and amdgpu_move_vram_ram() to
 * help move buffers to and from VRAM.
364
 */
365
static int amdgpu_move_blit(struct ttm_buffer_object *bo,
366
			    bool evict,
367 368
			    struct ttm_resource *new_mem,
			    struct ttm_resource *old_mem)
369 370
{
	struct amdgpu_device *adev = amdgpu_ttm_adev(bo->bdev);
371
	struct amdgpu_bo *abo = ttm_to_amdgpu_bo(bo);
372 373 374 375 376 377 378 379 380 381 382 383 384
	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,
385
				       amdgpu_bo_encrypted(abo),
386
				       bo->base.resv, &fence);
387 388
	if (r)
		goto error;
389

390 391
	/* clear the space being freed */
	if (old_mem->mem_type == TTM_PL_VRAM &&
392
	    (abo->flags & AMDGPU_GEM_CREATE_VRAM_WIPE_ON_RELEASE)) {
393 394
		struct dma_fence *wipe_fence = NULL;

395
		r = amdgpu_fill_buffer(abo, AMDGPU_POISON, NULL, &wipe_fence);
396 397 398 399 400 401 402 403
		if (r) {
			goto error;
		} else if (wipe_fence) {
			dma_fence_put(fence);
			fence = wipe_fence;
		}
	}

404 405
	/* Always block for VM page tables before committing the new location */
	if (bo->type == ttm_bo_type_kernel)
406
		r = ttm_bo_move_accel_cleanup(bo, fence, true, false, new_mem);
407
	else
408
		r = ttm_bo_move_accel_cleanup(bo, fence, evict, true, new_mem);
409
	dma_fence_put(fence);
A
Alex Deucher 已提交
410
	return r;
411 412 413

error:
	if (fence)
414 415
		dma_fence_wait(fence, false);
	dma_fence_put(fence);
416
	return r;
A
Alex Deucher 已提交
417 418
}

419
/*
420 421 422 423 424
 * 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,
425
			       struct ttm_resource *mem)
426
{
427
	u64 mem_size = (u64)mem->num_pages << PAGE_SHIFT;
428
	struct amdgpu_res_cursor cursor;
429
	u64 end;
430 431 432 433 434 435 436

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

437
	amdgpu_res_first(mem, 0, mem_size, &cursor);
438 439 440
	end = cursor.start + cursor.size;
	while (cursor.remaining) {
		amdgpu_res_next(&cursor, cursor.size);
441

442 443 444
		if (!cursor.remaining)
			break;

445 446 447 448 449 450
		/* ttm_resource_ioremap only supports contiguous memory */
		if (end != cursor.start)
			return false;

		end = cursor.start + cursor.size;
	}
451

452
	return end <= adev->gmc.visible_vram_size;
453 454
}

455
/*
456 457 458 459
 * amdgpu_bo_move - Move a buffer object to a new memory location
 *
 * Called by ttm_bo_handle_move_mem()
 */
460 461
static int amdgpu_bo_move(struct ttm_buffer_object *bo, bool evict,
			  struct ttm_operation_ctx *ctx,
462 463
			  struct ttm_resource *new_mem,
			  struct ttm_place *hop)
A
Alex Deucher 已提交
464 465
{
	struct amdgpu_device *adev;
466
	struct amdgpu_bo *abo;
467
	struct ttm_resource *old_mem = bo->resource;
A
Alex Deucher 已提交
468 469
	int r;

470 471
	if (new_mem->mem_type == TTM_PL_TT ||
	    new_mem->mem_type == AMDGPU_PL_PREEMPT) {
472 473 474 475 476
		r = amdgpu_ttm_backend_bind(bo->bdev, bo->ttm, new_mem);
		if (r)
			return r;
	}

477
	/* Can't move a pinned BO */
478
	abo = ttm_to_amdgpu_bo(bo);
479
	if (WARN_ON_ONCE(abo->tbo.pin_count > 0))
480 481
		return -EINVAL;

482
	adev = amdgpu_ttm_adev(bo->bdev);
483

484 485
	if (!old_mem || (old_mem->mem_type == TTM_PL_SYSTEM &&
			 bo->ttm == NULL)) {
486
		ttm_bo_move_null(bo, new_mem);
487
		goto out;
A
Alex Deucher 已提交
488
	}
489
	if (old_mem->mem_type == TTM_PL_SYSTEM &&
490 491
	    (new_mem->mem_type == TTM_PL_TT ||
	     new_mem->mem_type == AMDGPU_PL_PREEMPT)) {
492
		ttm_bo_move_null(bo, new_mem);
493
		goto out;
A
Alex Deucher 已提交
494
	}
495 496
	if ((old_mem->mem_type == TTM_PL_TT ||
	     old_mem->mem_type == AMDGPU_PL_PREEMPT) &&
497
	    new_mem->mem_type == TTM_PL_SYSTEM) {
498
		r = ttm_bo_wait_ctx(bo, ctx);
499
		if (r)
500
			return r;
501 502

		amdgpu_ttm_backend_unbind(bo->bdev, bo->ttm);
503
		ttm_resource_free(bo, &bo->resource);
504
		ttm_bo_assign_mem(bo, new_mem);
505
		goto out;
506
	}
507

508 509 510 511 512 513 514
	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 */
515
		ttm_bo_move_null(bo, new_mem);
516
		goto out;
517
	}
518

519 520 521 522 523 524 525 526 527
	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;
	}

528 529 530 531 532 533 534 535
	if (adev->mman.buffer_funcs_enabled) {
		if (((old_mem->mem_type == TTM_PL_SYSTEM &&
		      new_mem->mem_type == TTM_PL_VRAM) ||
		     (old_mem->mem_type == TTM_PL_VRAM &&
		      new_mem->mem_type == TTM_PL_SYSTEM))) {
			hop->fpfn = 0;
			hop->lpfn = 0;
			hop->mem_type = TTM_PL_TT;
536
			hop->flags = TTM_PL_FLAG_TEMPORARY;
537 538 539 540 541
			return -EMULTIHOP;
		}

		r = amdgpu_move_blit(bo, evict, new_mem, old_mem);
	} else {
542 543
		r = -ENODEV;
	}
A
Alex Deucher 已提交
544 545

	if (r) {
546 547 548 549
		/* 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");
550
			return r;
A
Alex Deucher 已提交
551
		}
552 553 554

		r = ttm_bo_move_memcpy(bo, ctx, new_mem);
		if (r)
555
			return r;
A
Alex Deucher 已提交
556 557
	}

558
out:
A
Alex Deucher 已提交
559
	/* update statistics */
560
	atomic64_add(bo->base.size, &adev->num_bytes_moved);
561
	amdgpu_bo_move_notify(bo, evict, new_mem);
A
Alex Deucher 已提交
562 563 564
	return 0;
}

565
/*
566 567 568 569
 * 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()
 */
570 571
static int amdgpu_ttm_io_mem_reserve(struct ttm_device *bdev,
				     struct ttm_resource *mem)
A
Alex Deucher 已提交
572
{
573
	struct amdgpu_device *adev = amdgpu_ttm_adev(bdev);
574
	size_t bus_size = (size_t)mem->num_pages << PAGE_SHIFT;
A
Alex Deucher 已提交
575 576 577 578 579 580

	switch (mem->mem_type) {
	case TTM_PL_SYSTEM:
		/* system memory */
		return 0;
	case TTM_PL_TT:
581
	case AMDGPU_PL_PREEMPT:
A
Alex Deucher 已提交
582 583 584 585
		break;
	case TTM_PL_VRAM:
		mem->bus.offset = mem->start << PAGE_SHIFT;
		/* check if it's visible */
586
		if ((mem->bus.offset + bus_size) > adev->gmc.visible_vram_size)
A
Alex Deucher 已提交
587
			return -EINVAL;
588

589
		if (adev->mman.aper_base_kaddr &&
590
		    mem->placement & TTM_PL_FLAG_CONTIGUOUS)
591 592 593
			mem->bus.addr = (u8 *)adev->mman.aper_base_kaddr +
					mem->bus.offset;

594
		mem->bus.offset += adev->gmc.aper_base;
A
Alex Deucher 已提交
595 596 597 598 599 600 601 602
		mem->bus.is_iomem = true;
		break;
	default:
		return -EINVAL;
	}
	return 0;
}

603 604 605
static unsigned long amdgpu_ttm_io_mem_pfn(struct ttm_buffer_object *bo,
					   unsigned long page_offset)
{
606
	struct amdgpu_device *adev = amdgpu_ttm_adev(bo->bdev);
607
	struct amdgpu_res_cursor cursor;
608

609 610
	amdgpu_res_first(bo->resource, (u64)page_offset << PAGE_SHIFT, 0,
			 &cursor);
611
	return (adev->gmc.aper_base + cursor.start) >> PAGE_SHIFT;
612 613
}

614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634
/**
 * 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 已提交
635 636 637 638
/*
 * TTM backend functions.
 */
struct amdgpu_ttm_tt {
639
	struct ttm_tt	ttm;
640
	struct drm_gem_object	*gobj;
641 642
	u64			offset;
	uint64_t		userptr;
643
	struct task_struct	*usertask;
644
	uint32_t		userflags;
645
	bool			bound;
A
Alex Deucher 已提交
646 647
};

648 649
#define ttm_to_amdgpu_ttm_tt(ptr)	container_of(ptr, struct amdgpu_ttm_tt, ttm)

650
#ifdef CONFIG_DRM_AMDGPU_USERPTR
651
/*
652 653
 * amdgpu_ttm_tt_get_user_pages - get device accessible pages that back user
 * memory and start HMM tracking CPU page table update
654
 *
655 656
 * Calling function must call amdgpu_ttm_tt_userptr_range_done() once and only
 * once afterwards to stop HMM tracking
657
 */
658 659
int amdgpu_ttm_tt_get_user_pages(struct amdgpu_bo *bo, struct page **pages,
				 struct hmm_range **range)
A
Alex Deucher 已提交
660
{
661
	struct ttm_tt *ttm = bo->tbo.ttm;
662
	struct amdgpu_ttm_tt *gtt = ttm_to_amdgpu_ttm_tt(ttm);
663
	unsigned long start = gtt->userptr;
664
	struct vm_area_struct *vma;
665
	struct mm_struct *mm;
666
	bool readonly;
667
	int r = 0;
A
Alex Deucher 已提交
668

669 670 671
	/* Make sure get_user_pages_done() can cleanup gracefully */
	*range = NULL;

672 673 674
	mm = bo->notifier.mm;
	if (unlikely(!mm)) {
		DRM_DEBUG_DRIVER("BO is not registered?\n");
675
		return -EFAULT;
676
	}
677

678
	if (!mmget_not_zero(mm)) /* Happens during process shutdown */
679 680
		return -ESRCH;

681
	mmap_read_lock(mm);
682 683
	vma = vma_lookup(mm, start);
	if (unlikely(!vma)) {
684
		r = -EFAULT;
685
		goto out_unlock;
686
	}
687
	if (unlikely((gtt->userflags & AMDGPU_GEM_USERPTR_ANONONLY) &&
688
		vma->vm_file)) {
689
		r = -EPERM;
690
		goto out_unlock;
691
	}
692

693 694
	readonly = amdgpu_ttm_tt_is_readonly(ttm);
	r = amdgpu_hmm_range_get_pages(&bo->notifier, mm, pages, start,
695
				       ttm->num_pages, range, readonly,
696
				       true, NULL);
697
out_unlock:
698
	mmap_read_unlock(mm);
699 700 701
	if (r)
		pr_debug("failed %d to get user pages 0x%lx\n", r, start);

702
	mmput(mm);
703

704 705 706
	return r;
}

707
/*
708 709
 * 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
710
 *
711
 * Returns: true if pages are still valid
712
 */
713 714
bool amdgpu_ttm_tt_get_user_pages_done(struct ttm_tt *ttm,
				       struct hmm_range *range)
715
{
716
	struct amdgpu_ttm_tt *gtt = ttm_to_amdgpu_ttm_tt(ttm);
717

718
	if (!gtt || !gtt->userptr || !range)
719
		return false;
720

721
	DRM_DEBUG_DRIVER("user_pages_done 0x%llx pages 0x%x\n",
722
		gtt->userptr, ttm->num_pages);
723

724
	WARN_ONCE(!range->hmm_pfns, "No user pages to check\n");
725

726 727 728 729 730
	/*
	 * FIXME: Must always hold notifier_lock for this, and must
	 * not ignore the return code.
	 */
	return !amdgpu_hmm_range_get_pages_done(range);
731
}
732
#endif
733

734
/*
735
 * amdgpu_ttm_tt_set_user_pages - Copy pages in, putting old pages as necessary.
736
 *
737
 * Called by amdgpu_cs_list_validate(). This creates the page list
738 739
 * that backs user memory and will ultimately be mapped into the device
 * address space.
740
 */
741
void amdgpu_ttm_tt_set_user_pages(struct ttm_tt *ttm, struct page **pages)
742
{
743
	unsigned long i;
744

745
	for (i = 0; i < ttm->num_pages; ++i)
746
		ttm->pages[i] = pages ? pages[i] : NULL;
747 748
}

749
/*
750
 * amdgpu_ttm_tt_pin_userptr - prepare the sg table with the user pages
751 752 753
 *
 * Called by amdgpu_ttm_backend_bind()
 **/
754
static int amdgpu_ttm_tt_pin_userptr(struct ttm_device *bdev,
D
Dave Airlie 已提交
755
				     struct ttm_tt *ttm)
756
{
D
Dave Airlie 已提交
757
	struct amdgpu_device *adev = amdgpu_ttm_adev(bdev);
758
	struct amdgpu_ttm_tt *gtt = ttm_to_amdgpu_ttm_tt(ttm);
759 760 761
	int write = !(gtt->userflags & AMDGPU_GEM_USERPTR_READONLY);
	enum dma_data_direction direction = write ?
		DMA_BIDIRECTIONAL : DMA_TO_DEVICE;
762
	int r;
763

764
	/* Allocate an SG array and squash pages into it */
A
Alex Deucher 已提交
765
	r = sg_alloc_table_from_pages(ttm->sg, ttm->pages, ttm->num_pages, 0,
X
xinhui pan 已提交
766
				      (u64)ttm->num_pages << PAGE_SHIFT,
A
Alex Deucher 已提交
767 768 769 770
				      GFP_KERNEL);
	if (r)
		goto release_sg;

771
	/* Map SG to device */
772 773
	r = dma_map_sgtable(adev->dev, ttm->sg, direction, 0);
	if (r)
A
Alex Deucher 已提交
774 775
		goto release_sg;

776
	/* convert SG to linear array of pages and dma addresses */
777 778
	drm_prime_sg_to_dma_addr_array(ttm->sg, gtt->ttm.dma_address,
				       ttm->num_pages);
A
Alex Deucher 已提交
779 780 781 782 783

	return 0;

release_sg:
	kfree(ttm->sg);
784
	ttm->sg = NULL;
A
Alex Deucher 已提交
785 786 787
	return r;
}

788
/*
789 790
 * amdgpu_ttm_tt_unpin_userptr - Unpin and unmap userptr pages
 */
791
static void amdgpu_ttm_tt_unpin_userptr(struct ttm_device *bdev,
D
Dave Airlie 已提交
792
					struct ttm_tt *ttm)
A
Alex Deucher 已提交
793
{
D
Dave Airlie 已提交
794
	struct amdgpu_device *adev = amdgpu_ttm_adev(bdev);
795
	struct amdgpu_ttm_tt *gtt = ttm_to_amdgpu_ttm_tt(ttm);
A
Alex Deucher 已提交
796 797 798 799 800
	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 */
801
	if (!ttm->sg || !ttm->sg->sgl)
A
Alex Deucher 已提交
802 803
		return;

804
	/* unmap the pages mapped to the device */
805
	dma_unmap_sgtable(adev->dev, ttm->sg, direction, 0);
806
	sg_free_table(ttm->sg);
A
Alex Deucher 已提交
807 808
}

809 810 811
static void amdgpu_ttm_gart_bind(struct amdgpu_device *adev,
				 struct ttm_buffer_object *tbo,
				 uint64_t flags)
812 813 814
{
	struct amdgpu_bo *abo = ttm_to_amdgpu_bo(tbo);
	struct ttm_tt *ttm = tbo->ttm;
815
	struct amdgpu_ttm_tt *gtt = ttm_to_amdgpu_ttm_tt(ttm);
816

817 818 819
	if (amdgpu_bo_encrypted(abo))
		flags |= AMDGPU_PTE_TMZ;

820
	if (abo->flags & AMDGPU_GEM_CREATE_CP_MQD_GFX9) {
821 822
		uint64_t page_idx = 1;

823 824
		amdgpu_gart_bind(adev, gtt->offset, page_idx,
				 gtt->ttm.dma_address, flags);
825

826 827 828 829
		/* 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.
		 */
830 831
		flags &= ~AMDGPU_PTE_MTYPE_VG10_MASK;
		flags |= AMDGPU_PTE_MTYPE_VG10(AMDGPU_MTYPE_NC);
832

833 834 835
		amdgpu_gart_bind(adev, gtt->offset + (page_idx << PAGE_SHIFT),
				 ttm->num_pages - page_idx,
				 &(gtt->ttm.dma_address[page_idx]), flags);
836
	} else {
837 838
		amdgpu_gart_bind(adev, gtt->offset, ttm->num_pages,
				 gtt->ttm.dma_address, flags);
839 840 841
	}
}

842
/*
843 844 845 846 847
 * 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.
 */
848
static int amdgpu_ttm_backend_bind(struct ttm_device *bdev,
D
Dave Airlie 已提交
849
				   struct ttm_tt *ttm,
850
				   struct ttm_resource *bo_mem)
A
Alex Deucher 已提交
851
{
D
Dave Airlie 已提交
852
	struct amdgpu_device *adev = amdgpu_ttm_adev(bdev);
853
	struct amdgpu_ttm_tt *gtt = ttm_to_amdgpu_ttm_tt(ttm);
854
	uint64_t flags;
855
	int r;
A
Alex Deucher 已提交
856

857 858 859 860 861 862
	if (!bo_mem)
		return -EINVAL;

	if (gtt->bound)
		return 0;

863
	if (gtt->userptr) {
D
Dave Airlie 已提交
864
		r = amdgpu_ttm_tt_pin_userptr(bdev, ttm);
865 866 867 868
		if (r) {
			DRM_ERROR("failed to pin userptr\n");
			return r;
		}
M
Matthew Auld 已提交
869
	} else if (ttm->page_flags & TTM_TT_FLAG_EXTERNAL) {
870 871 872 873 874 875 876 877 878 879 880 881 882 883
		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;
		}

		drm_prime_sg_to_dma_addr_array(ttm->sg, gtt->ttm.dma_address,
					       ttm->num_pages);
884
	}
885

A
Alex Deucher 已提交
886
	if (!ttm->num_pages) {
887
		WARN(1, "nothing to bind %u pages for mreg %p back %p!\n",
A
Alex Deucher 已提交
888 889 890
		     ttm->num_pages, bo_mem, ttm);
	}

891 892
	if (bo_mem->mem_type != TTM_PL_TT ||
	    !amdgpu_gtt_mgr_has_gart_addr(bo_mem)) {
893
		gtt->offset = AMDGPU_BO_INVALID_OFFSET;
894
		return 0;
895
	}
896

897
	/* compute PTE flags relevant to this BO memory */
C
Christian König 已提交
898
	flags = amdgpu_ttm_tt_pte_flags(adev, ttm, bo_mem);
899 900

	/* bind pages into GART page tables */
901
	gtt->offset = (u64)bo_mem->start << PAGE_SHIFT;
902 903
	amdgpu_gart_bind(adev, gtt->offset, ttm->num_pages,
			 gtt->ttm.dma_address, flags);
904
	gtt->bound = true;
905
	return 0;
906 907
}

908
/*
909 910 911 912 913 914
 * amdgpu_ttm_alloc_gart - Make sure buffer object is accessible either
 * through AGP or GART aperture.
 *
 * If bo is accessible through AGP aperture, then use AGP aperture
 * to access bo; otherwise allocate logical space in GART aperture
 * and map bo to GART aperture.
915
 */
916
int amdgpu_ttm_alloc_gart(struct ttm_buffer_object *bo)
917
{
918
	struct amdgpu_device *adev = amdgpu_ttm_adev(bo->bdev);
919
	struct ttm_operation_ctx ctx = { false, false };
920
	struct amdgpu_ttm_tt *gtt = ttm_to_amdgpu_ttm_tt(bo->ttm);
921 922
	struct ttm_placement placement;
	struct ttm_place placements;
923
	struct ttm_resource *tmp;
924
	uint64_t addr, flags;
925 926
	int r;

927
	if (bo->resource->start != AMDGPU_BO_INVALID_OFFSET)
928 929
		return 0;

930 931
	addr = amdgpu_gmc_agp_addr(bo);
	if (addr != AMDGPU_BO_INVALID_OFFSET) {
932
		bo->resource->start = addr >> PAGE_SHIFT;
933 934
		return 0;
	}
935

936 937 938 939 940 941 942 943 944
	/* allocate GART space */
	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.mem_type = TTM_PL_TT;
	placements.flags = bo->resource->placement;
945

946 947 948
	r = ttm_bo_mem_space(bo, &placement, &tmp, &ctx);
	if (unlikely(r))
		return r;
949

950 951
	/* compute PTE flags for this buffer object */
	flags = amdgpu_ttm_tt_pte_flags(adev, bo->ttm, tmp);
952

953 954
	/* Bind pages */
	gtt->offset = (u64)tmp->start << PAGE_SHIFT;
955
	amdgpu_ttm_gart_bind(adev, bo, flags);
956
	amdgpu_gart_invalidate_tlb(adev);
957 958 959
	ttm_resource_free(bo, &bo->resource);
	ttm_bo_assign_mem(bo, tmp);

960
	return 0;
A
Alex Deucher 已提交
961 962
}

963
/*
964 965 966 967 968
 * 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.
 */
969
void amdgpu_ttm_recover_gart(struct ttm_buffer_object *tbo)
970
{
971
	struct amdgpu_device *adev = amdgpu_ttm_adev(tbo->bdev);
972
	uint64_t flags;
973

974
	if (!tbo->ttm)
975
		return;
976

977
	flags = amdgpu_ttm_tt_pte_flags(adev, tbo->ttm, tbo->resource);
978
	amdgpu_ttm_gart_bind(adev, tbo, flags);
979 980
}

981
/*
982 983 984 985 986
 * amdgpu_ttm_backend_unbind - Unbind GTT mapped pages
 *
 * Called by ttm_tt_unbind() on behalf of ttm_bo_move_ttm() and
 * ttm_tt_destroy().
 */
987
static void amdgpu_ttm_backend_unbind(struct ttm_device *bdev,
D
Dave Airlie 已提交
988
				      struct ttm_tt *ttm)
A
Alex Deucher 已提交
989
{
D
Dave Airlie 已提交
990
	struct amdgpu_device *adev = amdgpu_ttm_adev(bdev);
991
	struct amdgpu_ttm_tt *gtt = ttm_to_amdgpu_ttm_tt(ttm);
A
Alex Deucher 已提交
992

993
	/* if the pages have userptr pinning then clear that first */
994
	if (gtt->userptr) {
D
Dave Airlie 已提交
995
		amdgpu_ttm_tt_unpin_userptr(bdev, ttm);
996 997 998 999 1000 1001 1002
	} else 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;
	}
1003

1004 1005 1006
	if (!gtt->bound)
		return;

1007
	if (gtt->offset == AMDGPU_BO_INVALID_OFFSET)
1008
		return;
1009

A
Alex Deucher 已提交
1010
	/* unbind shouldn't be done for GDS/GWS/OA in ttm_bo_clean_mm */
1011
	amdgpu_gart_unbind(adev, gtt->offset, ttm->num_pages);
1012
	gtt->bound = false;
A
Alex Deucher 已提交
1013 1014
}

1015
static void amdgpu_ttm_backend_destroy(struct ttm_device *bdev,
D
Dave Airlie 已提交
1016
				       struct ttm_tt *ttm)
A
Alex Deucher 已提交
1017
{
1018
	struct amdgpu_ttm_tt *gtt = ttm_to_amdgpu_ttm_tt(ttm);
A
Alex Deucher 已提交
1019

1020 1021 1022
	if (gtt->usertask)
		put_task_struct(gtt->usertask);

1023
	ttm_tt_fini(&gtt->ttm);
A
Alex Deucher 已提交
1024 1025 1026
	kfree(gtt);
}

1027 1028 1029 1030
/**
 * 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
1031
 * @page_flags: Page flags to be added to the ttm_tt object
1032 1033 1034
 *
 * Called by ttm_tt_create().
 */
1035 1036
static struct ttm_tt *amdgpu_ttm_tt_create(struct ttm_buffer_object *bo,
					   uint32_t page_flags)
A
Alex Deucher 已提交
1037
{
1038
	struct amdgpu_bo *abo = ttm_to_amdgpu_bo(bo);
A
Alex Deucher 已提交
1039
	struct amdgpu_ttm_tt *gtt;
1040
	enum ttm_caching caching;
A
Alex Deucher 已提交
1041 1042 1043 1044 1045

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

1048 1049 1050 1051 1052
	if (abo->flags & AMDGPU_GEM_CREATE_CPU_GTT_USWC)
		caching = ttm_write_combined;
	else
		caching = ttm_cached;

1053
	/* allocate space for the uninitialized page entries */
1054
	if (ttm_sg_tt_init(&gtt->ttm, bo, page_flags, caching)) {
A
Alex Deucher 已提交
1055 1056 1057
		kfree(gtt);
		return NULL;
	}
1058
	return &gtt->ttm;
A
Alex Deucher 已提交
1059 1060
}

1061
/*
1062 1063 1064 1065 1066
 * 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.
 */
1067
static int amdgpu_ttm_tt_populate(struct ttm_device *bdev,
D
Dave Airlie 已提交
1068 1069
				  struct ttm_tt *ttm,
				  struct ttm_operation_ctx *ctx)
A
Alex Deucher 已提交
1070
{
D
Dave Airlie 已提交
1071
	struct amdgpu_device *adev = amdgpu_ttm_adev(bdev);
1072
	struct amdgpu_ttm_tt *gtt = ttm_to_amdgpu_ttm_tt(ttm);
1073 1074
	pgoff_t i;
	int ret;
A
Alex Deucher 已提交
1075

1076
	/* user pages are bound by amdgpu_ttm_tt_pin_userptr() */
1077
	if (gtt->userptr) {
1078
		ttm->sg = kzalloc(sizeof(struct sg_table), GFP_KERNEL);
A
Alex Deucher 已提交
1079 1080 1081 1082 1083
		if (!ttm->sg)
			return -ENOMEM;
		return 0;
	}

M
Matthew Auld 已提交
1084
	if (ttm->page_flags & TTM_TT_FLAG_EXTERNAL)
1085
		return 0;
A
Alex Deucher 已提交
1086

1087 1088 1089 1090 1091 1092 1093 1094
	ret = ttm_pool_alloc(&adev->mman.bdev.pool, ttm, ctx);
	if (ret)
		return ret;

	for (i = 0; i < ttm->num_pages; ++i)
		ttm->pages[i]->mapping = bdev->dev_mapping;

	return 0;
A
Alex Deucher 已提交
1095 1096
}

1097
/*
1098 1099 1100 1101 1102
 * 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.
 */
1103
static void amdgpu_ttm_tt_unpopulate(struct ttm_device *bdev,
1104
				     struct ttm_tt *ttm)
A
Alex Deucher 已提交
1105
{
1106
	struct amdgpu_ttm_tt *gtt = ttm_to_amdgpu_ttm_tt(ttm);
1107
	struct amdgpu_device *adev;
1108
	pgoff_t i;
A
Alex Deucher 已提交
1109

1110 1111
	amdgpu_ttm_backend_unbind(bdev, ttm);

1112
	if (gtt->userptr) {
1113
		amdgpu_ttm_tt_set_user_pages(ttm, NULL);
A
Alex Deucher 已提交
1114
		kfree(ttm->sg);
X
xinhui pan 已提交
1115
		ttm->sg = NULL;
1116 1117 1118
		return;
	}

M
Matthew Auld 已提交
1119
	if (ttm->page_flags & TTM_TT_FLAG_EXTERNAL)
A
Alex Deucher 已提交
1120 1121
		return;

1122 1123 1124
	for (i = 0; i < ttm->num_pages; ++i)
		ttm->pages[i]->mapping = NULL;

D
Dave Airlie 已提交
1125
	adev = amdgpu_ttm_adev(bdev);
1126
	return ttm_pool_free(&adev->mman.bdev.pool, ttm);
A
Alex Deucher 已提交
1127 1128
}

1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148
/**
 * amdgpu_ttm_tt_get_userptr - Return the userptr GTT ttm_tt for the current
 * task
 *
 * @tbo: The ttm_buffer_object that contains the userptr
 * @user_addr:  The returned value
 */
int amdgpu_ttm_tt_get_userptr(const struct ttm_buffer_object *tbo,
			      uint64_t *user_addr)
{
	struct amdgpu_ttm_tt *gtt;

	if (!tbo->ttm)
		return -EINVAL;

	gtt = (void *)tbo->ttm;
	*user_addr = gtt->userptr;
	return 0;
}

1149
/**
1150 1151
 * amdgpu_ttm_tt_set_userptr - Initialize userptr GTT ttm_tt for the current
 * task
1152
 *
1153
 * @bo: The ttm_buffer_object to bind this userptr to
1154 1155 1156 1157 1158 1159
 * @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
 */
1160 1161
int amdgpu_ttm_tt_set_userptr(struct ttm_buffer_object *bo,
			      uint64_t addr, uint32_t flags)
A
Alex Deucher 已提交
1162
{
1163
	struct amdgpu_ttm_tt *gtt;
A
Alex Deucher 已提交
1164

1165 1166 1167 1168 1169 1170
	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 已提交
1171

M
Matthew Auld 已提交
1172 1173
	/* Set TTM_TT_FLAG_EXTERNAL before populate but after create. */
	bo->ttm->page_flags |= TTM_TT_FLAG_EXTERNAL;
1174

1175
	gtt = ttm_to_amdgpu_ttm_tt(bo->ttm);
A
Alex Deucher 已提交
1176 1177
	gtt->userptr = addr;
	gtt->userflags = flags;
1178 1179 1180 1181 1182 1183

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

A
Alex Deucher 已提交
1184 1185 1186
	return 0;
}

1187
/*
1188 1189
 * amdgpu_ttm_tt_get_usermm - Return memory manager for ttm_tt object
 */
1190
struct mm_struct *amdgpu_ttm_tt_get_usermm(struct ttm_tt *ttm)
A
Alex Deucher 已提交
1191
{
1192
	struct amdgpu_ttm_tt *gtt = ttm_to_amdgpu_ttm_tt(ttm);
A
Alex Deucher 已提交
1193 1194

	if (gtt == NULL)
1195
		return NULL;
A
Alex Deucher 已提交
1196

1197 1198 1199 1200
	if (gtt->usertask == NULL)
		return NULL;

	return gtt->usertask->mm;
A
Alex Deucher 已提交
1201 1202
}

1203
/*
1204 1205
 * amdgpu_ttm_tt_affect_userptr - Determine if a ttm_tt object lays inside an
 * address range for the current task.
1206 1207
 *
 */
1208
bool amdgpu_ttm_tt_affect_userptr(struct ttm_tt *ttm, unsigned long start,
1209
				  unsigned long end, unsigned long *userptr)
1210
{
1211
	struct amdgpu_ttm_tt *gtt = ttm_to_amdgpu_ttm_tt(ttm);
1212 1213
	unsigned long size;

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

1217 1218 1219
	/* Return false if no part of the ttm_tt object lies within
	 * the range
	 */
1220
	size = (unsigned long)gtt->ttm.num_pages * PAGE_SIZE;
1221 1222 1223
	if (gtt->userptr > end || gtt->userptr + size <= start)
		return false;

1224 1225
	if (userptr)
		*userptr = gtt->userptr;
1226 1227 1228
	return true;
}

1229
/*
1230
 * amdgpu_ttm_tt_is_userptr - Have the pages backing by userptr?
1231
 */
1232
bool amdgpu_ttm_tt_is_userptr(struct ttm_tt *ttm)
1233
{
1234
	struct amdgpu_ttm_tt *gtt = ttm_to_amdgpu_ttm_tt(ttm);
1235 1236 1237 1238

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

1239
	return true;
1240 1241
}

1242
/*
1243 1244
 * amdgpu_ttm_tt_is_readonly - Is the ttm_tt object read only?
 */
A
Alex Deucher 已提交
1245 1246
bool amdgpu_ttm_tt_is_readonly(struct ttm_tt *ttm)
{
1247
	struct amdgpu_ttm_tt *gtt = ttm_to_amdgpu_ttm_tt(ttm);
A
Alex Deucher 已提交
1248 1249 1250 1251 1252 1253 1254

	if (gtt == NULL)
		return false;

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

1255
/**
1256
 * amdgpu_ttm_tt_pde_flags - Compute PDE flags for ttm_tt object
1257 1258 1259
 *
 * @ttm: The ttm_tt object to compute the flags for
 * @mem: The memory registry backing this ttm_tt object
1260 1261
 *
 * Figure out the flags to use for a VM PDE (Page Directory Entry).
1262
 */
1263
uint64_t amdgpu_ttm_tt_pde_flags(struct ttm_tt *ttm, struct ttm_resource *mem)
A
Alex Deucher 已提交
1264
{
1265
	uint64_t flags = 0;
A
Alex Deucher 已提交
1266 1267 1268 1269

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

1270 1271
	if (mem && (mem->mem_type == TTM_PL_TT ||
		    mem->mem_type == AMDGPU_PL_PREEMPT)) {
A
Alex Deucher 已提交
1272 1273
		flags |= AMDGPU_PTE_SYSTEM;

1274
		if (ttm->caching == ttm_cached)
1275 1276
			flags |= AMDGPU_PTE_SNOOPED;
	}
A
Alex Deucher 已提交
1277

1278 1279 1280 1281
	if (mem && mem->mem_type == TTM_PL_VRAM &&
			mem->bus.caching == ttm_cached)
		flags |= AMDGPU_PTE_SNOOPED;

1282 1283 1284 1285 1286 1287
	return flags;
}

/**
 * amdgpu_ttm_tt_pte_flags - Compute PTE flags for ttm_tt object
 *
1288
 * @adev: amdgpu_device pointer
1289 1290
 * @ttm: The ttm_tt object to compute the flags for
 * @mem: The memory registry backing this ttm_tt object
1291
 *
1292 1293 1294
 * 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,
1295
				 struct ttm_resource *mem)
1296 1297 1298
{
	uint64_t flags = amdgpu_ttm_tt_pde_flags(ttm, mem);

1299
	flags |= adev->gart.gart_pte_flags;
A
Alex Deucher 已提交
1300 1301 1302 1303 1304 1305 1306 1307
	flags |= AMDGPU_PTE_READABLE;

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

	return flags;
}

1308
/*
1309 1310
 * amdgpu_ttm_bo_eviction_valuable - Check to see if we can evict a buffer
 * object.
1311
 *
1312 1313 1314
 * 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
1315 1316
 * used to clean out a memory space.
 */
1317 1318 1319
static bool amdgpu_ttm_bo_eviction_valuable(struct ttm_buffer_object *bo,
					    const struct ttm_place *place)
{
1320
	struct dma_resv_iter resv_cursor;
1321 1322
	struct dma_fence *f;

1323 1324 1325
	if (!amdgpu_bo_is_amdgpu_bo(bo))
		return ttm_bo_eviction_valuable(bo, place);

1326 1327 1328 1329
	/* Swapout? */
	if (bo->resource->mem_type == TTM_PL_SYSTEM)
		return true;

1330
	if (bo->type == ttm_bo_type_kernel &&
1331
	    !amdgpu_vm_evictable(ttm_to_amdgpu_bo(bo)))
1332 1333
		return false;

1334 1335 1336 1337
	/* 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
	 */
1338
	dma_resv_for_each_fence(&resv_cursor, bo->base.resv,
1339
				DMA_RESV_USAGE_BOOKKEEP, f) {
1340 1341
		if (amdkfd_fence_check_mm(f, current->mm))
			return false;
1342
	}
1343

1344 1345 1346 1347 1348 1349 1350 1351
	/* Preemptible BOs don't own system resources managed by the
	 * driver (pages, VRAM, GART space). They point to resources
	 * owned by someone else (e.g. pageable memory in user mode
	 * or a DMABuf). They are used in a preemptible context so we
	 * can guarantee no deadlocks and good QoS in case of MMU
	 * notifiers or DMABuf move notifiers from the resource owner.
	 */
	if (bo->resource->mem_type == AMDGPU_PL_PREEMPT)
1352
		return false;
1353

1354 1355
	if (bo->resource->mem_type == TTM_PL_TT &&
	    amdgpu_bo_encrypted(ttm_to_amdgpu_bo(bo)))
1356
		return false;
1357 1358 1359 1360

	return ttm_bo_eviction_valuable(bo, place);
}

1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395
static void amdgpu_ttm_vram_mm_access(struct amdgpu_device *adev, loff_t pos,
				      void *buf, size_t size, bool write)
{
	while (size) {
		uint64_t aligned_pos = ALIGN_DOWN(pos, 4);
		uint64_t bytes = 4 - (pos & 0x3);
		uint32_t shift = (pos & 0x3) * 8;
		uint32_t mask = 0xffffffff << shift;
		uint32_t value = 0;

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

		if (mask != 0xffffffff) {
			amdgpu_device_mm_access(adev, aligned_pos, &value, 4, false);
			if (write) {
				value &= ~mask;
				value |= (*(uint32_t *)buf << shift) & mask;
				amdgpu_device_mm_access(adev, aligned_pos, &value, 4, true);
			} else {
				value = (value & mask) >> shift;
				memcpy(buf, &value, bytes);
			}
		} else {
			amdgpu_device_mm_access(adev, aligned_pos, buf, 4, write);
		}

		pos += bytes;
		buf += bytes;
		size -= bytes;
	}
}

1396 1397 1398 1399 1400
static int amdgpu_ttm_access_memory_sdma(struct ttm_buffer_object *bo,
					unsigned long offset, void *buf, int len, int write)
{
	struct amdgpu_bo *abo = ttm_to_amdgpu_bo(bo);
	struct amdgpu_device *adev = amdgpu_ttm_adev(abo->tbo.bdev);
1401
	struct amdgpu_res_cursor src_mm;
1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413
	struct amdgpu_job *job;
	struct dma_fence *fence;
	uint64_t src_addr, dst_addr;
	unsigned int num_dw;
	int r, idx;

	if (len != PAGE_SIZE)
		return -EINVAL;

	if (!adev->mman.sdma_access_ptr)
		return -EACCES;

1414 1415
	if (!drm_dev_enter(adev_to_drm(adev), &idx))
		return -ENODEV;
1416 1417 1418 1419 1420 1421 1422 1423 1424

	if (write)
		memcpy(adev->mman.sdma_access_ptr, buf, len);

	num_dw = ALIGN(adev->mman.buffer_funcs->copy_num_dw, 8);
	r = amdgpu_job_alloc_with_ib(adev, num_dw * 4, AMDGPU_IB_POOL_DELAYED, &job);
	if (r)
		goto out;

1425 1426
	amdgpu_res_first(abo->tbo.resource, offset, len, &src_mm);
	src_addr = amdgpu_ttm_domain_start(adev, bo->resource->mem_type) + src_mm.start;
1427 1428 1429 1430
	dst_addr = amdgpu_bo_gpu_offset(adev->mman.sdma_access_bo);
	if (write)
		swap(src_addr, dst_addr);

1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452
	amdgpu_emit_copy_buffer(adev, &job->ibs[0], src_addr, dst_addr, PAGE_SIZE, false);

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

	r = amdgpu_job_submit(job, &adev->mman.entity, AMDGPU_FENCE_OWNER_UNDEFINED, &fence);
	if (r) {
		amdgpu_job_free(job);
		goto out;
	}

	if (!dma_fence_wait_timeout(fence, false, adev->sdma_timeout))
		r = -ETIMEDOUT;
	dma_fence_put(fence);

	if (!(r || write))
		memcpy(buf, adev->mman.sdma_access_ptr, len);
out:
	drm_dev_exit(idx);
	return r;
}

1453
/**
1454
 * amdgpu_ttm_access_memory - Read or Write memory that backs a buffer object.
1455 1456 1457 1458 1459 1460 1461 1462 1463 1464
 *
 * @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.
 */
1465
static int amdgpu_ttm_access_memory(struct ttm_buffer_object *bo,
1466 1467
				    unsigned long offset, void *buf, int len,
				    int write)
1468
{
1469
	struct amdgpu_bo *abo = ttm_to_amdgpu_bo(bo);
1470
	struct amdgpu_device *adev = amdgpu_ttm_adev(abo->tbo.bdev);
1471
	struct amdgpu_res_cursor cursor;
1472 1473
	int ret = 0;

1474
	if (bo->resource->mem_type != TTM_PL_VRAM)
1475 1476
		return -EIO;

1477
	if (amdgpu_device_has_timeouts_enabled(adev) &&
1478 1479 1480
			!amdgpu_ttm_access_memory_sdma(bo, offset, buf, len, write))
		return len;

1481
	amdgpu_res_first(bo->resource, offset, len, &cursor);
1482
	while (cursor.remaining) {
1483 1484 1485 1486 1487 1488 1489 1490 1491 1492
		size_t count, size = cursor.size;
		loff_t pos = cursor.start;

		count = amdgpu_device_aper_access(adev, pos, buf, size, write);
		size -= count;
		if (size) {
			/* using MM to access rest vram and handle un-aligned address */
			pos += count;
			buf += count;
			amdgpu_ttm_vram_mm_access(adev, pos, buf, size, write);
1493 1494
		}

1495 1496 1497
		ret += cursor.size;
		buf += cursor.size;
		amdgpu_res_next(&cursor, cursor.size);
1498 1499 1500 1501 1502
	}

	return ret;
}

1503 1504 1505 1506 1507 1508
static void
amdgpu_bo_delete_mem_notify(struct ttm_buffer_object *bo)
{
	amdgpu_bo_move_notify(bo, false, NULL);
}

1509
static struct ttm_device_funcs amdgpu_bo_driver = {
A
Alex Deucher 已提交
1510 1511 1512
	.ttm_tt_create = &amdgpu_ttm_tt_create,
	.ttm_tt_populate = &amdgpu_ttm_tt_populate,
	.ttm_tt_unpopulate = &amdgpu_ttm_tt_unpopulate,
1513
	.ttm_tt_destroy = &amdgpu_ttm_backend_destroy,
1514
	.eviction_valuable = amdgpu_ttm_bo_eviction_valuable,
A
Alex Deucher 已提交
1515 1516
	.evict_flags = &amdgpu_evict_flags,
	.move = &amdgpu_bo_move,
1517
	.delete_mem_notify = &amdgpu_bo_delete_mem_notify,
1518
	.release_notify = &amdgpu_bo_release_notify,
A
Alex Deucher 已提交
1519
	.io_mem_reserve = &amdgpu_ttm_io_mem_reserve,
1520
	.io_mem_pfn = amdgpu_ttm_io_mem_pfn,
1521
	.access_memory = &amdgpu_ttm_access_memory,
A
Alex Deucher 已提交
1522 1523
};

1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535
/*
 * 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)
{
1536 1537
	amdgpu_bo_free_kernel(&adev->mman.fw_vram_usage_reserved_bo,
		NULL, &adev->mman.fw_vram_usage_va);
1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548
}

/**
 * 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)
{
1549 1550
	uint64_t vram_size = adev->gmc.visible_vram_size;

1551 1552
	adev->mman.fw_vram_usage_va = NULL;
	adev->mman.fw_vram_usage_reserved_bo = NULL;
1553

1554 1555
	if (adev->mman.fw_vram_usage_size == 0 ||
	    adev->mman.fw_vram_usage_size > vram_size)
1556
		return 0;
1557

1558
	return amdgpu_bo_create_kernel_at(adev,
1559 1560
					  adev->mman.fw_vram_usage_start_offset,
					  adev->mman.fw_vram_usage_size,
1561
					  AMDGPU_GEM_DOMAIN_VRAM,
1562 1563
					  &adev->mman.fw_vram_usage_reserved_bo,
					  &adev->mman.fw_vram_usage_va);
1564
}
1565

1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587
/*
 * 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;
}

1588
static void amdgpu_ttm_training_data_block_init(struct amdgpu_device *adev)
1589
{
1590
	struct psp_memory_training_context *ctx = &adev->psp.mem_train_ctx;
1591

1592
	memset(ctx, 0, sizeof(*ctx));
1593

1594
	ctx->c2p_train_data_offset =
1595
		ALIGN((adev->gmc.mc_vram_size - adev->mman.discovery_tmr_size - SZ_1M), SZ_1M);
1596 1597 1598 1599
	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;
1600

1601 1602 1603 1604
	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);
1605 1606
}

1607 1608 1609
/*
 * reserve TMR memory at the top of VRAM which holds
 * IP Discovery data and is protected by PSP.
1610
 */
1611
static int amdgpu_ttm_reserve_tmr(struct amdgpu_device *adev)
1612 1613 1614
{
	int ret;
	struct psp_memory_training_context *ctx = &adev->psp.mem_train_ctx;
1615
	bool mem_train_support = false;
1616

1617
	if (!amdgpu_sriov_vf(adev)) {
1618
		if (amdgpu_atomfirmware_mem_training_supported(adev))
1619
			mem_train_support = true;
1620
		else
1621
			DRM_DEBUG("memory training does not support!\n");
1622 1623
	}

1624 1625 1626 1627 1628 1629 1630
	/*
	 * 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
	 */
1631
	adev->mman.discovery_tmr_size =
1632
		amdgpu_atomfirmware_get_fw_reserved_fb_size(adev);
1633 1634
	if (!adev->mman.discovery_tmr_size)
		adev->mman.discovery_tmr_size = DISCOVERY_TMR_OFFSET;
1635 1636 1637 1638 1639

	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,
1640 1641 1642 1643 1644
					 ctx->c2p_train_data_offset,
					 ctx->train_data_size,
					 AMDGPU_GEM_DOMAIN_VRAM,
					 &ctx->c2p_bo,
					 NULL);
1645 1646 1647 1648
		if (ret) {
			DRM_ERROR("alloc c2p_bo failed(%d)!\n", ret);
			amdgpu_ttm_training_reserve_vram_fini(adev);
			return ret;
1649
		}
1650
		ctx->init = PSP_MEM_TRAIN_RESERVE_SUCCESS;
1651
	}
1652 1653

	ret = amdgpu_bo_create_kernel_at(adev,
1654 1655
				adev->gmc.real_vram_size - adev->mman.discovery_tmr_size,
				adev->mman.discovery_tmr_size,
1656
				AMDGPU_GEM_DOMAIN_VRAM,
1657
				&adev->mman.discovery_memory,
1658
				NULL);
1659
	if (ret) {
1660
		DRM_ERROR("alloc tmr failed(%d)!\n", ret);
1661
		amdgpu_bo_free_kernel(&adev->mman.discovery_memory, NULL, NULL);
1662
		return ret;
1663 1664 1665 1666 1667
	}

	return 0;
}

1668
/*
1669 1670
 * amdgpu_ttm_init - Init the memory management (ttm) as well as various
 * gtt/vram related fields.
1671 1672 1673 1674 1675 1676
 *
 * 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 已提交
1677 1678
int amdgpu_ttm_init(struct amdgpu_device *adev)
{
1679
	uint64_t gtt_size;
A
Alex Deucher 已提交
1680
	int r;
1681
	u64 vis_vram_limit;
A
Alex Deucher 已提交
1682

1683 1684
	mutex_init(&adev->mman.gtt_window_lock);

A
Alex Deucher 已提交
1685
	/* No others user of address space so set it to 0 */
1686
	r = ttm_device_init(&adev->mman.bdev, &amdgpu_bo_driver, adev->dev,
1687 1688
			       adev_to_drm(adev)->anon_inode->i_mapping,
			       adev_to_drm(adev)->vma_offset_manager,
1689
			       adev->need_swiotlb,
1690
			       dma_addressing_limited(adev->dev));
A
Alex Deucher 已提交
1691 1692 1693 1694 1695
	if (r) {
		DRM_ERROR("failed initializing buffer object driver(%d).\n", r);
		return r;
	}
	adev->mman.initialized = true;
1696

1697
	/* Initialize VRAM pool with all of VRAM divided into pages */
1698
	r = amdgpu_vram_mgr_init(adev);
A
Alex Deucher 已提交
1699 1700 1701 1702
	if (r) {
		DRM_ERROR("Failed initializing VRAM heap.\n");
		return r;
	}
1703 1704 1705 1706

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

A
Alex Deucher 已提交
1710
	/* Change the size here instead of the init above so only lpfn is affected */
1711
	amdgpu_ttm_set_buffer_funcs_status(adev, false);
1712
#ifdef CONFIG_64BIT
1713
#ifdef CONFIG_X86
1714 1715 1716 1717 1718
	if (adev->gmc.xgmi.connected_to_cpu)
		adev->mman.aper_base_kaddr = ioremap_cache(adev->gmc.aper_base,
				adev->gmc.visible_vram_size);

	else
1719
#endif
1720 1721
		adev->mman.aper_base_kaddr = ioremap_wc(adev->gmc.aper_base,
				adev->gmc.visible_vram_size);
1722
#endif
A
Alex Deucher 已提交
1723

1724 1725 1726 1727
	/*
	 *The reserved vram for firmware must be pinned to the specified
	 *place on the VRAM, so reserve it early.
	 */
1728
	r = amdgpu_ttm_fw_reserve_vram_init(adev);
1729 1730 1731 1732
	if (r) {
		return r;
	}

1733
	/*
1734 1735 1736
	 * only NAVI10 and onwards ASIC support for IP discovery.
	 * If IP discovery enabled, a block of memory should be
	 * reserved for IP discovey.
1737
	 */
1738
	if (adev->mman.discovery_bin) {
1739
		r = amdgpu_ttm_reserve_tmr(adev);
1740 1741 1742
		if (r)
			return r;
	}
1743

1744 1745 1746 1747
	/* 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.  */
1748
	r = amdgpu_bo_create_kernel_at(adev, 0, adev->mman.stolen_vga_size,
1749
				       AMDGPU_GEM_DOMAIN_VRAM,
1750
				       &adev->mman.stolen_vga_memory,
1751
				       NULL);
C
Christian König 已提交
1752 1753
	if (r)
		return r;
1754 1755
	r = amdgpu_bo_create_kernel_at(adev, adev->mman.stolen_vga_size,
				       adev->mman.stolen_extended_size,
1756
				       AMDGPU_GEM_DOMAIN_VRAM,
1757
				       &adev->mman.stolen_extended_memory,
1758
				       NULL);
C
Christian König 已提交
1759 1760
	if (r)
		return r;
1761 1762 1763 1764 1765 1766 1767
	r = amdgpu_bo_create_kernel_at(adev, adev->mman.stolen_reserved_offset,
				       adev->mman.stolen_reserved_size,
				       AMDGPU_GEM_DOMAIN_VRAM,
				       &adev->mman.stolen_reserved_memory,
				       NULL);
	if (r)
		return r;
1768

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

1772
	/* Compute GTT size, either based on 1/2 the size of RAM size
1773
	 * or whatever the user passed on module init */
1774 1775 1776 1777
	if (amdgpu_gtt_size == -1) {
		struct sysinfo si;

		si_meminfo(&si);
1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789
		/* Certain GL unit tests for large textures can cause problems
		 * with the OOM killer since there is no way to link this memory
		 * to a process.  This was originally mitigated (but not necessarily
		 * eliminated) by limiting the GTT size.  The problem is this limit
		 * is often too low for many modern games so just make the limit 1/2
		 * of system memory which aligns with TTM. The OOM accounting needs
		 * to be addressed, but we shouldn't prevent common 3D applications
		 * from being usable just to potentially mitigate that corner case.
		 */
		gtt_size = max((AMDGPU_DEFAULT_GTT_SIZE_MB << 20),
			       (u64)si.totalram * si.mem_unit / 2);
	} else {
1790
		gtt_size = (uint64_t)amdgpu_gtt_size << 20;
1791
	}
1792 1793

	/* Initialize GTT memory pool */
1794
	r = amdgpu_gtt_mgr_init(adev, gtt_size);
A
Alex Deucher 已提交
1795 1796 1797 1798 1799
	if (r) {
		DRM_ERROR("Failed initializing GTT heap.\n");
		return r;
	}
	DRM_INFO("amdgpu: %uM of GTT memory ready.\n",
1800
		 (unsigned)(gtt_size / (1024 * 1024)));
A
Alex Deucher 已提交
1801

1802 1803 1804 1805 1806 1807 1808
	/* Initialize preemptible memory pool */
	r = amdgpu_preempt_mgr_init(adev);
	if (r) {
		DRM_ERROR("Failed initializing PREEMPT heap.\n");
		return r;
	}

1809
	/* Initialize various on-chip memory pools */
1810
	r = amdgpu_ttm_init_on_chip(adev, AMDGPU_PL_GDS, adev->gds.gds_size);
1811 1812 1813
	if (r) {
		DRM_ERROR("Failed initializing GDS heap.\n");
		return r;
A
Alex Deucher 已提交
1814 1815
	}

1816
	r = amdgpu_ttm_init_on_chip(adev, AMDGPU_PL_GWS, adev->gds.gws_size);
1817 1818 1819
	if (r) {
		DRM_ERROR("Failed initializing gws heap.\n");
		return r;
A
Alex Deucher 已提交
1820 1821
	}

1822
	r = amdgpu_ttm_init_on_chip(adev, AMDGPU_PL_OA, adev->gds.oa_size);
1823 1824 1825
	if (r) {
		DRM_ERROR("Failed initializing oa heap.\n");
		return r;
A
Alex Deucher 已提交
1826 1827
	}

1828 1829 1830
	if (amdgpu_bo_create_kernel(adev, PAGE_SIZE, PAGE_SIZE,
				AMDGPU_GEM_DOMAIN_GTT,
				&adev->mman.sdma_access_bo, NULL,
1831
				&adev->mman.sdma_access_ptr))
1832 1833
		DRM_WARN("Debug VRAM access will use slowpath MM access\n");

A
Alex Deucher 已提交
1834 1835 1836
	return 0;
}

1837
/*
1838 1839
 * amdgpu_ttm_fini - De-initialize the TTM memory pools
 */
A
Alex Deucher 已提交
1840 1841
void amdgpu_ttm_fini(struct amdgpu_device *adev)
{
1842
	int idx;
A
Alex Deucher 已提交
1843 1844
	if (!adev->mman.initialized)
		return;
1845

1846
	amdgpu_ttm_training_reserve_vram_fini(adev);
1847
	/* return the stolen vga memory back to VRAM */
1848 1849
	amdgpu_bo_free_kernel(&adev->mman.stolen_vga_memory, NULL, NULL);
	amdgpu_bo_free_kernel(&adev->mman.stolen_extended_memory, NULL, NULL);
1850
	/* return the IP Discovery TMR memory back to VRAM */
1851
	amdgpu_bo_free_kernel(&adev->mman.discovery_memory, NULL, NULL);
1852 1853 1854
	if (adev->mman.stolen_reserved_size)
		amdgpu_bo_free_kernel(&adev->mman.stolen_reserved_memory,
				      NULL, NULL);
1855 1856
	amdgpu_bo_free_kernel(&adev->mman.sdma_access_bo, NULL,
					&adev->mman.sdma_access_ptr);
1857
	amdgpu_ttm_fw_reserve_vram_fini(adev);
1858

1859 1860 1861 1862 1863 1864 1865 1866 1867
	if (drm_dev_enter(adev_to_drm(adev), &idx)) {

		if (adev->mman.aper_base_kaddr)
			iounmap(adev->mman.aper_base_kaddr);
		adev->mman.aper_base_kaddr = NULL;

		drm_dev_exit(idx);
	}

1868 1869
	amdgpu_vram_mgr_fini(adev);
	amdgpu_gtt_mgr_fini(adev);
1870
	amdgpu_preempt_mgr_fini(adev);
1871 1872 1873
	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);
1874
	ttm_device_fini(&adev->mman.bdev);
A
Alex Deucher 已提交
1875 1876 1877 1878
	adev->mman.initialized = false;
	DRM_INFO("amdgpu: ttm finalized\n");
}

1879 1880 1881 1882 1883 1884 1885 1886 1887 1888
/**
 * 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 已提交
1889
{
1890
	struct ttm_resource_manager *man = ttm_manager_type(&adev->mman.bdev, TTM_PL_VRAM);
1891
	uint64_t size;
1892
	int r;
A
Alex Deucher 已提交
1893

1894
	if (!adev->mman.initialized || amdgpu_in_reset(adev) ||
1895
	    adev->mman.buffer_funcs_enabled == enable)
A
Alex Deucher 已提交
1896 1897
		return;

1898 1899
	if (enable) {
		struct amdgpu_ring *ring;
N
Nirmoy Das 已提交
1900
		struct drm_gpu_scheduler *sched;
1901 1902

		ring = adev->mman.buffer_funcs_ring;
N
Nirmoy Das 已提交
1903 1904
		sched = &ring->sched;
		r = drm_sched_entity_init(&adev->mman.entity,
1905
					  DRM_SCHED_PRIORITY_KERNEL, &sched,
N
Nirmoy Das 已提交
1906
					  1, NULL);
1907 1908 1909 1910 1911 1912
		if (r) {
			DRM_ERROR("Failed setting up TTM BO move entity (%d)\n",
				  r);
			return;
		}
	} else {
1913
		drm_sched_entity_destroy(&adev->mman.entity);
1914 1915
		dma_fence_put(man->move);
		man->move = NULL;
1916 1917
	}

A
Alex Deucher 已提交
1918
	/* this just adjusts TTM size idea, which sets lpfn to the correct value */
1919 1920 1921 1922
	if (enable)
		size = adev->gmc.real_vram_size;
	else
		size = adev->gmc.visible_vram_size;
1923
	man->size = size;
1924
	adev->mman.buffer_funcs_enabled = enable;
A
Alex Deucher 已提交
1925 1926
}

1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961
static int amdgpu_ttm_prepare_job(struct amdgpu_device *adev,
				  bool direct_submit,
				  unsigned int num_dw,
				  struct dma_resv *resv,
				  bool vm_needs_flush,
				  struct amdgpu_job **job)
{
	enum amdgpu_ib_pool_type pool = direct_submit ?
		AMDGPU_IB_POOL_DIRECT :
		AMDGPU_IB_POOL_DELAYED;
	int r;

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

	if (vm_needs_flush) {
		(*job)->vm_pd_addr = amdgpu_gmc_pd_addr(adev->gmc.pdb0_bo ?
							adev->gmc.pdb0_bo :
							adev->gart.bo);
		(*job)->vm_needs_flush = true;
	}
	if (resv) {
		r = amdgpu_sync_resv(adev, &(*job)->sync, resv,
				     AMDGPU_SYNC_ALWAYS,
				     AMDGPU_FENCE_OWNER_UNDEFINED);
		if (r) {
			DRM_ERROR("sync failed (%d).\n", r);
			amdgpu_job_free(*job);
			return r;
		}
	}
	return 0;
}

1962 1963
int amdgpu_copy_buffer(struct amdgpu_ring *ring, uint64_t src_offset,
		       uint64_t dst_offset, uint32_t byte_count,
1964
		       struct dma_resv *resv,
1965
		       struct dma_fence **fence, bool direct_submit,
1966
		       bool vm_needs_flush, bool tmz)
A
Alex Deucher 已提交
1967 1968
{
	struct amdgpu_device *adev = ring->adev;
1969
	unsigned num_loops, num_dw;
1970
	struct amdgpu_job *job;
A
Alex Deucher 已提交
1971 1972 1973 1974
	uint32_t max_bytes;
	unsigned i;
	int r;

1975
	if (!direct_submit && !ring->sched.ready) {
1976 1977 1978 1979
		DRM_ERROR("Trying to move memory with ring turned off.\n");
		return -EINVAL;
	}

A
Alex Deucher 已提交
1980 1981
	max_bytes = adev->mman.buffer_funcs->copy_max_bytes;
	num_loops = DIV_ROUND_UP(byte_count, max_bytes);
L
Luben Tuikov 已提交
1982
	num_dw = ALIGN(num_loops * adev->mman.buffer_funcs->copy_num_dw, 8);
1983 1984
	r = amdgpu_ttm_prepare_job(adev, direct_submit, num_dw,
				   resv, vm_needs_flush, &job);
1985
	if (r)
1986
		return r;
1987

A
Alex Deucher 已提交
1988 1989 1990
	for (i = 0; i < num_loops; i++) {
		uint32_t cur_size_in_bytes = min(byte_count, max_bytes);

1991
		amdgpu_emit_copy_buffer(adev, &job->ibs[0], src_offset,
1992
					dst_offset, cur_size_in_bytes, tmz);
A
Alex Deucher 已提交
1993 1994 1995 1996 1997 1998

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

1999 2000
	amdgpu_ring_pad_ib(ring, &job->ibs[0]);
	WARN_ON(job->ibs[0].length_dw > num_dw);
2001 2002 2003
	if (direct_submit)
		r = amdgpu_job_submit_direct(job, ring, fence);
	else
2004
		r = amdgpu_job_submit(job, &adev->mman.entity,
2005
				      AMDGPU_FENCE_OWNER_UNDEFINED, fence);
2006 2007
	if (r)
		goto error_free;
A
Alex Deucher 已提交
2008

2009
	return r;
2010

2011
error_free:
2012
	amdgpu_job_free(job);
2013
	DRM_ERROR("Error scheduling IBs (%d)\n", r);
2014
	return r;
A
Alex Deucher 已提交
2015 2016
}

2017 2018 2019 2020 2021
static int amdgpu_ttm_fill_mem(struct amdgpu_ring *ring, uint32_t src_data,
			       uint64_t dst_addr, uint32_t byte_count,
			       struct dma_resv *resv,
			       struct dma_fence **fence,
			       bool vm_needs_flush)
2022
{
2023
	struct amdgpu_device *adev = ring->adev;
2024
	unsigned int num_loops, num_dw;
2025
	struct amdgpu_job *job;
2026 2027
	uint32_t max_bytes;
	unsigned int i;
2028 2029
	int r;

2030 2031 2032 2033 2034
	max_bytes = adev->mman.buffer_funcs->fill_max_bytes;
	num_loops = DIV_ROUND_UP_ULL(byte_count, max_bytes);
	num_dw = ALIGN(num_loops * adev->mman.buffer_funcs->fill_num_dw, 8);
	r = amdgpu_ttm_prepare_job(adev, false, num_dw, resv, vm_needs_flush,
				   &job);
2035 2036 2037
	if (r)
		return r;

2038 2039
	for (i = 0; i < num_loops; i++) {
		uint32_t cur_size = min(byte_count, max_bytes);
2040

2041 2042
		amdgpu_emit_fill_buffer(adev, &job->ibs[0], src_data, dst_addr,
					cur_size);
2043

2044 2045
		dst_addr += cur_size;
		byte_count -= cur_size;
2046 2047 2048 2049
	}

	amdgpu_ring_pad_ib(ring, &job->ibs[0]);
	WARN_ON(job->ibs[0].length_dw > num_dw);
2050
	r = amdgpu_job_submit(job, &adev->mman.entity,
2051
			      AMDGPU_FENCE_OWNER_UNDEFINED, fence);
2052 2053 2054 2055 2056 2057 2058 2059 2060 2061
	if (r)
		goto error_free;

	return 0;

error_free:
	amdgpu_job_free(job);
	return r;
}

2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107
int amdgpu_fill_buffer(struct amdgpu_bo *bo,
			uint32_t src_data,
			struct dma_resv *resv,
			struct dma_fence **f)
{
	struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
	struct amdgpu_ring *ring = adev->mman.buffer_funcs_ring;
	struct dma_fence *fence = NULL;
	struct amdgpu_res_cursor dst;
	int r;

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

	amdgpu_res_first(bo->tbo.resource, 0, amdgpu_bo_size(bo), &dst);

	mutex_lock(&adev->mman.gtt_window_lock);
	while (dst.remaining) {
		struct dma_fence *next;
		uint64_t cur_size, to;

		/* Never fill more than 256MiB at once to avoid timeouts */
		cur_size = min(dst.size, 256ULL << 20);

		r = amdgpu_ttm_map_buffer(&bo->tbo, bo->tbo.resource, &dst,
					  1, ring, false, &cur_size, &to);
		if (r)
			goto error;

		r = amdgpu_ttm_fill_mem(ring, src_data, to, cur_size, resv,
					&next, true);
		if (r)
			goto error;

		dma_fence_put(fence);
		fence = next;

		amdgpu_res_next(&dst, cur_size);
	}
error:
	mutex_unlock(&adev->mman.gtt_window_lock);
	if (f)
		*f = dma_fence_get(fence);
	dma_fence_put(fence);
2108 2109 2110
	return r;
}

2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140
/**
 * amdgpu_ttm_evict_resources - evict memory buffers
 * @adev: amdgpu device object
 * @mem_type: evicted BO's memory type
 *
 * Evicts all @mem_type buffers on the lru list of the memory type.
 *
 * Returns:
 * 0 for success or a negative error code on failure.
 */
int amdgpu_ttm_evict_resources(struct amdgpu_device *adev, int mem_type)
{
	struct ttm_resource_manager *man;

	switch (mem_type) {
	case TTM_PL_VRAM:
	case TTM_PL_TT:
	case AMDGPU_PL_GWS:
	case AMDGPU_PL_GDS:
	case AMDGPU_PL_OA:
		man = ttm_manager_type(&adev->mman.bdev, mem_type);
		break;
	default:
		DRM_ERROR("Trying to evict invalid memory type\n");
		return -EINVAL;
	}

	return ttm_resource_manager_evict_all(&adev->mman.bdev, man);
}

A
Alex Deucher 已提交
2141 2142
#if defined(CONFIG_DEBUG_FS)

2143
static int amdgpu_ttm_page_pool_show(struct seq_file *m, void *unused)
2144
{
2145
	struct amdgpu_device *adev = (struct amdgpu_device *)m->private;
2146 2147 2148 2149

	return ttm_pool_debugfs(&adev->mman.bdev.pool, m);
}

2150
DEFINE_SHOW_ATTRIBUTE(amdgpu_ttm_page_pool);
A
Alex Deucher 已提交
2151

2152
/*
2153 2154 2155 2156
 * amdgpu_ttm_vram_read - Linear read access to VRAM
 *
 * Accesses VRAM via MMIO for debugging purposes.
 */
A
Alex Deucher 已提交
2157 2158 2159
static ssize_t amdgpu_ttm_vram_read(struct file *f, char __user *buf,
				    size_t size, loff_t *pos)
{
A
Al Viro 已提交
2160
	struct amdgpu_device *adev = file_inode(f)->i_private;
A
Alex Deucher 已提交
2161 2162 2163 2164 2165
	ssize_t result = 0;

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

2166
	if (*pos >= adev->gmc.mc_vram_size)
2167 2168
		return -ENXIO;

2169
	size = min(size, (size_t)(adev->gmc.mc_vram_size - *pos));
A
Alex Deucher 已提交
2170
	while (size) {
2171 2172
		size_t bytes = min(size, AMDGPU_TTM_VRAM_MAX_DW_READ * 4);
		uint32_t value[AMDGPU_TTM_VRAM_MAX_DW_READ];
A
Alex Deucher 已提交
2173

2174
		amdgpu_device_vram_access(adev, *pos, value, bytes, false);
2175 2176
		if (copy_to_user(buf, value, bytes))
			return -EFAULT;
A
Alex Deucher 已提交
2177

2178 2179 2180 2181
		result += bytes;
		buf += bytes;
		*pos += bytes;
		size -= bytes;
A
Alex Deucher 已提交
2182 2183 2184 2185 2186
	}

	return result;
}

2187
/*
2188 2189 2190 2191
 * amdgpu_ttm_vram_write - Linear write access to VRAM
 *
 * Accesses VRAM via MMIO for debugging purposes.
 */
2192 2193 2194 2195 2196 2197 2198 2199 2200 2201
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;

2202
	if (*pos >= adev->gmc.mc_vram_size)
2203 2204 2205 2206 2207
		return -ENXIO;

	while (size) {
		uint32_t value;

2208
		if (*pos >= adev->gmc.mc_vram_size)
2209 2210 2211 2212 2213 2214
			return result;

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

2215
		amdgpu_device_mm_access(adev, *pos, &value, 4, true);
2216 2217 2218 2219 2220 2221 2222 2223 2224 2225

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

	return result;
}

A
Alex Deucher 已提交
2226 2227 2228
static const struct file_operations amdgpu_ttm_vram_fops = {
	.owner = THIS_MODULE,
	.read = amdgpu_ttm_vram_read,
2229 2230
	.write = amdgpu_ttm_vram_write,
	.llseek = default_llseek,
A
Alex Deucher 已提交
2231 2232
};

2233
/*
2234 2235 2236 2237 2238 2239
 * 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).
 */
2240 2241
static ssize_t amdgpu_iomem_read(struct file *f, char __user *buf,
				 size_t size, loff_t *pos)
2242 2243 2244
{
	struct amdgpu_device *adev = file_inode(f)->i_private;
	struct iommu_domain *dom;
2245 2246
	ssize_t result = 0;
	int r;
2247

2248
	/* retrieve the IOMMU domain if any for this device */
2249
	dom = iommu_get_domain_for_dev(adev->dev);
2250

2251 2252 2253 2254 2255 2256 2257 2258 2259 2260
	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;

2261 2262 2263 2264
		/* 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
		 */
2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275
		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);
2276
		r = copy_to_user(buf, ptr + off, bytes);
2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288
		kunmap(p);
		if (r)
			return -EFAULT;

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

	return result;
}

2289
/*
2290 2291 2292 2293 2294 2295
 * 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).
 */
2296 2297 2298 2299 2300 2301 2302
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;
2303 2304

	dom = iommu_get_domain_for_dev(adev->dev);
2305

2306 2307 2308 2309 2310 2311 2312 2313 2314
	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;
2315

2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326
		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);
2327
		r = copy_from_user(ptr + off, buf, bytes);
2328 2329 2330 2331 2332 2333 2334 2335 2336 2337
		kunmap(p);
		if (r)
			return -EFAULT;

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

	return result;
2338 2339
}

2340
static const struct file_operations amdgpu_ttm_iomem_fops = {
2341
	.owner = THIS_MODULE,
2342 2343
	.read = amdgpu_iomem_read,
	.write = amdgpu_iomem_write,
2344 2345
	.llseek = default_llseek
};
2346

2347 2348
#endif

2349
void amdgpu_ttm_debugfs_init(struct amdgpu_device *adev)
A
Alex Deucher 已提交
2350 2351
{
#if defined(CONFIG_DEBUG_FS)
2352
	struct drm_minor *minor = adev_to_drm(adev)->primary;
2353 2354
	struct dentry *root = minor->debugfs_root;

2355
	debugfs_create_file_size("amdgpu_vram", 0444, root, adev,
2356
				 &amdgpu_ttm_vram_fops, adev->gmc.mc_vram_size);
2357
	debugfs_create_file("amdgpu_iomem", 0444, root, adev,
2358
			    &amdgpu_ttm_iomem_fops);
2359 2360
	debugfs_create_file("ttm_page_pool", 0444, root, adev,
			    &amdgpu_ttm_page_pool_fops);
2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376
	ttm_resource_manager_create_debugfs(ttm_manager_type(&adev->mman.bdev,
							     TTM_PL_VRAM),
					    root, "amdgpu_vram_mm");
	ttm_resource_manager_create_debugfs(ttm_manager_type(&adev->mman.bdev,
							     TTM_PL_TT),
					    root, "amdgpu_gtt_mm");
	ttm_resource_manager_create_debugfs(ttm_manager_type(&adev->mman.bdev,
							     AMDGPU_PL_GDS),
					    root, "amdgpu_gds_mm");
	ttm_resource_manager_create_debugfs(ttm_manager_type(&adev->mman.bdev,
							     AMDGPU_PL_GWS),
					    root, "amdgpu_gws_mm");
	ttm_resource_manager_create_debugfs(ttm_manager_type(&adev->mman.bdev,
							     AMDGPU_PL_OA),
					    root, "amdgpu_oa_mm");

A
Alex Deucher 已提交
2377 2378
#endif
}