radeon_ttm.c 23.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 43 44 45 46
#include "radeon_reg.h"
#include "radeon.h"

#define DRM_FILE_PAGE_OFFSET (0x100000000ULL >> PAGE_SHIFT)

47 48
static int radeon_ttm_debugfs_init(struct radeon_device *rdev);

49 50 51 52 53 54 55 56 57 58 59 60 61 62
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.
 */
63
static int radeon_ttm_mem_global_init(struct drm_global_reference *ref)
64 65 66 67
{
	return ttm_mem_global_init(ref->object);
}

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

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

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

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

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

static void radeon_ttm_global_fini(struct radeon_device *rdev)
{
	if (rdev->mman.mem_global_referenced) {
112 113
		drm_global_item_unref(&rdev->mman.bo_global_ref.ref);
		drm_global_item_unref(&rdev->mman.mem_global_ref);
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
		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:
138
		man->func = &ttm_bo_manager_func;
139
		man->gpu_offset = rdev->mc.gtt_start;
140 141
		man->available_caching = TTM_PL_MASK_CACHING;
		man->default_caching = TTM_PL_FLAG_CACHED;
142
		man->flags = TTM_MEMTYPE_FLAG_MAPPABLE | TTM_MEMTYPE_FLAG_CMA;
143 144 145 146 147 148 149
#if __OS_HAS_AGP
		if (rdev->flags & RADEON_IS_AGP) {
			if (!(drm_core_has_AGP(rdev->ddev) && rdev->ddev->agp)) {
				DRM_ERROR("AGP is not enabled for memory type %u\n",
					  (unsigned)type);
				return -EINVAL;
			}
150
			if (!rdev->ddev->agp->cant_use_aperture)
151
				man->flags = TTM_MEMTYPE_FLAG_MAPPABLE;
152 153 154 155
			man->available_caching = TTM_PL_FLAG_UNCACHED |
						 TTM_PL_FLAG_WC;
			man->default_caching = TTM_PL_FLAG_WC;
		}
156
#endif
157 158 159
		break;
	case TTM_PL_VRAM:
		/* "On-card" video ram */
160
		man->func = &ttm_bo_manager_func;
161
		man->gpu_offset = rdev->mc.vram_start;
162 163 164 165 166 167 168 169 170 171 172 173
		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;
}

174 175
static void radeon_evict_flags(struct ttm_buffer_object *bo,
				struct ttm_placement *placement)
176
{
177 178 179 180 181 182 183 184 185 186 187 188 189
	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);
190
	switch (bo->mem.mem_type) {
191
	case TTM_PL_VRAM:
192
		if (rbo->rdev->ring[RADEON_RING_TYPE_GFX_INDEX].ready == false)
193 194 195
			radeon_ttm_placement_from_domain(rbo, RADEON_GEM_DOMAIN_CPU);
		else
			radeon_ttm_placement_from_domain(rbo, RADEON_GEM_DOMAIN_GTT);
196 197
		break;
	case TTM_PL_TT:
198
	default:
199
		radeon_ttm_placement_from_domain(rbo, RADEON_GEM_DOMAIN_CPU);
200
	}
201
	*placement = rbo->placement;
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
}

static int radeon_verify_access(struct ttm_buffer_object *bo, struct file *filp)
{
	return 0;
}

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,
220
			bool evict, bool no_wait_gpu,
221 222
			struct ttm_mem_reg *new_mem,
			struct ttm_mem_reg *old_mem)
223 224 225
{
	struct radeon_device *rdev;
	uint64_t old_start, new_start;
226 227
	struct radeon_fence *fence;
	int r, ridx;
228 229

	rdev = radeon_get_rdev(bo->bdev);
230
	ridx = radeon_copy_ring_index(rdev);
231 232
	old_start = old_mem->start << PAGE_SHIFT;
	new_start = new_mem->start << PAGE_SHIFT;
233 234 235

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

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

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

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

	rdev = radeon_get_rdev(bo->bdev);
	tmp_mem = *new_mem;
	tmp_mem.mm_node = NULL;
290 291 292 293 294 295 296 297
	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,
298
			     interruptible, no_wait_gpu);
299 300 301
	if (unlikely(r)) {
		return r;
	}
302 303 304 305 306 307

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

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

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

	rdev = radeon_get_rdev(bo->bdev);
	tmp_mem = *new_mem;
	tmp_mem.mm_node = NULL;
337 338 339 340 341 342 343
	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;
344 345
	r = ttm_bo_mem_space(bo, &placement, &tmp_mem,
			     interruptible, no_wait_gpu);
346 347 348
	if (unlikely(r)) {
		return r;
	}
349
	r = ttm_bo_move_ttm(bo, true, no_wait_gpu, &tmp_mem);
350 351 352
	if (unlikely(r)) {
		goto out_cleanup;
	}
353
	r = radeon_move_blit(bo, true, no_wait_gpu, new_mem, old_mem);
354 355 356 357
	if (unlikely(r)) {
		goto out_cleanup;
	}
out_cleanup:
358
	ttm_bo_mem_put(bo, &tmp_mem);
359 360 361 362
	return r;
}

static int radeon_bo_move(struct ttm_buffer_object *bo,
363
			bool evict, bool interruptible,
364
			bool no_wait_gpu,
365
			struct ttm_mem_reg *new_mem)
366 367 368 369 370 371 372 373 374 375 376 377 378 379
{
	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)) {
380
		/* bind is enough */
381 382 383
		radeon_move_null(bo, new_mem);
		return 0;
	}
384 385
	if (!rdev->ring[radeon_copy_ring_index(rdev)].ready ||
	    rdev->asic->copy.copy == NULL) {
386
		/* use memcpy */
387
		goto memcpy;
388 389 390 391
	}

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

	if (r) {
memcpy:
404
		r = ttm_bo_move_memcpy(bo, evict, no_wait_gpu, new_mem);
405
	}
406 407 408
	return r;
}

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

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

476
static int radeon_sync_obj_wait(void *sync_obj, bool lazy, bool interruptible)
477 478 479 480
{
	return radeon_fence_wait((struct radeon_fence *)sync_obj, interruptible);
}

481
static int radeon_sync_obj_flush(void *sync_obj)
482 483 484 485 486 487 488 489 490 491 492 493 494 495
{
	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);
}

496
static bool radeon_sync_obj_signaled(void *sync_obj)
497 498 499 500
{
	return radeon_fence_signaled((struct radeon_fence *)sync_obj);
}

501 502 503 504
/*
 * TTM backend functions.
 */
struct radeon_ttm_tt {
505
	struct ttm_dma_tt		ttm;
506 507 508 509 510 511 512
	struct radeon_device		*rdev;
	u64				offset;
};

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

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

static void radeon_ttm_backend_destroy(struct ttm_tt *ttm)
{
541
	struct radeon_ttm_tt *gtt = (void *)ttm;
542

543
	ttm_dma_tt_fini(&gtt->ttm);
544 545 546 547 548 549 550 551 552
	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,
};

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

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

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

592 593 594 595 596 597 598
	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;
	}

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

#ifdef CONFIG_SWIOTLB
	if (swiotlb_nr_tbl()) {
608
		return ttm_dma_populate(&gtt->ttm, rdev->dev);
609 610 611 612 613 614 615 616 617
	}
#endif

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

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

static void radeon_ttm_tt_unpopulate(struct ttm_tt *ttm)
{
	struct radeon_device *rdev;
637
	struct radeon_ttm_tt *gtt = (void *)ttm;
638
	unsigned i;
639 640 641 642
	bool slave = !!(ttm->page_flags & TTM_PAGE_FLAG_SG);

	if (slave)
		return;
643 644

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

#ifdef CONFIG_SWIOTLB
	if (swiotlb_nr_tbl()) {
654
		ttm_dma_unpopulate(&gtt->ttm, rdev->dev);
655 656 657 658 659
		return;
	}
#endif

	for (i = 0; i < ttm->num_pages; i++) {
660 661
		if (gtt->ttm.dma_address[i]) {
			pci_unmap_page(rdev->pdev, gtt->ttm.dma_address[i],
662 663 664 665 666 667
				       PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
		}
	}

	ttm_pool_unpopulate(ttm);
}
668

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

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

	r = radeon_ttm_debugfs_init(rdev);
	if (r) {
		DRM_ERROR("Failed to init debugfs\n");
		return r;
	}
745 746 747 748 749
	return 0;
}

void radeon_ttm_fini(struct radeon_device *rdev)
{
750 751
	int r;

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

771 772 773 774 775 776 777 778 779 780 781 782 783 784
/* 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;
}

785
static struct vm_operations_struct radeon_ttm_vm_ops;
786
static const struct vm_operations_struct *ttm_vm_ops = NULL;
787 788 789 790

static int radeon_ttm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
{
	struct ttm_buffer_object *bo;
791
	struct radeon_device *rdev;
792 793
	int r;

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

815
	file_priv = filp->private_data;
816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833
	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;
}


834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854
#define RADEON_DEBUGFS_MEM_TYPES 2

#if defined(CONFIG_DEBUG_FS)
static int radeon_mm_dump_table(struct seq_file *m, void *data)
{
	struct drm_info_node *node = (struct drm_info_node *)m->private;
	struct drm_mm *mm = (struct drm_mm *)node->info_ent->data;
	struct drm_device *dev = node->minor->dev;
	struct radeon_device *rdev = dev->dev_private;
	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;
}
#endif

static int radeon_ttm_debugfs_init(struct radeon_device *rdev)
{
855
#if defined(CONFIG_DEBUG_FS)
856 857
	static struct drm_info_list radeon_mem_types_list[RADEON_DEBUGFS_MEM_TYPES+2];
	static char radeon_mem_types_names[RADEON_DEBUGFS_MEM_TYPES+2][32];
858 859 860 861 862 863 864 865 866 867 868
	unsigned i;

	for (i = 0; i < RADEON_DEBUGFS_MEM_TYPES; i++) {
		if (i == 0)
			sprintf(radeon_mem_types_names[i], "radeon_vram_mm");
		else
			sprintf(radeon_mem_types_names[i], "radeon_gtt_mm");
		radeon_mem_types_list[i].name = radeon_mem_types_names[i];
		radeon_mem_types_list[i].show = &radeon_mm_dump_table;
		radeon_mem_types_list[i].driver_features = 0;
		if (i == 0)
869
			radeon_mem_types_list[i].data = rdev->mman.bdev.man[TTM_PL_VRAM].priv;
870
		else
871
			radeon_mem_types_list[i].data = rdev->mman.bdev.man[TTM_PL_TT].priv;
872 873

	}
874 875 876 877 878
	/* Add ttm page pool to debugfs */
	sprintf(radeon_mem_types_names[i], "ttm_page_pool");
	radeon_mem_types_list[i].name = radeon_mem_types_names[i];
	radeon_mem_types_list[i].show = &ttm_page_alloc_debugfs;
	radeon_mem_types_list[i].driver_features = 0;
879 880 881 882 883 884 885 886 887 888 889
	radeon_mem_types_list[i++].data = NULL;
#ifdef CONFIG_SWIOTLB
	if (swiotlb_nr_tbl()) {
		sprintf(radeon_mem_types_names[i], "ttm_dma_page_pool");
		radeon_mem_types_list[i].name = radeon_mem_types_names[i];
		radeon_mem_types_list[i].show = &ttm_dma_page_alloc_debugfs;
		radeon_mem_types_list[i].driver_features = 0;
		radeon_mem_types_list[i++].data = NULL;
	}
#endif
	return radeon_debugfs_add_files(rdev, radeon_mem_types_list, i);
890 891 892 893

#endif
	return 0;
}