radeon_gart.c 32.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
/*
 * Copyright 2008 Advanced Micro Devices, Inc.
 * Copyright 2008 Red Hat Inc.
 * Copyright 2009 Jerome Glisse.
 *
 * 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, sublicense,
 * 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 above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * 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 NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) 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.
 *
 * Authors: Dave Airlie
 *          Alex Deucher
 *          Jerome Glisse
 */
28 29
#include <drm/drmP.h>
#include <drm/radeon_drm.h>
30 31 32
#include "radeon.h"
#include "radeon_reg.h"

33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
/*
 * GART
 * The GART (Graphics Aperture Remapping Table) is an aperture
 * in the GPU's address space.  System pages can be mapped into
 * the aperture and look like contiguous pages from the GPU's
 * perspective.  A page table maps the pages in the aperture
 * to the actual backing pages in system memory.
 *
 * Radeon GPUs support both an internal GART, as described above,
 * and AGP.  AGP works similarly, but the GART table is configured
 * and maintained by the northbridge rather than the driver.
 * Radeon hw has a separate AGP aperture that is programmed to
 * point to the AGP aperture provided by the northbridge and the
 * requests are passed through to the northbridge aperture.
 * Both AGP and internal GART can be used at the same time, however
 * that is not currently supported by the driver.
 *
 * This file handles the common internal GART management.
 */

53 54 55
/*
 * Common GART table functions.
 */
56 57 58 59 60 61 62 63 64 65
/**
 * radeon_gart_table_ram_alloc - allocate system ram for gart page table
 *
 * @rdev: radeon_device pointer
 *
 * Allocate system memory for GART page table
 * (r1xx-r3xx, non-pcie r4xx, rs400).  These asics require the
 * gart table to be in system memory.
 * Returns 0 for success, -ENOMEM for failure.
 */
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
int radeon_gart_table_ram_alloc(struct radeon_device *rdev)
{
	void *ptr;

	ptr = pci_alloc_consistent(rdev->pdev, rdev->gart.table_size,
				   &rdev->gart.table_addr);
	if (ptr == NULL) {
		return -ENOMEM;
	}
#ifdef CONFIG_X86
	if (rdev->family == CHIP_RS400 || rdev->family == CHIP_RS480 ||
	    rdev->family == CHIP_RS690 || rdev->family == CHIP_RS740) {
		set_memory_uc((unsigned long)ptr,
			      rdev->gart.table_size >> PAGE_SHIFT);
	}
#endif
82 83
	rdev->gart.ptr = ptr;
	memset((void *)rdev->gart.ptr, 0, rdev->gart.table_size);
84 85 86
	return 0;
}

87 88 89 90 91 92 93 94 95
/**
 * radeon_gart_table_ram_free - free system ram for gart page table
 *
 * @rdev: radeon_device pointer
 *
 * Free system memory for GART page table
 * (r1xx-r3xx, non-pcie r4xx, rs400).  These asics require the
 * gart table to be in system memory.
 */
96 97
void radeon_gart_table_ram_free(struct radeon_device *rdev)
{
98
	if (rdev->gart.ptr == NULL) {
99 100 101 102 103
		return;
	}
#ifdef CONFIG_X86
	if (rdev->family == CHIP_RS400 || rdev->family == CHIP_RS480 ||
	    rdev->family == CHIP_RS690 || rdev->family == CHIP_RS740) {
104
		set_memory_wb((unsigned long)rdev->gart.ptr,
105 106 107 108
			      rdev->gart.table_size >> PAGE_SHIFT);
	}
#endif
	pci_free_consistent(rdev->pdev, rdev->gart.table_size,
109
			    (void *)rdev->gart.ptr,
110
			    rdev->gart.table_addr);
111
	rdev->gart.ptr = NULL;
112 113 114
	rdev->gart.table_addr = 0;
}

115 116 117 118 119 120 121 122 123 124
/**
 * radeon_gart_table_vram_alloc - allocate vram for gart page table
 *
 * @rdev: radeon_device pointer
 *
 * Allocate video memory for GART page table
 * (pcie r4xx, r5xx+).  These asics require the
 * gart table to be in video memory.
 * Returns 0 for success, error for failure.
 */
125 126 127 128
int radeon_gart_table_vram_alloc(struct radeon_device *rdev)
{
	int r;

129
	if (rdev->gart.robj == NULL) {
130
		r = radeon_bo_create(rdev, rdev->gart.table_size,
131
				     PAGE_SIZE, true, RADEON_GEM_DOMAIN_VRAM,
132
				     NULL, &rdev->gart.robj);
133 134 135 136
		if (r) {
			return r;
		}
	}
137 138 139
	return 0;
}

140 141 142 143 144 145 146 147 148 149
/**
 * radeon_gart_table_vram_pin - pin gart page table in vram
 *
 * @rdev: radeon_device pointer
 *
 * Pin the GART page table in vram so it will not be moved
 * by the memory manager (pcie r4xx, r5xx+).  These asics require the
 * gart table to be in video memory.
 * Returns 0 for success, error for failure.
 */
150 151 152 153 154
int radeon_gart_table_vram_pin(struct radeon_device *rdev)
{
	uint64_t gpu_addr;
	int r;

155
	r = radeon_bo_reserve(rdev->gart.robj, false);
156
	if (unlikely(r != 0))
157
		return r;
158
	r = radeon_bo_pin(rdev->gart.robj,
159
				RADEON_GEM_DOMAIN_VRAM, &gpu_addr);
160
	if (r) {
161
		radeon_bo_unreserve(rdev->gart.robj);
162 163
		return r;
	}
164
	r = radeon_bo_kmap(rdev->gart.robj, &rdev->gart.ptr);
165
	if (r)
166 167
		radeon_bo_unpin(rdev->gart.robj);
	radeon_bo_unreserve(rdev->gart.robj);
168
	rdev->gart.table_addr = gpu_addr;
169
	return r;
170 171
}

172 173 174 175 176 177 178 179
/**
 * radeon_gart_table_vram_unpin - unpin gart page table in vram
 *
 * @rdev: radeon_device pointer
 *
 * Unpin the GART page table in vram (pcie r4xx, r5xx+).
 * These asics require the gart table to be in video memory.
 */
180
void radeon_gart_table_vram_unpin(struct radeon_device *rdev)
181
{
182 183
	int r;

184
	if (rdev->gart.robj == NULL) {
185 186
		return;
	}
187
	r = radeon_bo_reserve(rdev->gart.robj, false);
188
	if (likely(r == 0)) {
189 190 191 192 193 194 195
		radeon_bo_kunmap(rdev->gart.robj);
		radeon_bo_unpin(rdev->gart.robj);
		radeon_bo_unreserve(rdev->gart.robj);
		rdev->gart.ptr = NULL;
	}
}

196 197 198 199 200 201 202 203 204
/**
 * radeon_gart_table_vram_free - free gart page table vram
 *
 * @rdev: radeon_device pointer
 *
 * Free the video memory used for the GART page table
 * (pcie r4xx, r5xx+).  These asics require the gart table to
 * be in video memory.
 */
205 206 207 208
void radeon_gart_table_vram_free(struct radeon_device *rdev)
{
	if (rdev->gart.robj == NULL) {
		return;
209
	}
210 211
	radeon_gart_table_vram_unpin(rdev);
	radeon_bo_unref(&rdev->gart.robj);
212 213 214 215 216
}

/*
 * Common gart functions.
 */
217 218 219 220 221 222 223 224 225 226
/**
 * radeon_gart_unbind - unbind pages from the gart page table
 *
 * @rdev: radeon_device pointer
 * @offset: offset into the GPU's gart aperture
 * @pages: number of pages to unbind
 *
 * Unbinds the requested pages from the gart page table and
 * replaces them with the dummy page (all asics).
 */
227 228 229 230 231 232
void radeon_gart_unbind(struct radeon_device *rdev, unsigned offset,
			int pages)
{
	unsigned t;
	unsigned p;
	int i, j;
233
	u64 page_base;
234 235

	if (!rdev->gart.ready) {
236
		WARN(1, "trying to unbind memory from uninitialized GART !\n");
237 238
		return;
	}
239 240
	t = offset / RADEON_GPU_PAGE_SIZE;
	p = t / (PAGE_SIZE / RADEON_GPU_PAGE_SIZE);
241 242 243
	for (i = 0; i < pages; i++, p++) {
		if (rdev->gart.pages[p]) {
			rdev->gart.pages[p] = NULL;
244 245
			rdev->gart.pages_addr[p] = rdev->dummy_page.addr;
			page_base = rdev->gart.pages_addr[p];
246
			for (j = 0; j < (PAGE_SIZE / RADEON_GPU_PAGE_SIZE); j++, t++) {
247 248 249
				if (rdev->gart.ptr) {
					radeon_gart_set_page(rdev, t, page_base);
				}
250
				page_base += RADEON_GPU_PAGE_SIZE;
251 252 253 254 255 256 257
			}
		}
	}
	mb();
	radeon_gart_tlb_flush(rdev);
}

258 259 260 261 262 263 264 265 266 267 268 269 270
/**
 * radeon_gart_bind - bind pages into the gart page table
 *
 * @rdev: radeon_device pointer
 * @offset: offset into the GPU's gart aperture
 * @pages: number of pages to bind
 * @pagelist: pages to bind
 * @dma_addr: DMA addresses of pages
 *
 * Binds the requested pages to the gart page table
 * (all asics).
 * Returns 0 for success, -EINVAL for failure.
 */
271
int radeon_gart_bind(struct radeon_device *rdev, unsigned offset,
272
		     int pages, struct page **pagelist, dma_addr_t *dma_addr)
273 274 275 276 277 278 279
{
	unsigned t;
	unsigned p;
	uint64_t page_base;
	int i, j;

	if (!rdev->gart.ready) {
280
		WARN(1, "trying to bind memory to uninitialized GART !\n");
281 282
		return -EINVAL;
	}
283 284
	t = offset / RADEON_GPU_PAGE_SIZE;
	p = t / (PAGE_SIZE / RADEON_GPU_PAGE_SIZE);
285 286

	for (i = 0; i < pages; i++, p++) {
287
		rdev->gart.pages_addr[p] = dma_addr[i];
288
		rdev->gart.pages[p] = pagelist[i];
289 290 291 292 293 294
		if (rdev->gart.ptr) {
			page_base = rdev->gart.pages_addr[p];
			for (j = 0; j < (PAGE_SIZE / RADEON_GPU_PAGE_SIZE); j++, t++) {
				radeon_gart_set_page(rdev, t, page_base);
				page_base += RADEON_GPU_PAGE_SIZE;
			}
295 296 297 298 299 300 301
		}
	}
	mb();
	radeon_gart_tlb_flush(rdev);
	return 0;
}

302 303 304 305 306 307 308 309
/**
 * radeon_gart_restore - bind all pages in the gart page table
 *
 * @rdev: radeon_device pointer
 *
 * Binds all pages in the gart page table (all asics).
 * Used to rebuild the gart table on device startup or resume.
 */
310 311 312 313 314
void radeon_gart_restore(struct radeon_device *rdev)
{
	int i, j, t;
	u64 page_base;

315 316 317
	if (!rdev->gart.ptr) {
		return;
	}
318 319 320 321 322 323 324 325 326 327 328
	for (i = 0, t = 0; i < rdev->gart.num_cpu_pages; i++) {
		page_base = rdev->gart.pages_addr[i];
		for (j = 0; j < (PAGE_SIZE / RADEON_GPU_PAGE_SIZE); j++, t++) {
			radeon_gart_set_page(rdev, t, page_base);
			page_base += RADEON_GPU_PAGE_SIZE;
		}
	}
	mb();
	radeon_gart_tlb_flush(rdev);
}

329 330 331 332 333 334 335 336
/**
 * radeon_gart_init - init the driver info for managing the gart
 *
 * @rdev: radeon_device pointer
 *
 * Allocate the dummy page and init the gart driver info (all asics).
 * Returns 0 for success, error for failure.
 */
337 338
int radeon_gart_init(struct radeon_device *rdev)
{
339 340
	int r, i;

341 342 343
	if (rdev->gart.pages) {
		return 0;
	}
344 345
	/* We need PAGE_SIZE >= RADEON_GPU_PAGE_SIZE */
	if (PAGE_SIZE < RADEON_GPU_PAGE_SIZE) {
346 347 348
		DRM_ERROR("Page size is smaller than GPU page size!\n");
		return -EINVAL;
	}
349 350 351
	r = radeon_dummy_page_init(rdev);
	if (r)
		return r;
352 353
	/* Compute table size */
	rdev->gart.num_cpu_pages = rdev->mc.gtt_size / PAGE_SIZE;
354
	rdev->gart.num_gpu_pages = rdev->mc.gtt_size / RADEON_GPU_PAGE_SIZE;
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369
	DRM_INFO("GART: num cpu pages %u, num gpu pages %u\n",
		 rdev->gart.num_cpu_pages, rdev->gart.num_gpu_pages);
	/* Allocate pages table */
	rdev->gart.pages = kzalloc(sizeof(void *) * rdev->gart.num_cpu_pages,
				   GFP_KERNEL);
	if (rdev->gart.pages == NULL) {
		radeon_gart_fini(rdev);
		return -ENOMEM;
	}
	rdev->gart.pages_addr = kzalloc(sizeof(dma_addr_t) *
					rdev->gart.num_cpu_pages, GFP_KERNEL);
	if (rdev->gart.pages_addr == NULL) {
		radeon_gart_fini(rdev);
		return -ENOMEM;
	}
370 371 372 373
	/* set GART entry to point to the dummy page by default */
	for (i = 0; i < rdev->gart.num_cpu_pages; i++) {
		rdev->gart.pages_addr[i] = rdev->dummy_page.addr;
	}
374 375 376
	return 0;
}

377 378 379 380 381 382 383
/**
 * radeon_gart_fini - tear down the driver info for managing the gart
 *
 * @rdev: radeon_device pointer
 *
 * Tear down the gart driver info and free the dummy page (all asics).
 */
384 385 386 387 388 389 390 391 392 393 394
void radeon_gart_fini(struct radeon_device *rdev)
{
	if (rdev->gart.pages && rdev->gart.pages_addr && rdev->gart.ready) {
		/* unbind pages */
		radeon_gart_unbind(rdev, 0, rdev->gart.num_cpu_pages);
	}
	rdev->gart.ready = false;
	kfree(rdev->gart.pages);
	kfree(rdev->gart.pages_addr);
	rdev->gart.pages = NULL;
	rdev->gart.pages_addr = NULL;
395 396

	radeon_dummy_page_fini(rdev);
397
}
398

399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
/*
 * GPUVM
 * GPUVM is similar to the legacy gart on older asics, however
 * rather than there being a single global gart table
 * for the entire GPU, there are multiple VM page tables active
 * at any given time.  The VM page tables can contain a mix
 * vram pages and system memory pages and system memory pages
 * can be mapped as snooped (cached system pages) or unsnooped
 * (uncached system pages).
 * Each VM has an ID associated with it and there is a page table
 * associated with each VMID.  When execting a command buffer,
 * the kernel tells the the ring what VMID to use for that command
 * buffer.  VMIDs are allocated dynamically as commands are submitted.
 * The userspace drivers maintain their own address space and the kernel
 * sets up their pages tables accordingly when they submit their
 * command buffers and a VMID is assigned.
 * Cayman/Trinity support up to 8 active VMs at any given time;
 * SI supports 16.
 */

419 420 421 422 423
/*
 * vm helpers
 *
 * TODO bind a default page at vm initialization for default address
 */
424

425 426 427 428 429 430 431 432 433 434 435 436
/**
 * radeon_vm_num_pde - return the number of page directory entries
 *
 * @rdev: radeon_device pointer
 *
 * Calculate the number of page directory entries (cayman+).
 */
static unsigned radeon_vm_num_pdes(struct radeon_device *rdev)
{
	return rdev->vm_manager.max_pfn >> RADEON_VM_BLOCK_SIZE;
}

437 438 439 440 441 442 443 444 445
/**
 * radeon_vm_directory_size - returns the size of the page directory in bytes
 *
 * @rdev: radeon_device pointer
 *
 * Calculate the size of the page directory in bytes (cayman+).
 */
static unsigned radeon_vm_directory_size(struct radeon_device *rdev)
{
446
	return RADEON_GPU_PAGE_ALIGN(radeon_vm_num_pdes(rdev) * 8);
447 448
}

449 450 451 452 453 454 455 456
/**
 * radeon_vm_manager_init - init the vm manager
 *
 * @rdev: radeon_device pointer
 *
 * Init the vm manager (cayman+).
 * Returns 0 for success, error for failure.
 */
457 458
int radeon_vm_manager_init(struct radeon_device *rdev)
{
459 460
	struct radeon_vm *vm;
	struct radeon_bo_va *bo_va;
461
	int r;
462
	unsigned size;
463

464
	if (!rdev->vm_manager.enabled) {
D
Dave Airlie 已提交
465
		/* allocate enough for 2 full VM pts */
466 467
		size = radeon_vm_directory_size(rdev);
		size += rdev->vm_manager.max_pfn * 8;
468
		size *= 2;
469
		r = radeon_sa_bo_manager_init(rdev, &rdev->vm_manager.sa_manager,
470
					      RADEON_GPU_PAGE_ALIGN(size),
471 472 473 474 475 476
					      RADEON_GEM_DOMAIN_VRAM);
		if (r) {
			dev_err(rdev->dev, "failed to allocate vm bo (%dKB)\n",
				(rdev->vm_manager.max_pfn * 8) >> 10);
			return r;
		}
477

478
		r = radeon_asic_vm_init(rdev);
479 480
		if (r)
			return r;
481

482 483 484 485 486
		rdev->vm_manager.enabled = true;

		r = radeon_sa_bo_manager_start(rdev, &rdev->vm_manager.sa_manager);
		if (r)
			return r;
487
	}
488

489 490
	/* restore page table */
	list_for_each_entry(vm, &rdev->vm_manager.lru_vm, list) {
491
		if (vm->page_directory == NULL)
492
			continue;
493

494 495 496 497 498
		list_for_each_entry(bo_va, &vm->va, vm_list) {
			bo_va->valid = false;
		}
	}
	return 0;
499 500
}

501
/**
502
 * radeon_vm_free_pt - free the page table for a specific vm
503 504 505 506
 *
 * @rdev: radeon_device pointer
 * @vm: vm to unbind
 *
507 508 509
 * Free the page table of a specific vm (cayman+).
 *
 * Global and local mutex must be lock!
510
 */
511
static void radeon_vm_free_pt(struct radeon_device *rdev,
512 513 514
				    struct radeon_vm *vm)
{
	struct radeon_bo_va *bo_va;
515
	int i;
516

517
	if (!vm->page_directory)
518 519 520
		return;

	list_del_init(&vm->list);
521
	radeon_sa_bo_free(rdev, &vm->page_directory, vm->fence);
522 523 524 525

	list_for_each_entry(bo_va, &vm->va, vm_list) {
		bo_va->valid = false;
	}
526 527 528 529 530 531 532 533

	if (vm->page_tables == NULL)
		return;

	for (i = 0; i < radeon_vm_num_pdes(rdev); i++)
		radeon_sa_bo_free(rdev, &vm->page_tables[i], vm->fence);

	kfree(vm->page_tables);
534 535
}

536 537 538 539 540 541 542
/**
 * radeon_vm_manager_fini - tear down the vm manager
 *
 * @rdev: radeon_device pointer
 *
 * Tear down the VM manager (cayman+).
 */
543 544 545
void radeon_vm_manager_fini(struct radeon_device *rdev)
{
	struct radeon_vm *vm, *tmp;
546
	int i;
547

548 549 550
	if (!rdev->vm_manager.enabled)
		return;

551
	mutex_lock(&rdev->vm_manager.lock);
552
	/* free all allocated page tables */
553
	list_for_each_entry_safe(vm, tmp, &rdev->vm_manager.lru_vm, list) {
554 555 556
		mutex_lock(&vm->mutex);
		radeon_vm_free_pt(rdev, vm);
		mutex_unlock(&vm->mutex);
557
	}
558 559 560
	for (i = 0; i < RADEON_NUM_VM; ++i) {
		radeon_fence_unref(&rdev->vm_manager.active[i]);
	}
561
	radeon_asic_vm_fini(rdev);
562
	mutex_unlock(&rdev->vm_manager.lock);
563 564 565 566

	radeon_sa_bo_manager_suspend(rdev, &rdev->vm_manager.sa_manager);
	radeon_sa_bo_manager_fini(rdev, &rdev->vm_manager.sa_manager);
	rdev->vm_manager.enabled = false;
567 568
}

569 570 571 572 573 574 575 576 577 578 579
/**
 * radeon_vm_evict - evict page table to make room for new one
 *
 * @rdev: radeon_device pointer
 * @vm: VM we want to allocate something for
 *
 * Evict a VM from the lru, making sure that it isn't @vm. (cayman+).
 * Returns 0 for success, -ENOMEM for failure.
 *
 * Global and local mutex must be locked!
 */
A
Alex Deucher 已提交
580
static int radeon_vm_evict(struct radeon_device *rdev, struct radeon_vm *vm)
581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597
{
	struct radeon_vm *vm_evict;

	if (list_empty(&rdev->vm_manager.lru_vm))
		return -ENOMEM;

	vm_evict = list_first_entry(&rdev->vm_manager.lru_vm,
				    struct radeon_vm, list);
	if (vm_evict == vm)
		return -ENOMEM;

	mutex_lock(&vm_evict->mutex);
	radeon_vm_free_pt(rdev, vm_evict);
	mutex_unlock(&vm_evict->mutex);
	return 0;
}

598
/**
599
 * radeon_vm_alloc_pt - allocates a page table for a VM
600 601 602 603
 *
 * @rdev: radeon_device pointer
 * @vm: vm to bind
 *
604
 * Allocate a page table for the requested vm (cayman+).
605
 * Returns 0 for success, error for failure.
606 607
 *
 * Global and local mutex must be locked!
608
 */
609
int radeon_vm_alloc_pt(struct radeon_device *rdev, struct radeon_vm *vm)
610
{
611
	unsigned pd_size, pts_size;
612
	u64 *pd_addr;
613
	int r;
614 615 616 617 618

	if (vm == NULL) {
		return -EINVAL;
	}

619
	if (vm->page_directory != NULL) {
620 621 622 623
		return 0;
	}

retry:
624 625 626 627
	pd_size = RADEON_GPU_PAGE_ALIGN(radeon_vm_directory_size(rdev));
	r = radeon_sa_bo_new(rdev, &rdev->vm_manager.sa_manager,
			     &vm->page_directory, pd_size,
			     RADEON_GPU_PAGE_SIZE, false);
628
	if (r == -ENOMEM) {
629 630
		r = radeon_vm_evict(rdev, vm);
		if (r)
631 632
			return r;
		goto retry;
633 634 635

	} else if (r) {
		return r;
636 637
	}

638 639 640 641 642 643 644 645 646 647 648 649 650 651
	vm->pd_gpu_addr = radeon_sa_bo_gpu_addr(vm->page_directory);

	/* Initially clear the page directory */
	pd_addr = radeon_sa_bo_cpu_addr(vm->page_directory);
	memset(pd_addr, 0, pd_size);

	pts_size = radeon_vm_num_pdes(rdev) * sizeof(struct radeon_sa_bo *);
	vm->page_tables = kzalloc(pts_size, GFP_KERNEL);

	if (vm->page_tables == NULL) {
		DRM_ERROR("Cannot allocate memory for page table array\n");
		radeon_sa_bo_free(rdev, &vm->page_directory, vm->fence);
		return -ENOMEM;
	}
652

653
	return 0;
654 655
}

656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671
/**
 * radeon_vm_add_to_lru - add VMs page table to LRU list
 *
 * @rdev: radeon_device pointer
 * @vm: vm to add to LRU
 *
 * Add the allocated page table to the LRU list (cayman+).
 *
 * Global mutex must be locked!
 */
void radeon_vm_add_to_lru(struct radeon_device *rdev, struct radeon_vm *vm)
{
	list_del_init(&vm->list);
	list_add_tail(&vm->list, &rdev->vm_manager.lru_vm);
}

672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710
/**
 * radeon_vm_grab_id - allocate the next free VMID
 *
 * @rdev: radeon_device pointer
 * @vm: vm to allocate id for
 * @ring: ring we want to submit job to
 *
 * Allocate an id for the vm (cayman+).
 * Returns the fence we need to sync to (if any).
 *
 * Global and local mutex must be locked!
 */
struct radeon_fence *radeon_vm_grab_id(struct radeon_device *rdev,
				       struct radeon_vm *vm, int ring)
{
	struct radeon_fence *best[RADEON_NUM_RINGS] = {};
	unsigned choices[2] = {};
	unsigned i;

	/* check if the id is still valid */
	if (vm->fence && vm->fence == rdev->vm_manager.active[vm->id])
		return NULL;

	/* we definately need to flush */
	radeon_fence_unref(&vm->last_flush);

	/* skip over VMID 0, since it is the system VM */
	for (i = 1; i < rdev->vm_manager.nvm; ++i) {
		struct radeon_fence *fence = rdev->vm_manager.active[i];

		if (fence == NULL) {
			/* found a free one */
			vm->id = i;
			return NULL;
		}

		if (radeon_fence_is_earlier(fence, best[fence->ring])) {
			best[fence->ring] = fence;
			choices[fence->ring == ring ? 0 : 1] = i;
711 712 713
		}
	}

714 715 716 717 718
	for (i = 0; i < 2; ++i) {
		if (choices[i]) {
			vm->id = choices[i];
			return rdev->vm_manager.active[choices[i]];
		}
719 720
	}

721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746
	/* should never happen */
	BUG();
	return NULL;
}

/**
 * radeon_vm_fence - remember fence for vm
 *
 * @rdev: radeon_device pointer
 * @vm: vm we want to fence
 * @fence: fence to remember
 *
 * Fence the vm (cayman+).
 * Set the fence used to protect page table and id.
 *
 * Global and local mutex must be locked!
 */
void radeon_vm_fence(struct radeon_device *rdev,
		     struct radeon_vm *vm,
		     struct radeon_fence *fence)
{
	radeon_fence_unref(&rdev->vm_manager.active[vm->id]);
	rdev->vm_manager.active[vm->id] = radeon_fence_ref(fence);

	radeon_fence_unref(&vm->fence);
	vm->fence = radeon_fence_ref(fence);
747 748
}

749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769
/**
 * radeon_vm_bo_find - find the bo_va for a specific vm & bo
 *
 * @vm: requested vm
 * @bo: requested buffer object
 *
 * Find @bo inside the requested vm (cayman+).
 * Search inside the @bos vm list for the requested vm
 * Returns the found bo_va or NULL if none is found
 *
 * Object has to be reserved!
 */
struct radeon_bo_va *radeon_vm_bo_find(struct radeon_vm *vm,
				       struct radeon_bo *bo)
{
	struct radeon_bo_va *bo_va;

	list_for_each_entry(bo_va, &bo->va, bo_list) {
		if (bo_va->vm == vm) {
			return bo_va;
		}
770
	}
771
	return NULL;
772 773
}

774 775 776 777 778 779 780 781
/**
 * radeon_vm_bo_add - add a bo to a specific vm
 *
 * @rdev: radeon_device pointer
 * @vm: requested vm
 * @bo: radeon buffer object
 *
 * Add @bo into the requested vm (cayman+).
782 783
 * Add @bo to the list of bos associated with the vm
 * Returns newly added bo_va or NULL for failure
784 785
 *
 * Object has to be reserved!
786
 */
787 788 789
struct radeon_bo_va *radeon_vm_bo_add(struct radeon_device *rdev,
				      struct radeon_vm *vm,
				      struct radeon_bo *bo)
790
{
791
	struct radeon_bo_va *bo_va;
792 793 794

	bo_va = kzalloc(sizeof(struct radeon_bo_va), GFP_KERNEL);
	if (bo_va == NULL) {
795
		return NULL;
796 797 798
	}
	bo_va->vm = vm;
	bo_va->bo = bo;
799 800 801
	bo_va->soffset = 0;
	bo_va->eoffset = 0;
	bo_va->flags = 0;
802
	bo_va->valid = false;
803
	bo_va->ref_count = 1;
804 805 806
	INIT_LIST_HEAD(&bo_va->bo_list);
	INIT_LIST_HEAD(&bo_va->vm_list);

807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856
	mutex_lock(&vm->mutex);
	list_add(&bo_va->vm_list, &vm->va);
	list_add_tail(&bo_va->bo_list, &bo->va);
	mutex_unlock(&vm->mutex);

	return bo_va;
}

/**
 * radeon_vm_bo_set_addr - set bos virtual address inside a vm
 *
 * @rdev: radeon_device pointer
 * @bo_va: bo_va to store the address
 * @soffset: requested offset of the buffer in the VM address space
 * @flags: attributes of pages (read/write/valid/etc.)
 *
 * Set offset of @bo_va (cayman+).
 * Validate and set the offset requested within the vm address space.
 * Returns 0 for success, error for failure.
 *
 * Object has to be reserved!
 */
int radeon_vm_bo_set_addr(struct radeon_device *rdev,
			  struct radeon_bo_va *bo_va,
			  uint64_t soffset,
			  uint32_t flags)
{
	uint64_t size = radeon_bo_size(bo_va->bo);
	uint64_t eoffset, last_offset = 0;
	struct radeon_vm *vm = bo_va->vm;
	struct radeon_bo_va *tmp;
	struct list_head *head;
	unsigned last_pfn;

	if (soffset) {
		/* make sure object fit at this offset */
		eoffset = soffset + size;
		if (soffset >= eoffset) {
			return -EINVAL;
		}

		last_pfn = eoffset / RADEON_GPU_PAGE_SIZE;
		if (last_pfn > rdev->vm_manager.max_pfn) {
			dev_err(rdev->dev, "va above limit (0x%08X > 0x%08X)\n",
				last_pfn, rdev->vm_manager.max_pfn);
			return -EINVAL;
		}

	} else {
		eoffset = last_pfn = 0;
857 858 859 860 861 862
	}

	mutex_lock(&vm->mutex);
	head = &vm->va;
	last_offset = 0;
	list_for_each_entry(tmp, &vm->va, vm_list) {
863 864 865 866 867 868
		if (bo_va == tmp) {
			/* skip over currently modified bo */
			continue;
		}

		if (soffset >= last_offset && eoffset <= tmp->soffset) {
869 870 871
			/* bo can be added before this one */
			break;
		}
872
		if (eoffset > tmp->soffset && soffset < tmp->eoffset) {
873 874
			/* bo and tmp overlap, invalid offset */
			dev_err(rdev->dev, "bo %p va 0x%08X conflict with (bo %p 0x%08X 0x%08X)\n",
875
				bo_va->bo, (unsigned)bo_va->soffset, tmp->bo,
876 877 878 879 880 881 882
				(unsigned)tmp->soffset, (unsigned)tmp->eoffset);
			mutex_unlock(&vm->mutex);
			return -EINVAL;
		}
		last_offset = tmp->eoffset;
		head = &tmp->vm_list;
	}
883 884 885 886 887 888 889

	bo_va->soffset = soffset;
	bo_va->eoffset = eoffset;
	bo_va->flags = flags;
	bo_va->valid = false;
	list_move(&bo_va->vm_list, head);

890 891 892 893
	mutex_unlock(&vm->mutex);
	return 0;
}

894
/**
895
 * radeon_vm_map_gart - get the physical address of a gart page
896 897
 *
 * @rdev: radeon_device pointer
898
 * @addr: the unmapped addr
899 900 901 902 903
 *
 * Look up the physical address of the page that the pte resolves
 * to (cayman+).
 * Returns the physical address of the page.
 */
904
uint64_t radeon_vm_map_gart(struct radeon_device *rdev, uint64_t addr)
905
{
906 907 908 909 910 911 912 913 914
	uint64_t result;

	/* page table offset */
	result = rdev->gart.pages_addr[addr >> PAGE_SHIFT];

	/* in case cpu page size != gpu page size*/
	result |= addr & (~PAGE_MASK);

	return result;
915 916
}

917 918 919 920 921 922 923 924 925 926 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 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038
/**
 * radeon_vm_update_pdes - make sure that page directory is valid
 *
 * @rdev: radeon_device pointer
 * @vm: requested vm
 * @start: start of GPU address range
 * @end: end of GPU address range
 *
 * Allocates new page tables if necessary
 * and updates the page directory (cayman+).
 * Returns 0 for success, error for failure.
 *
 * Global and local mutex must be locked!
 */
static int radeon_vm_update_pdes(struct radeon_device *rdev,
				 struct radeon_vm *vm,
				 uint64_t start, uint64_t end)
{
	static const uint32_t incr = RADEON_VM_PTE_COUNT * 8;

	uint64_t last_pde = ~0, last_pt = ~0;
	unsigned count = 0;
	uint64_t pt_idx;
	int r;

	start = (start / RADEON_GPU_PAGE_SIZE) >> RADEON_VM_BLOCK_SIZE;
	end = (end / RADEON_GPU_PAGE_SIZE) >> RADEON_VM_BLOCK_SIZE;

	/* walk over the address space and update the page directory */
	for (pt_idx = start; pt_idx <= end; ++pt_idx) {
		uint64_t pde, pt;

		if (vm->page_tables[pt_idx])
			continue;

retry:
		r = radeon_sa_bo_new(rdev, &rdev->vm_manager.sa_manager,
				     &vm->page_tables[pt_idx],
				     RADEON_VM_PTE_COUNT * 8,
				     RADEON_GPU_PAGE_SIZE, false);

		if (r == -ENOMEM) {
			r = radeon_vm_evict(rdev, vm);
			if (r)
				return r;
			goto retry;
		} else if (r) {
			return r;
		}

		pde = vm->pd_gpu_addr + pt_idx * 8;

		pt = radeon_sa_bo_gpu_addr(vm->page_tables[pt_idx]);

		if (((last_pde + 8 * count) != pde) ||
		    ((last_pt + incr * count) != pt)) {

			if (count) {
				radeon_asic_vm_set_page(rdev, last_pde,
							last_pt, count, incr,
							RADEON_VM_PAGE_VALID);
			}

			count = 1;
			last_pde = pde;
			last_pt = pt;
		} else {
			++count;
		}
	}

	if (count) {
		radeon_asic_vm_set_page(rdev, last_pde, last_pt, count,
					incr, RADEON_VM_PAGE_VALID);

	}

	return 0;
}

/**
 * radeon_vm_update_ptes - make sure that page tables are valid
 *
 * @rdev: radeon_device pointer
 * @vm: requested vm
 * @start: start of GPU address range
 * @end: end of GPU address range
 * @dst: destination address to map to
 * @flags: mapping flags
 *
 * Update the page tables in the range @start - @end (cayman+).
 *
 * Global and local mutex must be locked!
 */
static void radeon_vm_update_ptes(struct radeon_device *rdev,
				  struct radeon_vm *vm,
				  uint64_t start, uint64_t end,
				  uint64_t dst, uint32_t flags)
{
	static const uint64_t mask = RADEON_VM_PTE_COUNT - 1;

	uint64_t last_pte = ~0, last_dst = ~0;
	unsigned count = 0;
	uint64_t addr;

	start = start / RADEON_GPU_PAGE_SIZE;
	end = end / RADEON_GPU_PAGE_SIZE;

	/* walk over the address space and update the page tables */
	for (addr = start; addr < end; ) {
		uint64_t pt_idx = addr >> RADEON_VM_BLOCK_SIZE;
		unsigned nptes;
		uint64_t pte;

		if ((addr & ~mask) == (end & ~mask))
			nptes = end - addr;
		else
			nptes = RADEON_VM_PTE_COUNT - (addr & mask);

		pte = radeon_sa_bo_gpu_addr(vm->page_tables[pt_idx]);
		pte += (addr & mask) * 8;

1039
		if ((last_pte + 8 * count) != pte) {
1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064

			if (count) {
				radeon_asic_vm_set_page(rdev, last_pte,
							last_dst, count,
							RADEON_GPU_PAGE_SIZE,
							flags);
			}

			count = nptes;
			last_pte = pte;
			last_dst = dst;
		} else {
			count += nptes;
		}

		addr += nptes;
		dst += nptes * RADEON_GPU_PAGE_SIZE;
	}

	if (count) {
		radeon_asic_vm_set_page(rdev, last_pte,	last_dst, count,
					RADEON_GPU_PAGE_SIZE, flags);
	}
}

1065 1066 1067 1068 1069 1070 1071 1072 1073 1074
/**
 * radeon_vm_bo_update_pte - map a bo into the vm page table
 *
 * @rdev: radeon_device pointer
 * @vm: requested vm
 * @bo: radeon buffer object
 * @mem: ttm mem
 *
 * Fill in the page table entries for @bo (cayman+).
 * Returns 0 for success, -EINVAL for failure.
1075 1076
 *
 * Object have to be reserved & global and local mutex must be locked!
1077
 */
1078 1079 1080 1081 1082
int radeon_vm_bo_update_pte(struct radeon_device *rdev,
			    struct radeon_vm *vm,
			    struct radeon_bo *bo,
			    struct ttm_mem_reg *mem)
{
1083 1084 1085
	unsigned ridx = rdev->asic->vm.pt_ring_index;
	struct radeon_ring *ring = &rdev->ring[ridx];
	struct radeon_semaphore *sem = NULL;
1086
	struct radeon_bo_va *bo_va;
1087
	unsigned nptes, npdes, ndw;
1088
	uint64_t addr;
1089
	int r;
1090 1091

	/* nothing to do if vm isn't bound */
1092
	if (vm->page_directory == NULL)
1093
		return 0;
1094

1095
	bo_va = radeon_vm_bo_find(vm, bo);
1096 1097 1098 1099 1100
	if (bo_va == NULL) {
		dev_err(rdev->dev, "bo %p not in vm %p\n", bo, vm);
		return -EINVAL;
	}

1101 1102 1103 1104 1105 1106
	if (!bo_va->soffset) {
		dev_err(rdev->dev, "bo %p don't has a mapping in vm %p\n",
			bo, vm);
		return -EINVAL;
	}

1107
	if ((bo_va->valid && mem) || (!bo_va->valid && mem == NULL))
1108 1109 1110 1111 1112
		return 0;

	bo_va->flags &= ~RADEON_VM_PAGE_VALID;
	bo_va->flags &= ~RADEON_VM_PAGE_SYSTEM;
	if (mem) {
1113
		addr = mem->start << PAGE_SHIFT;
1114 1115 1116 1117 1118 1119
		if (mem->mem_type != TTM_PL_SYSTEM) {
			bo_va->flags |= RADEON_VM_PAGE_VALID;
			bo_va->valid = true;
		}
		if (mem->mem_type == TTM_PL_TT) {
			bo_va->flags |= RADEON_VM_PAGE_SYSTEM;
1120 1121
		} else {
			addr += rdev->vm_manager.vram_base_offset;
1122
		}
1123
	} else {
1124
		addr = 0;
1125
		bo_va->valid = false;
1126
	}
1127 1128 1129 1130 1131 1132 1133 1134 1135

	if (vm->fence && radeon_fence_signaled(vm->fence)) {
		radeon_fence_unref(&vm->fence);
	}

	if (vm->fence && vm->fence->ring != ridx) {
		r = radeon_semaphore_create(rdev, &sem);
		if (r) {
			return r;
1136 1137
		}
	}
1138

1139 1140
	nptes = radeon_bo_ngpu_pages(bo);

1141 1142 1143 1144 1145 1146
	/* assume two extra pdes in case the mapping overlaps the borders */
	npdes = (nptes >> RADEON_VM_BLOCK_SIZE) + 2;

	/* estimate number of dw needed */
	/* semaphore, fence and padding */
	ndw = 32;
1147

1148 1149
	if (RADEON_VM_BLOCK_SIZE > 11)
		/* reserve space for one header for every 2k dwords */
1150
		ndw += (nptes >> 11) * 4;
1151 1152 1153
	else
		/* reserve space for one header for
		    every (1 << BLOCK_SIZE) entries */
1154
		ndw += (nptes >> RADEON_VM_BLOCK_SIZE) * 4;
1155 1156 1157 1158 1159

	/* reserve space for pte addresses */
	ndw += nptes * 2;

	/* reserve space for one header for every 2k dwords */
1160
	ndw += (npdes >> 11) * 4;
1161

1162 1163
	/* reserve space for pde addresses */
	ndw += npdes * 2;
1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174

	r = radeon_ring_lock(rdev, ring, ndw);
	if (r) {
		return r;
	}

	if (sem && radeon_fence_need_sync(vm->fence, ridx)) {
		radeon_semaphore_sync_rings(rdev, sem, vm->fence->ring, ridx);
		radeon_fence_note_sync(vm->fence, ridx);
	}

1175 1176 1177 1178 1179
	r = radeon_vm_update_pdes(rdev, vm, bo_va->soffset, bo_va->eoffset);
	if (r) {
		radeon_ring_unlock_undo(rdev, ring);
		return r;
	}
1180

1181 1182
	radeon_vm_update_ptes(rdev, vm, bo_va->soffset, bo_va->eoffset,
			      addr, bo_va->flags);
1183 1184 1185 1186 1187 1188 1189 1190 1191

	radeon_fence_unref(&vm->fence);
	r = radeon_fence_emit(rdev, &vm->fence, ridx);
	if (r) {
		radeon_ring_unlock_undo(rdev, ring);
		return r;
	}
	radeon_ring_unlock_commit(rdev, ring);
	radeon_semaphore_free(rdev, &sem, vm->fence);
1192
	radeon_fence_unref(&vm->last_flush);
1193

1194 1195 1196
	return 0;
}

1197 1198 1199 1200
/**
 * radeon_vm_bo_rmv - remove a bo to a specific vm
 *
 * @rdev: radeon_device pointer
1201
 * @bo_va: requested bo_va
1202
 *
1203 1204 1205
 * Remove @bo_va->bo from the requested vm (cayman+).
 * Remove @bo_va->bo from the list of bos associated with the bo_va->vm and
 * remove the ptes for @bo_va in the page table.
1206
 * Returns 0 for success.
1207 1208
 *
 * Object have to be reserved!
1209
 */
1210
int radeon_vm_bo_rmv(struct radeon_device *rdev,
1211
		     struct radeon_bo_va *bo_va)
1212
{
1213
	int r;
1214

1215
	mutex_lock(&rdev->vm_manager.lock);
1216 1217
	mutex_lock(&bo_va->vm->mutex);
	r = radeon_vm_bo_update_pte(rdev, bo_va->vm, bo_va->bo, NULL);
1218
	mutex_unlock(&rdev->vm_manager.lock);
1219
	list_del(&bo_va->vm_list);
1220
	mutex_unlock(&bo_va->vm->mutex);
1221
	list_del(&bo_va->bo_list);
1222 1223

	kfree(bo_va);
1224
	return r;
1225 1226
}

1227 1228 1229 1230 1231 1232 1233 1234 1235
/**
 * radeon_vm_bo_invalidate - mark the bo as invalid
 *
 * @rdev: radeon_device pointer
 * @vm: requested vm
 * @bo: radeon buffer object
 *
 * Mark @bo as invalid (cayman+).
 */
1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246
void radeon_vm_bo_invalidate(struct radeon_device *rdev,
			     struct radeon_bo *bo)
{
	struct radeon_bo_va *bo_va;

	BUG_ON(!atomic_read(&bo->tbo.reserved));
	list_for_each_entry(bo_va, &bo->va, bo_list) {
		bo_va->valid = false;
	}
}

1247 1248 1249 1250 1251 1252
/**
 * radeon_vm_init - initialize a vm instance
 *
 * @rdev: radeon_device pointer
 * @vm: requested vm
 *
1253
 * Init @vm fields (cayman+).
1254
 */
1255
void radeon_vm_init(struct radeon_device *rdev, struct radeon_vm *vm)
1256
{
1257
	vm->id = 0;
1258 1259 1260 1261 1262 1263
	vm->fence = NULL;
	mutex_init(&vm->mutex);
	INIT_LIST_HEAD(&vm->list);
	INIT_LIST_HEAD(&vm->va);
}

1264
/**
1265
 * radeon_vm_fini - tear down a vm instance
1266 1267 1268 1269 1270 1271 1272
 *
 * @rdev: radeon_device pointer
 * @vm: requested vm
 *
 * Tear down @vm (cayman+).
 * Unbind the VM and remove all bos from the vm bo list
 */
1273 1274 1275 1276 1277
void radeon_vm_fini(struct radeon_device *rdev, struct radeon_vm *vm)
{
	struct radeon_bo_va *bo_va, *tmp;
	int r;

1278
	mutex_lock(&rdev->vm_manager.lock);
1279
	mutex_lock(&vm->mutex);
1280
	radeon_vm_free_pt(rdev, vm);
1281
	mutex_unlock(&rdev->vm_manager.lock);
1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294

	if (!list_empty(&vm->va)) {
		dev_err(rdev->dev, "still active bo inside vm\n");
	}
	list_for_each_entry_safe(bo_va, tmp, &vm->va, vm_list) {
		list_del_init(&bo_va->vm_list);
		r = radeon_bo_reserve(bo_va->bo, false);
		if (!r) {
			list_del_init(&bo_va->bo_list);
			radeon_bo_unreserve(bo_va->bo);
			kfree(bo_va);
		}
	}
1295 1296
	radeon_fence_unref(&vm->fence);
	radeon_fence_unref(&vm->last_flush);
1297 1298
	mutex_unlock(&vm->mutex);
}