radeon_ttm.c 24.5 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 412
	return r;
}

413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432
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 */
433
			mem->bus.offset = mem->start << PAGE_SHIFT;
434
			mem->bus.base = rdev->mc.agp_base;
435
			mem->bus.is_iomem = !rdev->ddev->agp->cant_use_aperture;
436 437 438 439
		}
#endif
		break;
	case TTM_PL_VRAM:
440
		mem->bus.offset = mem->start << PAGE_SHIFT;
441 442 443 444 445
		/* 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;
446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468
#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
469 470 471 472 473 474 475 476 477 478 479
		break;
	default:
		return -EINVAL;
	}
	return 0;
}

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

480
static int radeon_sync_obj_wait(void *sync_obj, bool lazy, bool interruptible)
481 482 483 484
{
	return radeon_fence_wait((struct radeon_fence *)sync_obj, interruptible);
}

485
static int radeon_sync_obj_flush(void *sync_obj)
486 487 488 489 490 491 492 493 494 495 496 497 498 499
{
	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);
}

500
static bool radeon_sync_obj_signaled(void *sync_obj)
501 502 503 504
{
	return radeon_fence_signaled((struct radeon_fence *)sync_obj);
}

505 506 507 508
/*
 * TTM backend functions.
 */
struct radeon_ttm_tt {
509
	struct ttm_dma_tt		ttm;
510 511 512 513 514 515 516
	struct radeon_device		*rdev;
	u64				offset;
};

static int radeon_ttm_backend_bind(struct ttm_tt *ttm,
				   struct ttm_mem_reg *bo_mem)
{
517
	struct radeon_ttm_tt *gtt = (void*)ttm;
518 519 520 521 522 523 524 525
	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,
526
			     ttm->num_pages, ttm->pages, gtt->ttm.dma_address);
527 528 529 530 531 532 533 534 535 536
	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)
{
537
	struct radeon_ttm_tt *gtt = (void *)ttm;
538 539 540 541 542 543 544

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

static void radeon_ttm_backend_destroy(struct ttm_tt *ttm)
{
545
	struct radeon_ttm_tt *gtt = (void *)ttm;
546

547
	ttm_dma_tt_fini(&gtt->ttm);
548 549 550 551 552 553 554 555 556
	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,
};

557
static struct ttm_tt *radeon_ttm_tt_create(struct ttm_bo_device *bdev,
558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575
				    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;
	}
576
	gtt->ttm.ttm.func = &radeon_backend_func;
577
	gtt->rdev = rdev;
578 579
	if (ttm_dma_tt_init(&gtt->ttm, bdev, size, page_flags, dummy_read_page)) {
		kfree(gtt);
580 581
		return NULL;
	}
582
	return &gtt->ttm.ttm;
583 584
}

585 586 587
static int radeon_ttm_tt_populate(struct ttm_tt *ttm)
{
	struct radeon_device *rdev;
588
	struct radeon_ttm_tt *gtt = (void *)ttm;
589 590
	unsigned i;
	int r;
591
	bool slave = !!(ttm->page_flags & TTM_PAGE_FLAG_SG);
592 593 594 595

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

596 597 598 599 600 601 602
	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;
	}

603
	rdev = radeon_get_rdev(ttm->bdev);
J
Jerome Glisse 已提交
604 605 606 607 608
#if __OS_HAS_AGP
	if (rdev->flags & RADEON_IS_AGP) {
		return ttm_agp_tt_populate(ttm);
	}
#endif
609 610 611

#ifdef CONFIG_SWIOTLB
	if (swiotlb_nr_tbl()) {
612
		return ttm_dma_populate(&gtt->ttm, rdev->dev);
613 614 615 616 617 618 619 620 621
	}
#endif

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

	for (i = 0; i < ttm->num_pages; i++) {
622 623 624 625
		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])) {
626
			while (--i) {
627
				pci_unmap_page(rdev->pdev, gtt->ttm.dma_address[i],
628
					       PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
629
				gtt->ttm.dma_address[i] = 0;
630 631 632 633 634 635 636 637 638 639 640
			}
			ttm_pool_unpopulate(ttm);
			return -EFAULT;
		}
	}
	return 0;
}

static void radeon_ttm_tt_unpopulate(struct ttm_tt *ttm)
{
	struct radeon_device *rdev;
641
	struct radeon_ttm_tt *gtt = (void *)ttm;
642
	unsigned i;
643 644 645 646
	bool slave = !!(ttm->page_flags & TTM_PAGE_FLAG_SG);

	if (slave)
		return;
647 648

	rdev = radeon_get_rdev(ttm->bdev);
J
Jerome Glisse 已提交
649 650 651 652 653 654
#if __OS_HAS_AGP
	if (rdev->flags & RADEON_IS_AGP) {
		ttm_agp_tt_unpopulate(ttm);
		return;
	}
#endif
655 656 657

#ifdef CONFIG_SWIOTLB
	if (swiotlb_nr_tbl()) {
658
		ttm_dma_unpopulate(&gtt->ttm, rdev->dev);
659 660 661 662 663
		return;
	}
#endif

	for (i = 0; i < ttm->num_pages; i++) {
664 665
		if (gtt->ttm.dma_address[i]) {
			pci_unmap_page(rdev->pdev, gtt->ttm.dma_address[i],
666 667 668 669 670 671
				       PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
		}
	}

	ttm_pool_unpopulate(ttm);
}
672

673
static struct ttm_bo_driver radeon_bo_driver = {
674
	.ttm_tt_create = &radeon_ttm_tt_create,
675 676
	.ttm_tt_populate = &radeon_ttm_tt_populate,
	.ttm_tt_unpopulate = &radeon_ttm_tt_unpopulate,
677 678 679 680 681 682 683 684 685 686
	.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,
687 688
	.move_notify = &radeon_bo_move_notify,
	.fault_reserve_notify = &radeon_bo_fault_reserve_notify,
689 690
	.io_mem_reserve = &radeon_ttm_io_mem_reserve,
	.io_mem_free = &radeon_ttm_io_mem_free,
691 692 693 694 695 696 697 698 699 700 701 702
};

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,
703
			       rdev->mman.bo_global_ref.ref.object,
D
Dave Airlie 已提交
704 705
			       &radeon_bo_driver, DRM_FILE_PAGE_OFFSET,
			       rdev->need_dma32);
706 707 708 709
	if (r) {
		DRM_ERROR("failed initializing buffer object driver(%d).\n", r);
		return r;
	}
710
	rdev->mman.initialized = true;
711
	r = ttm_bo_init_mm(&rdev->mman.bdev, TTM_PL_VRAM,
712
				rdev->mc.real_vram_size >> PAGE_SHIFT);
713 714 715 716
	if (r) {
		DRM_ERROR("Failed initializing VRAM heap.\n");
		return r;
	}
717
	r = radeon_bo_create(rdev, 256 * 1024, PAGE_SIZE, true,
718 719
			     RADEON_GEM_DOMAIN_VRAM,
			     NULL, &rdev->stollen_vga_memory);
720 721 722
	if (r) {
		return r;
	}
723 724 725 726 727
	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);
728
	if (r) {
729
		radeon_bo_unref(&rdev->stollen_vga_memory);
730 731 732
		return r;
	}
	DRM_INFO("radeon: %uM of VRAM memory ready\n",
733
		 (unsigned) (rdev->mc.real_vram_size / (1024 * 1024)));
734
	r = ttm_bo_init_mm(&rdev->mman.bdev, TTM_PL_TT,
735
				rdev->mc.gtt_size >> PAGE_SHIFT);
736 737 738 739 740
	if (r) {
		DRM_ERROR("Failed initializing GTT heap.\n");
		return r;
	}
	DRM_INFO("radeon: %uM of GTT memory ready.\n",
741
		 (unsigned)(rdev->mc.gtt_size / (1024 * 1024)));
742
	rdev->mman.bdev.dev_mapping = rdev->ddev->dev_mapping;
743 744 745 746 747 748

	r = radeon_ttm_debugfs_init(rdev);
	if (r) {
		DRM_ERROR("Failed to init debugfs\n");
		return r;
	}
749 750 751 752 753
	return 0;
}

void radeon_ttm_fini(struct radeon_device *rdev)
{
754 755
	int r;

756 757
	if (!rdev->mman.initialized)
		return;
758
	radeon_ttm_debugfs_fini(rdev);
759
	if (rdev->stollen_vga_memory) {
760 761 762 763 764 765
		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);
766 767 768 769 770 771
	}
	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);
772
	rdev->mman.initialized = false;
773 774 775
	DRM_INFO("radeon: ttm finalized\n");
}

776 777 778 779 780 781 782 783 784 785 786 787 788 789
/* 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;
}

790
static struct vm_operations_struct radeon_ttm_vm_ops;
791
static const struct vm_operations_struct *ttm_vm_ops = NULL;
792 793 794 795

static int radeon_ttm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
{
	struct ttm_buffer_object *bo;
796
	struct radeon_device *rdev;
797 798
	int r;

799
	bo = (struct ttm_buffer_object *)vma->vm_private_data;	
800 801 802
	if (bo == NULL) {
		return VM_FAULT_NOPAGE;
	}
803
	rdev = radeon_get_rdev(bo->bdev);
804
	down_read(&rdev->pm.mclk_lock);
805
	r = ttm_vm_ops->fault(vma, vmf);
806
	up_read(&rdev->pm.mclk_lock);
807 808 809 810 811 812 813 814 815 816 817 818 819
	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);
	}

820
	file_priv = filp->private_data;
821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837
	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;
}

838
#if defined(CONFIG_DEBUG_FS)
839

840 841 842
static int radeon_mm_dump_table(struct seq_file *m, void *data)
{
	struct drm_info_node *node = (struct drm_info_node *)m->private;
843
	unsigned ttm_pl = *(int *)node->info_ent->data;
844 845
	struct drm_device *dev = node->minor->dev;
	struct radeon_device *rdev = dev->dev_private;
846
	struct drm_mm *mm = (struct drm_mm *)rdev->mman.bdev.man[ttm_pl].priv;
847 848 849 850 851 852 853 854
	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;
}
855 856 857 858 859 860 861 862 863 864 865 866 867

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

868 869 870 871 872 873 874 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
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
};

920 921 922 923
#endif

static int radeon_ttm_debugfs_init(struct radeon_device *rdev)
{
924
#if defined(CONFIG_DEBUG_FS)
925 926 927 928 929 930 931 932 933 934 935 936
	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;

	count = ARRAY_SIZE(radeon_ttm_debugfs_list);
937

938
#ifdef CONFIG_SWIOTLB
939 940
	if (!swiotlb_nr_tbl())
		--count;
941
#endif
942

943 944 945
	return radeon_debugfs_add_files(rdev, radeon_ttm_debugfs_list, count);
#else

946
	return 0;
947
#endif
948
}
949 950 951 952 953 954 955 956 957

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

	debugfs_remove(rdev->mman.vram);
	rdev->mman.vram = NULL;
#endif
}