radeon_ttm.c 26.0 KB
Newer Older
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 32 33 34 35
/*
 * 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
 */
#include <ttm/ttm_bo_api.h>
#include <ttm/ttm_bo_driver.h>
#include <ttm/ttm_placement.h>
#include <ttm/ttm_module.h>
36
#include <ttm/ttm_page_alloc.h>
37 38
#include <drm/drmP.h>
#include <drm/radeon_drm.h>
39
#include <linux/seq_file.h>
40
#include <linux/slab.h>
41
#include <linux/swiotlb.h>
42
#include <linux/debugfs.h>
43 44 45 46 47
#include "radeon_reg.h"
#include "radeon.h"

#define DRM_FILE_PAGE_OFFSET (0x100000000ULL >> PAGE_SHIFT)

48
static int radeon_ttm_debugfs_init(struct radeon_device *rdev);
49
static void radeon_ttm_debugfs_fini(struct radeon_device *rdev);
50

51 52 53 54 55 56 57 58 59 60 61 62 63 64
static struct radeon_device *radeon_get_rdev(struct ttm_bo_device *bdev)
{
	struct radeon_mman *mman;
	struct radeon_device *rdev;

	mman = container_of(bdev, struct radeon_mman, bdev);
	rdev = container_of(mman, struct radeon_device, mman);
	return rdev;
}


/*
 * Global memory.
 */
65
static int radeon_ttm_mem_global_init(struct drm_global_reference *ref)
66 67 68 69
{
	return ttm_mem_global_init(ref->object);
}

70
static void radeon_ttm_mem_global_release(struct drm_global_reference *ref)
71 72 73 74 75 76
{
	ttm_mem_global_release(ref->object);
}

static int radeon_ttm_global_init(struct radeon_device *rdev)
{
77
	struct drm_global_reference *global_ref;
78 79 80 81
	int r;

	rdev->mman.mem_global_referenced = false;
	global_ref = &rdev->mman.mem_global_ref;
82
	global_ref->global_type = DRM_GLOBAL_TTM_MEM;
83 84 85
	global_ref->size = sizeof(struct ttm_mem_global);
	global_ref->init = &radeon_ttm_mem_global_init;
	global_ref->release = &radeon_ttm_mem_global_release;
86
	r = drm_global_item_ref(global_ref);
87
	if (r != 0) {
88 89
		DRM_ERROR("Failed setting up TTM memory accounting "
			  "subsystem.\n");
90 91
		return r;
	}
92 93 94 95

	rdev->mman.bo_global_ref.mem_glob =
		rdev->mman.mem_global_ref.object;
	global_ref = &rdev->mman.bo_global_ref.ref;
96
	global_ref->global_type = DRM_GLOBAL_TTM_BO;
97
	global_ref->size = sizeof(struct ttm_bo_global);
98 99
	global_ref->init = &ttm_bo_global_init;
	global_ref->release = &ttm_bo_global_release;
100
	r = drm_global_item_ref(global_ref);
101 102
	if (r != 0) {
		DRM_ERROR("Failed setting up TTM BO subsystem.\n");
103
		drm_global_item_unref(&rdev->mman.mem_global_ref);
104 105 106
		return r;
	}

107 108 109 110 111 112 113
	rdev->mman.mem_global_referenced = true;
	return 0;
}

static void radeon_ttm_global_fini(struct radeon_device *rdev)
{
	if (rdev->mman.mem_global_referenced) {
114 115
		drm_global_item_unref(&rdev->mman.bo_global_ref.ref);
		drm_global_item_unref(&rdev->mman.mem_global_ref);
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
		rdev->mman.mem_global_referenced = false;
	}
}

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

static int radeon_init_mem_type(struct ttm_bo_device *bdev, uint32_t type,
				struct ttm_mem_type_manager *man)
{
	struct radeon_device *rdev;

	rdev = radeon_get_rdev(bdev);

	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:
140
		man->func = &ttm_bo_manager_func;
141
		man->gpu_offset = rdev->mc.gtt_start;
142 143
		man->available_caching = TTM_PL_MASK_CACHING;
		man->default_caching = TTM_PL_FLAG_CACHED;
144
		man->flags = TTM_MEMTYPE_FLAG_MAPPABLE | TTM_MEMTYPE_FLAG_CMA;
145 146
#if __OS_HAS_AGP
		if (rdev->flags & RADEON_IS_AGP) {
D
Daniel Vetter 已提交
147
			if (!rdev->ddev->agp) {
148 149 150 151
				DRM_ERROR("AGP is not enabled for memory type %u\n",
					  (unsigned)type);
				return -EINVAL;
			}
152
			if (!rdev->ddev->agp->cant_use_aperture)
153
				man->flags = TTM_MEMTYPE_FLAG_MAPPABLE;
154 155 156 157
			man->available_caching = TTM_PL_FLAG_UNCACHED |
						 TTM_PL_FLAG_WC;
			man->default_caching = TTM_PL_FLAG_WC;
		}
158
#endif
159 160 161
		break;
	case TTM_PL_VRAM:
		/* "On-card" video ram */
162
		man->func = &ttm_bo_manager_func;
163
		man->gpu_offset = rdev->mc.vram_start;
164 165 166 167 168 169 170 171 172 173 174 175
		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;
	default:
		DRM_ERROR("Unsupported memory type %u\n", (unsigned)type);
		return -EINVAL;
	}
	return 0;
}

176 177
static void radeon_evict_flags(struct ttm_buffer_object *bo,
				struct ttm_placement *placement)
178
{
179 180 181 182 183 184 185 186 187 188 189 190 191
	struct radeon_bo *rbo;
	static u32 placements = TTM_PL_MASK_CACHING | TTM_PL_FLAG_SYSTEM;

	if (!radeon_ttm_bo_is_radeon_bo(bo)) {
		placement->fpfn = 0;
		placement->lpfn = 0;
		placement->placement = &placements;
		placement->busy_placement = &placements;
		placement->num_placement = 1;
		placement->num_busy_placement = 1;
		return;
	}
	rbo = container_of(bo, struct radeon_bo, tbo);
192
	switch (bo->mem.mem_type) {
193
	case TTM_PL_VRAM:
194
		if (rbo->rdev->ring[RADEON_RING_TYPE_GFX_INDEX].ready == false)
195 196 197
			radeon_ttm_placement_from_domain(rbo, RADEON_GEM_DOMAIN_CPU);
		else
			radeon_ttm_placement_from_domain(rbo, RADEON_GEM_DOMAIN_GTT);
198 199
		break;
	case TTM_PL_TT:
200
	default:
201
		radeon_ttm_placement_from_domain(rbo, RADEON_GEM_DOMAIN_CPU);
202
	}
203
	*placement = rbo->placement;
204 205 206 207
}

static int radeon_verify_access(struct ttm_buffer_object *bo, struct file *filp)
{
208 209 210
	struct radeon_bo *rbo = container_of(bo, struct radeon_bo, tbo);

	return drm_vma_node_verify_access(&rbo->gem_base.vma_node, filp);
211 212 213 214 215 216 217 218 219 220 221 222 223
}

static void radeon_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;
}

static int radeon_move_blit(struct ttm_buffer_object *bo,
224
			bool evict, bool no_wait_gpu,
225 226
			struct ttm_mem_reg *new_mem,
			struct ttm_mem_reg *old_mem)
227 228 229
{
	struct radeon_device *rdev;
	uint64_t old_start, new_start;
230 231
	struct radeon_fence *fence;
	int r, ridx;
232 233

	rdev = radeon_get_rdev(bo->bdev);
234
	ridx = radeon_copy_ring_index(rdev);
235 236
	old_start = old_mem->start << PAGE_SHIFT;
	new_start = new_mem->start << PAGE_SHIFT;
237 238 239

	switch (old_mem->mem_type) {
	case TTM_PL_VRAM:
240
		old_start += rdev->mc.vram_start;
241 242
		break;
	case TTM_PL_TT:
243
		old_start += rdev->mc.gtt_start;
244 245 246 247 248 249 250
		break;
	default:
		DRM_ERROR("Unknown placement %d\n", old_mem->mem_type);
		return -EINVAL;
	}
	switch (new_mem->mem_type) {
	case TTM_PL_VRAM:
251
		new_start += rdev->mc.vram_start;
252 253
		break;
	case TTM_PL_TT:
254
		new_start += rdev->mc.gtt_start;
255 256 257 258 259
		break;
	default:
		DRM_ERROR("Unknown placement %d\n", old_mem->mem_type);
		return -EINVAL;
	}
260
	if (!rdev->ring[ridx].ready) {
261
		DRM_ERROR("Trying to move memory with ring turned off.\n");
262 263
		return -EINVAL;
	}
264 265 266

	BUILD_BUG_ON((PAGE_SIZE % RADEON_GPU_PAGE_SIZE) != 0);

267
	/* sync other rings */
268
	fence = bo->sync_obj;
269 270
	r = radeon_copy(rdev, old_start, new_start,
			new_mem->num_pages * (PAGE_SIZE / RADEON_GPU_PAGE_SIZE), /* GPU pages */
271
			&fence);
272
	/* FIXME: handle copy error */
273
	r = ttm_bo_move_accel_cleanup(bo, (void *)fence,
274
				      evict, no_wait_gpu, new_mem);
275 276 277 278 279
	radeon_fence_unref(&fence);
	return r;
}

static int radeon_move_vram_ram(struct ttm_buffer_object *bo,
280
				bool evict, bool interruptible,
281
				bool no_wait_gpu,
282 283 284 285 286
				struct ttm_mem_reg *new_mem)
{
	struct radeon_device *rdev;
	struct ttm_mem_reg *old_mem = &bo->mem;
	struct ttm_mem_reg tmp_mem;
287 288
	u32 placements;
	struct ttm_placement placement;
289 290 291 292 293
	int r;

	rdev = radeon_get_rdev(bo->bdev);
	tmp_mem = *new_mem;
	tmp_mem.mm_node = NULL;
294 295 296 297 298 299 300 301
	placement.fpfn = 0;
	placement.lpfn = 0;
	placement.num_placement = 1;
	placement.placement = &placements;
	placement.num_busy_placement = 1;
	placement.busy_placement = &placements;
	placements = TTM_PL_MASK_CACHING | TTM_PL_FLAG_TT;
	r = ttm_bo_mem_space(bo, &placement, &tmp_mem,
302
			     interruptible, no_wait_gpu);
303 304 305
	if (unlikely(r)) {
		return r;
	}
306 307 308 309 310 311

	r = ttm_tt_set_placement_caching(bo->ttm, tmp_mem.placement);
	if (unlikely(r)) {
		goto out_cleanup;
	}

312 313 314 315
	r = ttm_tt_bind(bo->ttm, &tmp_mem);
	if (unlikely(r)) {
		goto out_cleanup;
	}
316
	r = radeon_move_blit(bo, true, no_wait_gpu, &tmp_mem, old_mem);
317 318 319
	if (unlikely(r)) {
		goto out_cleanup;
	}
320
	r = ttm_bo_move_ttm(bo, true, no_wait_gpu, new_mem);
321
out_cleanup:
322
	ttm_bo_mem_put(bo, &tmp_mem);
323 324 325 326
	return r;
}

static int radeon_move_ram_vram(struct ttm_buffer_object *bo,
327
				bool evict, bool interruptible,
328
				bool no_wait_gpu,
329 330 331 332 333
				struct ttm_mem_reg *new_mem)
{
	struct radeon_device *rdev;
	struct ttm_mem_reg *old_mem = &bo->mem;
	struct ttm_mem_reg tmp_mem;
334 335
	struct ttm_placement placement;
	u32 placements;
336 337 338 339 340
	int r;

	rdev = radeon_get_rdev(bo->bdev);
	tmp_mem = *new_mem;
	tmp_mem.mm_node = NULL;
341 342 343 344 345 346 347
	placement.fpfn = 0;
	placement.lpfn = 0;
	placement.num_placement = 1;
	placement.placement = &placements;
	placement.num_busy_placement = 1;
	placement.busy_placement = &placements;
	placements = TTM_PL_MASK_CACHING | TTM_PL_FLAG_TT;
348 349
	r = ttm_bo_mem_space(bo, &placement, &tmp_mem,
			     interruptible, no_wait_gpu);
350 351 352
	if (unlikely(r)) {
		return r;
	}
353
	r = ttm_bo_move_ttm(bo, true, no_wait_gpu, &tmp_mem);
354 355 356
	if (unlikely(r)) {
		goto out_cleanup;
	}
357
	r = radeon_move_blit(bo, true, no_wait_gpu, new_mem, old_mem);
358 359 360 361
	if (unlikely(r)) {
		goto out_cleanup;
	}
out_cleanup:
362
	ttm_bo_mem_put(bo, &tmp_mem);
363 364 365 366
	return r;
}

static int radeon_bo_move(struct ttm_buffer_object *bo,
367
			bool evict, bool interruptible,
368
			bool no_wait_gpu,
369
			struct ttm_mem_reg *new_mem)
370 371 372 373 374 375 376 377 378 379 380 381 382 383
{
	struct radeon_device *rdev;
	struct ttm_mem_reg *old_mem = &bo->mem;
	int r;

	rdev = radeon_get_rdev(bo->bdev);
	if (old_mem->mem_type == TTM_PL_SYSTEM && bo->ttm == NULL) {
		radeon_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)) {
384
		/* bind is enough */
385 386 387
		radeon_move_null(bo, new_mem);
		return 0;
	}
388 389
	if (!rdev->ring[radeon_copy_ring_index(rdev)].ready ||
	    rdev->asic->copy.copy == NULL) {
390
		/* use memcpy */
391
		goto memcpy;
392 393 394 395
	}

	if (old_mem->mem_type == TTM_PL_VRAM &&
	    new_mem->mem_type == TTM_PL_SYSTEM) {
396
		r = radeon_move_vram_ram(bo, evict, interruptible,
397
					no_wait_gpu, new_mem);
398 399
	} else if (old_mem->mem_type == TTM_PL_SYSTEM &&
		   new_mem->mem_type == TTM_PL_VRAM) {
400
		r = radeon_move_ram_vram(bo, evict, interruptible,
401
					    no_wait_gpu, new_mem);
402
	} else {
403
		r = radeon_move_blit(bo, evict, no_wait_gpu, new_mem, old_mem);
404
	}
405 406 407

	if (r) {
memcpy:
408
		r = ttm_bo_move_memcpy(bo, evict, no_wait_gpu, new_mem);
409 410 411
		if (r) {
			return r;
		}
412
	}
413 414 415 416

	/* update statistics */
	atomic64_add((u64)bo->num_pages << PAGE_SHIFT, &rdev->num_bytes_moved);
	return 0;
417 418
}

419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438
static int radeon_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];
	struct radeon_device *rdev = radeon_get_rdev(bdev);

	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:
#if __OS_HAS_AGP
		if (rdev->flags & RADEON_IS_AGP) {
			/* RADEON_IS_AGP is set only if AGP is active */
439
			mem->bus.offset = mem->start << PAGE_SHIFT;
440
			mem->bus.base = rdev->mc.agp_base;
441
			mem->bus.is_iomem = !rdev->ddev->agp->cant_use_aperture;
442 443 444 445
		}
#endif
		break;
	case TTM_PL_VRAM:
446
		mem->bus.offset = mem->start << PAGE_SHIFT;
447 448 449 450 451
		/* check if it's visible */
		if ((mem->bus.offset + mem->bus.size) > rdev->mc.visible_vram_size)
			return -EINVAL;
		mem->bus.base = rdev->mc.aper_base;
		mem->bus.is_iomem = true;
452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474
#ifdef __alpha__
		/*
		 * Alpha: use bus.addr to hold the ioremap() return,
		 * so we can modify bus.base below.
		 */
		if (mem->placement & TTM_PL_FLAG_WC)
			mem->bus.addr =
				ioremap_wc(mem->bus.base + mem->bus.offset,
					   mem->bus.size);
		else
			mem->bus.addr =
				ioremap_nocache(mem->bus.base + mem->bus.offset,
						mem->bus.size);

		/*
		 * Alpha: Use just the bus offset plus
		 * the hose/domain memory base for bus.base.
		 * It then can be used to build PTEs for VRAM
		 * access, as done in ttm_bo_vm_fault().
		 */
		mem->bus.base = (mem->bus.base & 0x0ffffffffUL) +
			rdev->ddev->hose->dense_mem_base;
#endif
475 476 477 478 479 480 481 482 483 484 485
		break;
	default:
		return -EINVAL;
	}
	return 0;
}

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

486
static int radeon_sync_obj_wait(void *sync_obj, bool lazy, bool interruptible)
487 488 489 490
{
	return radeon_fence_wait((struct radeon_fence *)sync_obj, interruptible);
}

491
static int radeon_sync_obj_flush(void *sync_obj)
492 493 494 495 496 497 498 499 500 501 502 503 504 505
{
	return 0;
}

static void radeon_sync_obj_unref(void **sync_obj)
{
	radeon_fence_unref((struct radeon_fence **)sync_obj);
}

static void *radeon_sync_obj_ref(void *sync_obj)
{
	return radeon_fence_ref((struct radeon_fence *)sync_obj);
}

506
static bool radeon_sync_obj_signaled(void *sync_obj)
507 508 509 510
{
	return radeon_fence_signaled((struct radeon_fence *)sync_obj);
}

511 512 513 514
/*
 * TTM backend functions.
 */
struct radeon_ttm_tt {
515
	struct ttm_dma_tt		ttm;
516 517 518 519 520 521 522
	struct radeon_device		*rdev;
	u64				offset;
};

static int radeon_ttm_backend_bind(struct ttm_tt *ttm,
				   struct ttm_mem_reg *bo_mem)
{
523
	struct radeon_ttm_tt *gtt = (void*)ttm;
524 525 526 527 528 529 530 531
	int r;

	gtt->offset = (unsigned long)(bo_mem->start << PAGE_SHIFT);
	if (!ttm->num_pages) {
		WARN(1, "nothing to bind %lu pages for mreg %p back %p!\n",
		     ttm->num_pages, bo_mem, ttm);
	}
	r = radeon_gart_bind(gtt->rdev, gtt->offset,
532
			     ttm->num_pages, ttm->pages, gtt->ttm.dma_address);
533 534 535 536 537 538 539 540 541 542
	if (r) {
		DRM_ERROR("failed to bind %lu pages at 0x%08X\n",
			  ttm->num_pages, (unsigned)gtt->offset);
		return r;
	}
	return 0;
}

static int radeon_ttm_backend_unbind(struct ttm_tt *ttm)
{
543
	struct radeon_ttm_tt *gtt = (void *)ttm;
544 545 546 547 548 549 550

	radeon_gart_unbind(gtt->rdev, gtt->offset, ttm->num_pages);
	return 0;
}

static void radeon_ttm_backend_destroy(struct ttm_tt *ttm)
{
551
	struct radeon_ttm_tt *gtt = (void *)ttm;
552

553
	ttm_dma_tt_fini(&gtt->ttm);
554 555 556 557 558 559 560 561 562
	kfree(gtt);
}

static struct ttm_backend_func radeon_backend_func = {
	.bind = &radeon_ttm_backend_bind,
	.unbind = &radeon_ttm_backend_unbind,
	.destroy = &radeon_ttm_backend_destroy,
};

563
static struct ttm_tt *radeon_ttm_tt_create(struct ttm_bo_device *bdev,
564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581
				    unsigned long size, uint32_t page_flags,
				    struct page *dummy_read_page)
{
	struct radeon_device *rdev;
	struct radeon_ttm_tt *gtt;

	rdev = radeon_get_rdev(bdev);
#if __OS_HAS_AGP
	if (rdev->flags & RADEON_IS_AGP) {
		return ttm_agp_tt_create(bdev, rdev->ddev->agp->bridge,
					 size, page_flags, dummy_read_page);
	}
#endif

	gtt = kzalloc(sizeof(struct radeon_ttm_tt), GFP_KERNEL);
	if (gtt == NULL) {
		return NULL;
	}
582
	gtt->ttm.ttm.func = &radeon_backend_func;
583
	gtt->rdev = rdev;
584 585
	if (ttm_dma_tt_init(&gtt->ttm, bdev, size, page_flags, dummy_read_page)) {
		kfree(gtt);
586 587
		return NULL;
	}
588
	return &gtt->ttm.ttm;
589 590
}

591 592 593
static int radeon_ttm_tt_populate(struct ttm_tt *ttm)
{
	struct radeon_device *rdev;
594
	struct radeon_ttm_tt *gtt = (void *)ttm;
595 596
	unsigned i;
	int r;
597
	bool slave = !!(ttm->page_flags & TTM_PAGE_FLAG_SG);
598 599 600 601

	if (ttm->state != tt_unpopulated)
		return 0;

602 603 604 605 606 607 608
	if (slave && ttm->sg) {
		drm_prime_sg_to_page_addr_arrays(ttm->sg, ttm->pages,
						 gtt->ttm.dma_address, ttm->num_pages);
		ttm->state = tt_unbound;
		return 0;
	}

609
	rdev = radeon_get_rdev(ttm->bdev);
J
Jerome Glisse 已提交
610 611 612 613 614
#if __OS_HAS_AGP
	if (rdev->flags & RADEON_IS_AGP) {
		return ttm_agp_tt_populate(ttm);
	}
#endif
615 616 617

#ifdef CONFIG_SWIOTLB
	if (swiotlb_nr_tbl()) {
618
		return ttm_dma_populate(&gtt->ttm, rdev->dev);
619 620 621 622 623 624 625 626 627
	}
#endif

	r = ttm_pool_populate(ttm);
	if (r) {
		return r;
	}

	for (i = 0; i < ttm->num_pages; i++) {
628 629 630 631
		gtt->ttm.dma_address[i] = pci_map_page(rdev->pdev, ttm->pages[i],
						       0, PAGE_SIZE,
						       PCI_DMA_BIDIRECTIONAL);
		if (pci_dma_mapping_error(rdev->pdev, gtt->ttm.dma_address[i])) {
632
			while (--i) {
633
				pci_unmap_page(rdev->pdev, gtt->ttm.dma_address[i],
634
					       PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
635
				gtt->ttm.dma_address[i] = 0;
636 637 638 639 640 641 642 643 644 645 646
			}
			ttm_pool_unpopulate(ttm);
			return -EFAULT;
		}
	}
	return 0;
}

static void radeon_ttm_tt_unpopulate(struct ttm_tt *ttm)
{
	struct radeon_device *rdev;
647
	struct radeon_ttm_tt *gtt = (void *)ttm;
648
	unsigned i;
649 650 651 652
	bool slave = !!(ttm->page_flags & TTM_PAGE_FLAG_SG);

	if (slave)
		return;
653 654

	rdev = radeon_get_rdev(ttm->bdev);
J
Jerome Glisse 已提交
655 656 657 658 659 660
#if __OS_HAS_AGP
	if (rdev->flags & RADEON_IS_AGP) {
		ttm_agp_tt_unpopulate(ttm);
		return;
	}
#endif
661 662 663

#ifdef CONFIG_SWIOTLB
	if (swiotlb_nr_tbl()) {
664
		ttm_dma_unpopulate(&gtt->ttm, rdev->dev);
665 666 667 668 669
		return;
	}
#endif

	for (i = 0; i < ttm->num_pages; i++) {
670 671
		if (gtt->ttm.dma_address[i]) {
			pci_unmap_page(rdev->pdev, gtt->ttm.dma_address[i],
672 673 674 675 676 677
				       PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
		}
	}

	ttm_pool_unpopulate(ttm);
}
678

679
static struct ttm_bo_driver radeon_bo_driver = {
680
	.ttm_tt_create = &radeon_ttm_tt_create,
681 682
	.ttm_tt_populate = &radeon_ttm_tt_populate,
	.ttm_tt_unpopulate = &radeon_ttm_tt_unpopulate,
683 684 685 686 687 688 689 690 691 692
	.invalidate_caches = &radeon_invalidate_caches,
	.init_mem_type = &radeon_init_mem_type,
	.evict_flags = &radeon_evict_flags,
	.move = &radeon_bo_move,
	.verify_access = &radeon_verify_access,
	.sync_obj_signaled = &radeon_sync_obj_signaled,
	.sync_obj_wait = &radeon_sync_obj_wait,
	.sync_obj_flush = &radeon_sync_obj_flush,
	.sync_obj_unref = &radeon_sync_obj_unref,
	.sync_obj_ref = &radeon_sync_obj_ref,
693 694
	.move_notify = &radeon_bo_move_notify,
	.fault_reserve_notify = &radeon_bo_fault_reserve_notify,
695 696
	.io_mem_reserve = &radeon_ttm_io_mem_reserve,
	.io_mem_free = &radeon_ttm_io_mem_free,
697 698 699 700 701 702 703 704 705 706 707 708
};

int radeon_ttm_init(struct radeon_device *rdev)
{
	int r;

	r = radeon_ttm_global_init(rdev);
	if (r) {
		return r;
	}
	/* No others user of address space so set it to 0 */
	r = ttm_bo_device_init(&rdev->mman.bdev,
709
			       rdev->mman.bo_global_ref.ref.object,
710 711 712
			       &radeon_bo_driver,
			       rdev->ddev->anon_inode->i_mapping,
			       DRM_FILE_PAGE_OFFSET,
D
Dave Airlie 已提交
713
			       rdev->need_dma32);
714 715 716 717
	if (r) {
		DRM_ERROR("failed initializing buffer object driver(%d).\n", r);
		return r;
	}
718
	rdev->mman.initialized = true;
719
	r = ttm_bo_init_mm(&rdev->mman.bdev, TTM_PL_VRAM,
720
				rdev->mc.real_vram_size >> PAGE_SHIFT);
721 722 723 724
	if (r) {
		DRM_ERROR("Failed initializing VRAM heap.\n");
		return r;
	}
725
	r = radeon_bo_create(rdev, 256 * 1024, PAGE_SIZE, true,
726 727
			     RADEON_GEM_DOMAIN_VRAM,
			     NULL, &rdev->stollen_vga_memory);
728 729 730
	if (r) {
		return r;
	}
731 732 733 734 735
	r = radeon_bo_reserve(rdev->stollen_vga_memory, false);
	if (r)
		return r;
	r = radeon_bo_pin(rdev->stollen_vga_memory, RADEON_GEM_DOMAIN_VRAM, NULL);
	radeon_bo_unreserve(rdev->stollen_vga_memory);
736
	if (r) {
737
		radeon_bo_unref(&rdev->stollen_vga_memory);
738 739 740
		return r;
	}
	DRM_INFO("radeon: %uM of VRAM memory ready\n",
741
		 (unsigned) (rdev->mc.real_vram_size / (1024 * 1024)));
742
	r = ttm_bo_init_mm(&rdev->mman.bdev, TTM_PL_TT,
743
				rdev->mc.gtt_size >> PAGE_SHIFT);
744 745 746 747 748
	if (r) {
		DRM_ERROR("Failed initializing GTT heap.\n");
		return r;
	}
	DRM_INFO("radeon: %uM of GTT memory ready.\n",
749
		 (unsigned)(rdev->mc.gtt_size / (1024 * 1024)));
750 751 752 753 754 755

	r = radeon_ttm_debugfs_init(rdev);
	if (r) {
		DRM_ERROR("Failed to init debugfs\n");
		return r;
	}
756 757 758 759 760
	return 0;
}

void radeon_ttm_fini(struct radeon_device *rdev)
{
761 762
	int r;

763 764
	if (!rdev->mman.initialized)
		return;
765
	radeon_ttm_debugfs_fini(rdev);
766
	if (rdev->stollen_vga_memory) {
767 768 769 770 771 772
		r = radeon_bo_reserve(rdev->stollen_vga_memory, false);
		if (r == 0) {
			radeon_bo_unpin(rdev->stollen_vga_memory);
			radeon_bo_unreserve(rdev->stollen_vga_memory);
		}
		radeon_bo_unref(&rdev->stollen_vga_memory);
773 774 775 776 777 778
	}
	ttm_bo_clean_mm(&rdev->mman.bdev, TTM_PL_VRAM);
	ttm_bo_clean_mm(&rdev->mman.bdev, TTM_PL_TT);
	ttm_bo_device_release(&rdev->mman.bdev);
	radeon_gart_fini(rdev);
	radeon_ttm_global_fini(rdev);
779
	rdev->mman.initialized = false;
780 781 782
	DRM_INFO("radeon: ttm finalized\n");
}

783 784 785 786 787 788 789 790 791 792 793 794 795 796
/* this should only be called at bootup or when userspace
 * isn't running */
void radeon_ttm_set_active_vram_size(struct radeon_device *rdev, u64 size)
{
	struct ttm_mem_type_manager *man;

	if (!rdev->mman.initialized)
		return;

	man = &rdev->mman.bdev.man[TTM_PL_VRAM];
	/* this just adjusts TTM size idea, which sets lpfn to the correct value */
	man->size = size >> PAGE_SHIFT;
}

797
static struct vm_operations_struct radeon_ttm_vm_ops;
798
static const struct vm_operations_struct *ttm_vm_ops = NULL;
799 800 801 802

static int radeon_ttm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
{
	struct ttm_buffer_object *bo;
803
	struct radeon_device *rdev;
804 805
	int r;

806
	bo = (struct ttm_buffer_object *)vma->vm_private_data;	
807 808 809
	if (bo == NULL) {
		return VM_FAULT_NOPAGE;
	}
810
	rdev = radeon_get_rdev(bo->bdev);
811
	down_read(&rdev->pm.mclk_lock);
812
	r = ttm_vm_ops->fault(vma, vmf);
813
	up_read(&rdev->pm.mclk_lock);
814 815 816 817 818 819 820 821 822 823 824 825 826
	return r;
}

int radeon_mmap(struct file *filp, struct vm_area_struct *vma)
{
	struct drm_file *file_priv;
	struct radeon_device *rdev;
	int r;

	if (unlikely(vma->vm_pgoff < DRM_FILE_PAGE_OFFSET)) {
		return drm_mmap(filp, vma);
	}

827
	file_priv = filp->private_data;
828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844
	rdev = file_priv->minor->dev->dev_private;
	if (rdev == NULL) {
		return -EINVAL;
	}
	r = ttm_bo_mmap(filp, vma, &rdev->mman.bdev);
	if (unlikely(r != 0)) {
		return r;
	}
	if (unlikely(ttm_vm_ops == NULL)) {
		ttm_vm_ops = vma->vm_ops;
		radeon_ttm_vm_ops = *ttm_vm_ops;
		radeon_ttm_vm_ops.fault = &radeon_ttm_fault;
	}
	vma->vm_ops = &radeon_ttm_vm_ops;
	return 0;
}

845
#if defined(CONFIG_DEBUG_FS)
846

847 848 849
static int radeon_mm_dump_table(struct seq_file *m, void *data)
{
	struct drm_info_node *node = (struct drm_info_node *)m->private;
850
	unsigned ttm_pl = *(int *)node->info_ent->data;
851 852
	struct drm_device *dev = node->minor->dev;
	struct radeon_device *rdev = dev->dev_private;
853
	struct drm_mm *mm = (struct drm_mm *)rdev->mman.bdev.man[ttm_pl].priv;
854 855 856 857 858 859 860 861
	int ret;
	struct ttm_bo_global *glob = rdev->mman.bdev.glob;

	spin_lock(&glob->lru_lock);
	ret = drm_mm_dump_table(m, mm);
	spin_unlock(&glob->lru_lock);
	return ret;
}
862 863 864 865 866 867 868 869 870 871 872 873 874

static int ttm_pl_vram = TTM_PL_VRAM;
static int ttm_pl_tt = TTM_PL_TT;

static struct drm_info_list radeon_ttm_debugfs_list[] = {
	{"radeon_vram_mm", radeon_mm_dump_table, 0, &ttm_pl_vram},
	{"radeon_gtt_mm", radeon_mm_dump_table, 0, &ttm_pl_tt},
	{"ttm_page_pool", ttm_page_alloc_debugfs, 0, NULL},
#ifdef CONFIG_SWIOTLB
	{"ttm_dma_page_pool", ttm_dma_page_alloc_debugfs, 0, NULL}
#endif
};

875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926
static int radeon_ttm_vram_open(struct inode *inode, struct file *filep)
{
	struct radeon_device *rdev = inode->i_private;
	i_size_write(inode, rdev->mc.mc_vram_size);
	filep->private_data = inode->i_private;
	return 0;
}

static ssize_t radeon_ttm_vram_read(struct file *f, char __user *buf,
				    size_t size, loff_t *pos)
{
	struct radeon_device *rdev = f->private_data;
	ssize_t result = 0;
	int r;

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

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

		if (*pos >= rdev->mc.mc_vram_size)
			return result;

		spin_lock_irqsave(&rdev->mmio_idx_lock, flags);
		WREG32(RADEON_MM_INDEX, ((uint32_t)*pos) | 0x80000000);
		if (rdev->family >= CHIP_CEDAR)
			WREG32(EVERGREEN_MM_INDEX_HI, *pos >> 31);
		value = RREG32(RADEON_MM_DATA);
		spin_unlock_irqrestore(&rdev->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;
}

static const struct file_operations radeon_ttm_vram_fops = {
	.owner = THIS_MODULE,
	.open = radeon_ttm_vram_open,
	.read = radeon_ttm_vram_read,
	.llseek = default_llseek
};

927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980
static int radeon_ttm_gtt_open(struct inode *inode, struct file *filep)
{
	struct radeon_device *rdev = inode->i_private;
	i_size_write(inode, rdev->mc.gtt_size);
	filep->private_data = inode->i_private;
	return 0;
}

static ssize_t radeon_ttm_gtt_read(struct file *f, char __user *buf,
				   size_t size, loff_t *pos)
{
	struct radeon_device *rdev = f->private_data;
	ssize_t result = 0;
	int r;

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

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

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

			r = copy_to_user(buf, ptr, cur_size);
			kunmap(rdev->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 radeon_ttm_gtt_fops = {
	.owner = THIS_MODULE,
	.open = radeon_ttm_gtt_open,
	.read = radeon_ttm_gtt_read,
	.llseek = default_llseek
};

981 982 983 984
#endif

static int radeon_ttm_debugfs_init(struct radeon_device *rdev)
{
985
#if defined(CONFIG_DEBUG_FS)
986 987 988 989 990 991 992 993 994 995 996
	unsigned count;

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

	ent = debugfs_create_file("radeon_vram", S_IFREG | S_IRUGO, root,
				  rdev, &radeon_ttm_vram_fops);
	if (IS_ERR(ent))
		return PTR_ERR(ent);
	rdev->mman.vram = ent;

997 998 999 1000 1001 1002
	ent = debugfs_create_file("radeon_gtt", S_IFREG | S_IRUGO, root,
				  rdev, &radeon_ttm_gtt_fops);
	if (IS_ERR(ent))
		return PTR_ERR(ent);
	rdev->mman.gtt = ent;

1003
	count = ARRAY_SIZE(radeon_ttm_debugfs_list);
1004

1005
#ifdef CONFIG_SWIOTLB
1006 1007
	if (!swiotlb_nr_tbl())
		--count;
1008
#endif
1009

1010 1011 1012
	return radeon_debugfs_add_files(rdev, radeon_ttm_debugfs_list, count);
#else

1013
	return 0;
1014
#endif
1015
}
1016 1017 1018 1019 1020 1021 1022

static void radeon_ttm_debugfs_fini(struct radeon_device *rdev)
{
#if defined(CONFIG_DEBUG_FS)

	debugfs_remove(rdev->mman.vram);
	rdev->mman.vram = NULL;
1023 1024 1025

	debugfs_remove(rdev->mman.gtt);
	rdev->mman.gtt = NULL;
1026 1027
#endif
}