1 /*
2  * Copyright 2009 Jerome Glisse.
3  * All Rights Reserved.
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the
7  * "Software"), to deal in the Software without restriction, including
8  * without limitation the rights to use, copy, modify, merge, publish,
9  * distribute, sub license, and/or sell copies of the Software, and to
10  * permit persons to whom the Software is furnished to do so, subject to
11  * the following conditions:
12  *
13  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15  * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
16  * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
17  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
18  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
19  * USE OR OTHER DEALINGS IN THE SOFTWARE.
20  *
21  * The above copyright notice and this permission notice (including the
22  * next paragraph) shall be included in all copies or substantial portions
23  * of the Software.
24  *
25  */
26 /*
27  * Authors:
28  *    Jerome Glisse <glisse@freedesktop.org>
29  *    Thomas Hellstrom <thomas-at-tungstengraphics-dot-com>
30  *    Dave Airlie
31  */
32 #include <ttm/ttm_bo_api.h>
33 #include <ttm/ttm_bo_driver.h>
34 #include <ttm/ttm_placement.h>
35 #include <ttm/ttm_module.h>
36 #include <drm/drmP.h>
37 #include <drm/radeon_drm.h>
38 #include <linux/seq_file.h>
39 #include "radeon_reg.h"
40 #include "radeon.h"
41 
42 #define DRM_FILE_PAGE_OFFSET (0x100000000ULL >> PAGE_SHIFT)
43 
44 static int radeon_ttm_debugfs_init(struct radeon_device *rdev);
45 
46 static struct radeon_device *radeon_get_rdev(struct ttm_bo_device *bdev)
47 {
48 	struct radeon_mman *mman;
49 	struct radeon_device *rdev;
50 
51 	mman = container_of(bdev, struct radeon_mman, bdev);
52 	rdev = container_of(mman, struct radeon_device, mman);
53 	return rdev;
54 }
55 
56 
57 /*
58  * Global memory.
59  */
60 static int radeon_ttm_mem_global_init(struct ttm_global_reference *ref)
61 {
62 	return ttm_mem_global_init(ref->object);
63 }
64 
65 static void radeon_ttm_mem_global_release(struct ttm_global_reference *ref)
66 {
67 	ttm_mem_global_release(ref->object);
68 }
69 
70 static int radeon_ttm_global_init(struct radeon_device *rdev)
71 {
72 	struct ttm_global_reference *global_ref;
73 	int r;
74 
75 	rdev->mman.mem_global_referenced = false;
76 	global_ref = &rdev->mman.mem_global_ref;
77 	global_ref->global_type = TTM_GLOBAL_TTM_MEM;
78 	global_ref->size = sizeof(struct ttm_mem_global);
79 	global_ref->init = &radeon_ttm_mem_global_init;
80 	global_ref->release = &radeon_ttm_mem_global_release;
81 	r = ttm_global_item_ref(global_ref);
82 	if (r != 0) {
83 		DRM_ERROR("Failed setting up TTM memory accounting "
84 			  "subsystem.\n");
85 		return r;
86 	}
87 
88 	rdev->mman.bo_global_ref.mem_glob =
89 		rdev->mman.mem_global_ref.object;
90 	global_ref = &rdev->mman.bo_global_ref.ref;
91 	global_ref->global_type = TTM_GLOBAL_TTM_BO;
92 	global_ref->size = sizeof(struct ttm_bo_global);
93 	global_ref->init = &ttm_bo_global_init;
94 	global_ref->release = &ttm_bo_global_release;
95 	r = ttm_global_item_ref(global_ref);
96 	if (r != 0) {
97 		DRM_ERROR("Failed setting up TTM BO subsystem.\n");
98 		ttm_global_item_unref(&rdev->mman.mem_global_ref);
99 		return r;
100 	}
101 
102 	rdev->mman.mem_global_referenced = true;
103 	return 0;
104 }
105 
106 static void radeon_ttm_global_fini(struct radeon_device *rdev)
107 {
108 	if (rdev->mman.mem_global_referenced) {
109 		ttm_global_item_unref(&rdev->mman.bo_global_ref.ref);
110 		ttm_global_item_unref(&rdev->mman.mem_global_ref);
111 		rdev->mman.mem_global_referenced = false;
112 	}
113 }
114 
115 struct ttm_backend *radeon_ttm_backend_create(struct radeon_device *rdev);
116 
117 static struct ttm_backend*
118 radeon_create_ttm_backend_entry(struct ttm_bo_device *bdev)
119 {
120 	struct radeon_device *rdev;
121 
122 	rdev = radeon_get_rdev(bdev);
123 #if __OS_HAS_AGP
124 	if (rdev->flags & RADEON_IS_AGP) {
125 		return ttm_agp_backend_init(bdev, rdev->ddev->agp->bridge);
126 	} else
127 #endif
128 	{
129 		return radeon_ttm_backend_create(rdev);
130 	}
131 }
132 
133 static int radeon_invalidate_caches(struct ttm_bo_device *bdev, uint32_t flags)
134 {
135 	return 0;
136 }
137 
138 static int radeon_init_mem_type(struct ttm_bo_device *bdev, uint32_t type,
139 				struct ttm_mem_type_manager *man)
140 {
141 	struct radeon_device *rdev;
142 
143 	rdev = radeon_get_rdev(bdev);
144 
145 	switch (type) {
146 	case TTM_PL_SYSTEM:
147 		/* System memory */
148 		man->flags = TTM_MEMTYPE_FLAG_MAPPABLE;
149 		man->available_caching = TTM_PL_MASK_CACHING;
150 		man->default_caching = TTM_PL_FLAG_CACHED;
151 		break;
152 	case TTM_PL_TT:
153 		man->gpu_offset = rdev->mc.gtt_start;
154 		man->available_caching = TTM_PL_MASK_CACHING;
155 		man->default_caching = TTM_PL_FLAG_CACHED;
156 		man->flags = TTM_MEMTYPE_FLAG_MAPPABLE | TTM_MEMTYPE_FLAG_CMA;
157 #if __OS_HAS_AGP
158 		if (rdev->flags & RADEON_IS_AGP) {
159 			if (!(drm_core_has_AGP(rdev->ddev) && rdev->ddev->agp)) {
160 				DRM_ERROR("AGP is not enabled for memory type %u\n",
161 					  (unsigned)type);
162 				return -EINVAL;
163 			}
164 			man->io_offset = rdev->mc.agp_base;
165 			man->io_size = rdev->mc.gtt_size;
166 			man->io_addr = NULL;
167 			if (!rdev->ddev->agp->cant_use_aperture)
168 				man->flags = TTM_MEMTYPE_FLAG_MAPPABLE;
169 			man->available_caching = TTM_PL_FLAG_UNCACHED |
170 						 TTM_PL_FLAG_WC;
171 			man->default_caching = TTM_PL_FLAG_WC;
172 		} else
173 #endif
174 		{
175 			man->io_offset = 0;
176 			man->io_size = 0;
177 			man->io_addr = NULL;
178 		}
179 		break;
180 	case TTM_PL_VRAM:
181 		/* "On-card" video ram */
182 		man->gpu_offset = rdev->mc.vram_start;
183 		man->flags = TTM_MEMTYPE_FLAG_FIXED |
184 			     TTM_MEMTYPE_FLAG_MAPPABLE;
185 		man->available_caching = TTM_PL_FLAG_UNCACHED | TTM_PL_FLAG_WC;
186 		man->default_caching = TTM_PL_FLAG_WC;
187 		man->io_addr = NULL;
188 		man->io_offset = rdev->mc.aper_base;
189 		man->io_size = rdev->mc.aper_size;
190 		break;
191 	default:
192 		DRM_ERROR("Unsupported memory type %u\n", (unsigned)type);
193 		return -EINVAL;
194 	}
195 	return 0;
196 }
197 
198 static void radeon_evict_flags(struct ttm_buffer_object *bo,
199 				struct ttm_placement *placement)
200 {
201 	struct radeon_bo *rbo;
202 	static u32 placements = TTM_PL_MASK_CACHING | TTM_PL_FLAG_SYSTEM;
203 
204 	if (!radeon_ttm_bo_is_radeon_bo(bo)) {
205 		placement->fpfn = 0;
206 		placement->lpfn = 0;
207 		placement->placement = &placements;
208 		placement->busy_placement = &placements;
209 		placement->num_placement = 1;
210 		placement->num_busy_placement = 1;
211 		return;
212 	}
213 	rbo = container_of(bo, struct radeon_bo, tbo);
214 	switch (bo->mem.mem_type) {
215 	case TTM_PL_VRAM:
216 		if (rbo->rdev->cp.ready == false)
217 			radeon_ttm_placement_from_domain(rbo, RADEON_GEM_DOMAIN_CPU);
218 		else
219 			radeon_ttm_placement_from_domain(rbo, RADEON_GEM_DOMAIN_GTT);
220 		break;
221 	case TTM_PL_TT:
222 	default:
223 		radeon_ttm_placement_from_domain(rbo, RADEON_GEM_DOMAIN_CPU);
224 	}
225 	*placement = rbo->placement;
226 }
227 
228 static int radeon_verify_access(struct ttm_buffer_object *bo, struct file *filp)
229 {
230 	return 0;
231 }
232 
233 static void radeon_move_null(struct ttm_buffer_object *bo,
234 			     struct ttm_mem_reg *new_mem)
235 {
236 	struct ttm_mem_reg *old_mem = &bo->mem;
237 
238 	BUG_ON(old_mem->mm_node != NULL);
239 	*old_mem = *new_mem;
240 	new_mem->mm_node = NULL;
241 }
242 
243 static int radeon_move_blit(struct ttm_buffer_object *bo,
244 			bool evict, int no_wait_reserve, bool no_wait_gpu,
245 			struct ttm_mem_reg *new_mem,
246 			struct ttm_mem_reg *old_mem)
247 {
248 	struct radeon_device *rdev;
249 	uint64_t old_start, new_start;
250 	struct radeon_fence *fence;
251 	int r;
252 
253 	rdev = radeon_get_rdev(bo->bdev);
254 	r = radeon_fence_create(rdev, &fence);
255 	if (unlikely(r)) {
256 		return r;
257 	}
258 	old_start = old_mem->mm_node->start << PAGE_SHIFT;
259 	new_start = new_mem->mm_node->start << PAGE_SHIFT;
260 
261 	switch (old_mem->mem_type) {
262 	case TTM_PL_VRAM:
263 		old_start += rdev->mc.vram_start;
264 		break;
265 	case TTM_PL_TT:
266 		old_start += rdev->mc.gtt_start;
267 		break;
268 	default:
269 		DRM_ERROR("Unknown placement %d\n", old_mem->mem_type);
270 		return -EINVAL;
271 	}
272 	switch (new_mem->mem_type) {
273 	case TTM_PL_VRAM:
274 		new_start += rdev->mc.vram_start;
275 		break;
276 	case TTM_PL_TT:
277 		new_start += rdev->mc.gtt_start;
278 		break;
279 	default:
280 		DRM_ERROR("Unknown placement %d\n", old_mem->mem_type);
281 		return -EINVAL;
282 	}
283 	if (!rdev->cp.ready) {
284 		DRM_ERROR("Trying to move memory with CP turned off.\n");
285 		return -EINVAL;
286 	}
287 	r = radeon_copy(rdev, old_start, new_start, new_mem->num_pages, fence);
288 	/* FIXME: handle copy error */
289 	r = ttm_bo_move_accel_cleanup(bo, (void *)fence, NULL,
290 				      evict, no_wait_reserve, no_wait_gpu, new_mem);
291 	radeon_fence_unref(&fence);
292 	return r;
293 }
294 
295 static int radeon_move_vram_ram(struct ttm_buffer_object *bo,
296 				bool evict, bool interruptible,
297 				bool no_wait_reserve, bool no_wait_gpu,
298 				struct ttm_mem_reg *new_mem)
299 {
300 	struct radeon_device *rdev;
301 	struct ttm_mem_reg *old_mem = &bo->mem;
302 	struct ttm_mem_reg tmp_mem;
303 	u32 placements;
304 	struct ttm_placement placement;
305 	int r;
306 
307 	rdev = radeon_get_rdev(bo->bdev);
308 	tmp_mem = *new_mem;
309 	tmp_mem.mm_node = NULL;
310 	placement.fpfn = 0;
311 	placement.lpfn = 0;
312 	placement.num_placement = 1;
313 	placement.placement = &placements;
314 	placement.num_busy_placement = 1;
315 	placement.busy_placement = &placements;
316 	placements = TTM_PL_MASK_CACHING | TTM_PL_FLAG_TT;
317 	r = ttm_bo_mem_space(bo, &placement, &tmp_mem,
318 			     interruptible, no_wait_reserve, no_wait_gpu);
319 	if (unlikely(r)) {
320 		return r;
321 	}
322 
323 	r = ttm_tt_set_placement_caching(bo->ttm, tmp_mem.placement);
324 	if (unlikely(r)) {
325 		goto out_cleanup;
326 	}
327 
328 	r = ttm_tt_bind(bo->ttm, &tmp_mem);
329 	if (unlikely(r)) {
330 		goto out_cleanup;
331 	}
332 	r = radeon_move_blit(bo, true, no_wait_reserve, no_wait_gpu, &tmp_mem, old_mem);
333 	if (unlikely(r)) {
334 		goto out_cleanup;
335 	}
336 	r = ttm_bo_move_ttm(bo, true, no_wait_reserve, no_wait_gpu, new_mem);
337 out_cleanup:
338 	if (tmp_mem.mm_node) {
339 		struct ttm_bo_global *glob = rdev->mman.bdev.glob;
340 
341 		spin_lock(&glob->lru_lock);
342 		drm_mm_put_block(tmp_mem.mm_node);
343 		spin_unlock(&glob->lru_lock);
344 		return r;
345 	}
346 	return r;
347 }
348 
349 static int radeon_move_ram_vram(struct ttm_buffer_object *bo,
350 				bool evict, bool interruptible,
351 				bool no_wait_reserve, bool no_wait_gpu,
352 				struct ttm_mem_reg *new_mem)
353 {
354 	struct radeon_device *rdev;
355 	struct ttm_mem_reg *old_mem = &bo->mem;
356 	struct ttm_mem_reg tmp_mem;
357 	struct ttm_placement placement;
358 	u32 placements;
359 	int r;
360 
361 	rdev = radeon_get_rdev(bo->bdev);
362 	tmp_mem = *new_mem;
363 	tmp_mem.mm_node = NULL;
364 	placement.fpfn = 0;
365 	placement.lpfn = 0;
366 	placement.num_placement = 1;
367 	placement.placement = &placements;
368 	placement.num_busy_placement = 1;
369 	placement.busy_placement = &placements;
370 	placements = TTM_PL_MASK_CACHING | TTM_PL_FLAG_TT;
371 	r = ttm_bo_mem_space(bo, &placement, &tmp_mem, interruptible, no_wait_reserve, no_wait_gpu);
372 	if (unlikely(r)) {
373 		return r;
374 	}
375 	r = ttm_bo_move_ttm(bo, true, no_wait_reserve, no_wait_gpu, &tmp_mem);
376 	if (unlikely(r)) {
377 		goto out_cleanup;
378 	}
379 	r = radeon_move_blit(bo, true, no_wait_reserve, no_wait_gpu, new_mem, old_mem);
380 	if (unlikely(r)) {
381 		goto out_cleanup;
382 	}
383 out_cleanup:
384 	if (tmp_mem.mm_node) {
385 		struct ttm_bo_global *glob = rdev->mman.bdev.glob;
386 
387 		spin_lock(&glob->lru_lock);
388 		drm_mm_put_block(tmp_mem.mm_node);
389 		spin_unlock(&glob->lru_lock);
390 		return r;
391 	}
392 	return r;
393 }
394 
395 static int radeon_bo_move(struct ttm_buffer_object *bo,
396 			bool evict, bool interruptible,
397 			bool no_wait_reserve, bool no_wait_gpu,
398 			struct ttm_mem_reg *new_mem)
399 {
400 	struct radeon_device *rdev;
401 	struct ttm_mem_reg *old_mem = &bo->mem;
402 	int r;
403 
404 	rdev = radeon_get_rdev(bo->bdev);
405 	if (old_mem->mem_type == TTM_PL_SYSTEM && bo->ttm == NULL) {
406 		radeon_move_null(bo, new_mem);
407 		return 0;
408 	}
409 	if ((old_mem->mem_type == TTM_PL_TT &&
410 	     new_mem->mem_type == TTM_PL_SYSTEM) ||
411 	    (old_mem->mem_type == TTM_PL_SYSTEM &&
412 	     new_mem->mem_type == TTM_PL_TT)) {
413 		/* bind is enough */
414 		radeon_move_null(bo, new_mem);
415 		return 0;
416 	}
417 	if (!rdev->cp.ready || rdev->asic->copy == NULL) {
418 		/* use memcpy */
419 		goto memcpy;
420 	}
421 
422 	if (old_mem->mem_type == TTM_PL_VRAM &&
423 	    new_mem->mem_type == TTM_PL_SYSTEM) {
424 		r = radeon_move_vram_ram(bo, evict, interruptible,
425 					no_wait_reserve, no_wait_gpu, new_mem);
426 	} else if (old_mem->mem_type == TTM_PL_SYSTEM &&
427 		   new_mem->mem_type == TTM_PL_VRAM) {
428 		r = radeon_move_ram_vram(bo, evict, interruptible,
429 					    no_wait_reserve, no_wait_gpu, new_mem);
430 	} else {
431 		r = radeon_move_blit(bo, evict, no_wait_reserve, no_wait_gpu, new_mem, old_mem);
432 	}
433 
434 	if (r) {
435 memcpy:
436 		r = ttm_bo_move_memcpy(bo, evict, no_wait_reserve, no_wait_gpu, new_mem);
437 	}
438 	return r;
439 }
440 
441 static int radeon_ttm_io_mem_reserve(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
442 {
443 	struct ttm_mem_type_manager *man = &bdev->man[mem->mem_type];
444 	struct radeon_device *rdev = radeon_get_rdev(bdev);
445 
446 	mem->bus.addr = NULL;
447 	mem->bus.offset = 0;
448 	mem->bus.size = mem->num_pages << PAGE_SHIFT;
449 	mem->bus.base = 0;
450 	mem->bus.is_iomem = false;
451 	if (!(man->flags & TTM_MEMTYPE_FLAG_MAPPABLE))
452 		return -EINVAL;
453 	switch (mem->mem_type) {
454 	case TTM_PL_SYSTEM:
455 		/* system memory */
456 		return 0;
457 	case TTM_PL_TT:
458 #if __OS_HAS_AGP
459 		if (rdev->flags & RADEON_IS_AGP) {
460 			/* RADEON_IS_AGP is set only if AGP is active */
461 			mem->bus.offset = mem->mm_node->start << PAGE_SHIFT;
462 			mem->bus.base = rdev->mc.agp_base;
463 			mem->bus.is_iomem = true;
464 		}
465 #endif
466 		break;
467 	case TTM_PL_VRAM:
468 		mem->bus.offset = mem->mm_node->start << PAGE_SHIFT;
469 		/* check if it's visible */
470 		if ((mem->bus.offset + mem->bus.size) > rdev->mc.visible_vram_size)
471 			return -EINVAL;
472 		mem->bus.base = rdev->mc.aper_base;
473 		mem->bus.is_iomem = true;
474 		break;
475 	default:
476 		return -EINVAL;
477 	}
478 	return 0;
479 }
480 
481 static void radeon_ttm_io_mem_free(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
482 {
483 }
484 
485 static int radeon_sync_obj_wait(void *sync_obj, void *sync_arg,
486 				bool lazy, bool interruptible)
487 {
488 	return radeon_fence_wait((struct radeon_fence *)sync_obj, interruptible);
489 }
490 
491 static int radeon_sync_obj_flush(void *sync_obj, void *sync_arg)
492 {
493 	return 0;
494 }
495 
496 static void radeon_sync_obj_unref(void **sync_obj)
497 {
498 	radeon_fence_unref((struct radeon_fence **)sync_obj);
499 }
500 
501 static void *radeon_sync_obj_ref(void *sync_obj)
502 {
503 	return radeon_fence_ref((struct radeon_fence *)sync_obj);
504 }
505 
506 static bool radeon_sync_obj_signaled(void *sync_obj, void *sync_arg)
507 {
508 	return radeon_fence_signaled((struct radeon_fence *)sync_obj);
509 }
510 
511 static struct ttm_bo_driver radeon_bo_driver = {
512 	.create_ttm_backend_entry = &radeon_create_ttm_backend_entry,
513 	.invalidate_caches = &radeon_invalidate_caches,
514 	.init_mem_type = &radeon_init_mem_type,
515 	.evict_flags = &radeon_evict_flags,
516 	.move = &radeon_bo_move,
517 	.verify_access = &radeon_verify_access,
518 	.sync_obj_signaled = &radeon_sync_obj_signaled,
519 	.sync_obj_wait = &radeon_sync_obj_wait,
520 	.sync_obj_flush = &radeon_sync_obj_flush,
521 	.sync_obj_unref = &radeon_sync_obj_unref,
522 	.sync_obj_ref = &radeon_sync_obj_ref,
523 	.move_notify = &radeon_bo_move_notify,
524 	.fault_reserve_notify = &radeon_bo_fault_reserve_notify,
525 	.io_mem_reserve = &radeon_ttm_io_mem_reserve,
526 	.io_mem_free = &radeon_ttm_io_mem_free,
527 };
528 
529 int radeon_ttm_init(struct radeon_device *rdev)
530 {
531 	int r;
532 
533 	r = radeon_ttm_global_init(rdev);
534 	if (r) {
535 		return r;
536 	}
537 	/* No others user of address space so set it to 0 */
538 	r = ttm_bo_device_init(&rdev->mman.bdev,
539 			       rdev->mman.bo_global_ref.ref.object,
540 			       &radeon_bo_driver, DRM_FILE_PAGE_OFFSET,
541 			       rdev->need_dma32);
542 	if (r) {
543 		DRM_ERROR("failed initializing buffer object driver(%d).\n", r);
544 		return r;
545 	}
546 	rdev->mman.initialized = true;
547 	r = ttm_bo_init_mm(&rdev->mman.bdev, TTM_PL_VRAM,
548 				rdev->mc.real_vram_size >> PAGE_SHIFT);
549 	if (r) {
550 		DRM_ERROR("Failed initializing VRAM heap.\n");
551 		return r;
552 	}
553 	r = radeon_bo_create(rdev, NULL, 256 * 1024, true,
554 				RADEON_GEM_DOMAIN_VRAM,
555 				&rdev->stollen_vga_memory);
556 	if (r) {
557 		return r;
558 	}
559 	r = radeon_bo_reserve(rdev->stollen_vga_memory, false);
560 	if (r)
561 		return r;
562 	r = radeon_bo_pin(rdev->stollen_vga_memory, RADEON_GEM_DOMAIN_VRAM, NULL);
563 	radeon_bo_unreserve(rdev->stollen_vga_memory);
564 	if (r) {
565 		radeon_bo_unref(&rdev->stollen_vga_memory);
566 		return r;
567 	}
568 	DRM_INFO("radeon: %uM of VRAM memory ready\n",
569 		 (unsigned)rdev->mc.real_vram_size / (1024 * 1024));
570 	r = ttm_bo_init_mm(&rdev->mman.bdev, TTM_PL_TT,
571 				rdev->mc.gtt_size >> PAGE_SHIFT);
572 	if (r) {
573 		DRM_ERROR("Failed initializing GTT heap.\n");
574 		return r;
575 	}
576 	DRM_INFO("radeon: %uM of GTT memory ready.\n",
577 		 (unsigned)(rdev->mc.gtt_size / (1024 * 1024)));
578 	if (unlikely(rdev->mman.bdev.dev_mapping == NULL)) {
579 		rdev->mman.bdev.dev_mapping = rdev->ddev->dev_mapping;
580 	}
581 
582 	r = radeon_ttm_debugfs_init(rdev);
583 	if (r) {
584 		DRM_ERROR("Failed to init debugfs\n");
585 		return r;
586 	}
587 	return 0;
588 }
589 
590 void radeon_ttm_fini(struct radeon_device *rdev)
591 {
592 	int r;
593 
594 	if (!rdev->mman.initialized)
595 		return;
596 	if (rdev->stollen_vga_memory) {
597 		r = radeon_bo_reserve(rdev->stollen_vga_memory, false);
598 		if (r == 0) {
599 			radeon_bo_unpin(rdev->stollen_vga_memory);
600 			radeon_bo_unreserve(rdev->stollen_vga_memory);
601 		}
602 		radeon_bo_unref(&rdev->stollen_vga_memory);
603 	}
604 	ttm_bo_clean_mm(&rdev->mman.bdev, TTM_PL_VRAM);
605 	ttm_bo_clean_mm(&rdev->mman.bdev, TTM_PL_TT);
606 	ttm_bo_device_release(&rdev->mman.bdev);
607 	radeon_gart_fini(rdev);
608 	radeon_ttm_global_fini(rdev);
609 	rdev->mman.initialized = false;
610 	DRM_INFO("radeon: ttm finalized\n");
611 }
612 
613 static struct vm_operations_struct radeon_ttm_vm_ops;
614 static const struct vm_operations_struct *ttm_vm_ops = NULL;
615 
616 static int radeon_ttm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
617 {
618 	struct ttm_buffer_object *bo;
619 	int r;
620 
621 	bo = (struct ttm_buffer_object *)vma->vm_private_data;
622 	if (bo == NULL) {
623 		return VM_FAULT_NOPAGE;
624 	}
625 	r = ttm_vm_ops->fault(vma, vmf);
626 	return r;
627 }
628 
629 int radeon_mmap(struct file *filp, struct vm_area_struct *vma)
630 {
631 	struct drm_file *file_priv;
632 	struct radeon_device *rdev;
633 	int r;
634 
635 	if (unlikely(vma->vm_pgoff < DRM_FILE_PAGE_OFFSET)) {
636 		return drm_mmap(filp, vma);
637 	}
638 
639 	file_priv = (struct drm_file *)filp->private_data;
640 	rdev = file_priv->minor->dev->dev_private;
641 	if (rdev == NULL) {
642 		return -EINVAL;
643 	}
644 	r = ttm_bo_mmap(filp, vma, &rdev->mman.bdev);
645 	if (unlikely(r != 0)) {
646 		return r;
647 	}
648 	if (unlikely(ttm_vm_ops == NULL)) {
649 		ttm_vm_ops = vma->vm_ops;
650 		radeon_ttm_vm_ops = *ttm_vm_ops;
651 		radeon_ttm_vm_ops.fault = &radeon_ttm_fault;
652 	}
653 	vma->vm_ops = &radeon_ttm_vm_ops;
654 	return 0;
655 }
656 
657 
658 /*
659  * TTM backend functions.
660  */
661 struct radeon_ttm_backend {
662 	struct ttm_backend		backend;
663 	struct radeon_device		*rdev;
664 	unsigned long			num_pages;
665 	struct page			**pages;
666 	struct page			*dummy_read_page;
667 	bool				populated;
668 	bool				bound;
669 	unsigned			offset;
670 };
671 
672 static int radeon_ttm_backend_populate(struct ttm_backend *backend,
673 				       unsigned long num_pages,
674 				       struct page **pages,
675 				       struct page *dummy_read_page)
676 {
677 	struct radeon_ttm_backend *gtt;
678 
679 	gtt = container_of(backend, struct radeon_ttm_backend, backend);
680 	gtt->pages = pages;
681 	gtt->num_pages = num_pages;
682 	gtt->dummy_read_page = dummy_read_page;
683 	gtt->populated = true;
684 	return 0;
685 }
686 
687 static void radeon_ttm_backend_clear(struct ttm_backend *backend)
688 {
689 	struct radeon_ttm_backend *gtt;
690 
691 	gtt = container_of(backend, struct radeon_ttm_backend, backend);
692 	gtt->pages = NULL;
693 	gtt->num_pages = 0;
694 	gtt->dummy_read_page = NULL;
695 	gtt->populated = false;
696 	gtt->bound = false;
697 }
698 
699 
700 static int radeon_ttm_backend_bind(struct ttm_backend *backend,
701 				   struct ttm_mem_reg *bo_mem)
702 {
703 	struct radeon_ttm_backend *gtt;
704 	int r;
705 
706 	gtt = container_of(backend, struct radeon_ttm_backend, backend);
707 	gtt->offset = bo_mem->mm_node->start << PAGE_SHIFT;
708 	if (!gtt->num_pages) {
709 		WARN(1, "nothing to bind %lu pages for mreg %p back %p!\n", gtt->num_pages, bo_mem, backend);
710 	}
711 	r = radeon_gart_bind(gtt->rdev, gtt->offset,
712 			     gtt->num_pages, gtt->pages);
713 	if (r) {
714 		DRM_ERROR("failed to bind %lu pages at 0x%08X\n",
715 			  gtt->num_pages, gtt->offset);
716 		return r;
717 	}
718 	gtt->bound = true;
719 	return 0;
720 }
721 
722 static int radeon_ttm_backend_unbind(struct ttm_backend *backend)
723 {
724 	struct radeon_ttm_backend *gtt;
725 
726 	gtt = container_of(backend, struct radeon_ttm_backend, backend);
727 	radeon_gart_unbind(gtt->rdev, gtt->offset, gtt->num_pages);
728 	gtt->bound = false;
729 	return 0;
730 }
731 
732 static void radeon_ttm_backend_destroy(struct ttm_backend *backend)
733 {
734 	struct radeon_ttm_backend *gtt;
735 
736 	gtt = container_of(backend, struct radeon_ttm_backend, backend);
737 	if (gtt->bound) {
738 		radeon_ttm_backend_unbind(backend);
739 	}
740 	kfree(gtt);
741 }
742 
743 static struct ttm_backend_func radeon_backend_func = {
744 	.populate = &radeon_ttm_backend_populate,
745 	.clear = &radeon_ttm_backend_clear,
746 	.bind = &radeon_ttm_backend_bind,
747 	.unbind = &radeon_ttm_backend_unbind,
748 	.destroy = &radeon_ttm_backend_destroy,
749 };
750 
751 struct ttm_backend *radeon_ttm_backend_create(struct radeon_device *rdev)
752 {
753 	struct radeon_ttm_backend *gtt;
754 
755 	gtt = kzalloc(sizeof(struct radeon_ttm_backend), GFP_KERNEL);
756 	if (gtt == NULL) {
757 		return NULL;
758 	}
759 	gtt->backend.bdev = &rdev->mman.bdev;
760 	gtt->backend.flags = 0;
761 	gtt->backend.func = &radeon_backend_func;
762 	gtt->rdev = rdev;
763 	gtt->pages = NULL;
764 	gtt->num_pages = 0;
765 	gtt->dummy_read_page = NULL;
766 	gtt->populated = false;
767 	gtt->bound = false;
768 	return &gtt->backend;
769 }
770 
771 #define RADEON_DEBUGFS_MEM_TYPES 2
772 
773 #if defined(CONFIG_DEBUG_FS)
774 static int radeon_mm_dump_table(struct seq_file *m, void *data)
775 {
776 	struct drm_info_node *node = (struct drm_info_node *)m->private;
777 	struct drm_mm *mm = (struct drm_mm *)node->info_ent->data;
778 	struct drm_device *dev = node->minor->dev;
779 	struct radeon_device *rdev = dev->dev_private;
780 	int ret;
781 	struct ttm_bo_global *glob = rdev->mman.bdev.glob;
782 
783 	spin_lock(&glob->lru_lock);
784 	ret = drm_mm_dump_table(m, mm);
785 	spin_unlock(&glob->lru_lock);
786 	return ret;
787 }
788 #endif
789 
790 static int radeon_ttm_debugfs_init(struct radeon_device *rdev)
791 {
792 #if defined(CONFIG_DEBUG_FS)
793 	static struct drm_info_list radeon_mem_types_list[RADEON_DEBUGFS_MEM_TYPES];
794 	static char radeon_mem_types_names[RADEON_DEBUGFS_MEM_TYPES][32];
795 	unsigned i;
796 
797 	for (i = 0; i < RADEON_DEBUGFS_MEM_TYPES; i++) {
798 		if (i == 0)
799 			sprintf(radeon_mem_types_names[i], "radeon_vram_mm");
800 		else
801 			sprintf(radeon_mem_types_names[i], "radeon_gtt_mm");
802 		radeon_mem_types_list[i].name = radeon_mem_types_names[i];
803 		radeon_mem_types_list[i].show = &radeon_mm_dump_table;
804 		radeon_mem_types_list[i].driver_features = 0;
805 		if (i == 0)
806 			radeon_mem_types_list[i].data = &rdev->mman.bdev.man[TTM_PL_VRAM].manager;
807 		else
808 			radeon_mem_types_list[i].data = &rdev->mman.bdev.man[TTM_PL_TT].manager;
809 
810 	}
811 	return radeon_debugfs_add_files(rdev, radeon_mem_types_list, RADEON_DEBUGFS_MEM_TYPES);
812 
813 #endif
814 	return 0;
815 }
816