2 * Copyright 2009 Jerome Glisse.
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:
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.
21 * The above copyright notice and this permission notice (including the
22 * next paragraph) shall be included in all copies or substantial portions
28 * Jerome Glisse <glisse@freedesktop.org>
29 * Thomas Hellstrom <thomas-at-tungstengraphics-dot-com>
33 #include <linux/dma-mapping.h>
34 #include <linux/pagemap.h>
35 #include <linux/pci.h>
36 #include <linux/seq_file.h>
37 #include <linux/slab.h>
38 #include <linux/swap.h>
39 #include <linux/swiotlb.h>
41 #include <drm/drm_agpsupport.h>
42 #include <drm/drm_debugfs.h>
43 #include <drm/drm_device.h>
44 #include <drm/drm_file.h>
45 #include <drm/drm_prime.h>
46 #include <drm/radeon_drm.h>
47 #include <drm/ttm/ttm_bo_api.h>
48 #include <drm/ttm/ttm_bo_driver.h>
49 #include <drm/ttm/ttm_module.h>
50 #include <drm/ttm/ttm_page_alloc.h>
51 #include <drm/ttm/ttm_placement.h>
53 #include "radeon_reg.h"
56 static int radeon_ttm_debugfs_init(struct radeon_device *rdev);
57 static void radeon_ttm_debugfs_fini(struct radeon_device *rdev);
59 struct radeon_device *radeon_get_rdev(struct ttm_bo_device *bdev)
61 struct radeon_mman *mman;
62 struct radeon_device *rdev;
64 mman = container_of(bdev, struct radeon_mman, bdev);
65 rdev = container_of(mman, struct radeon_device, mman);
69 static int radeon_init_mem_type(struct ttm_bo_device *bdev, uint32_t type,
70 struct ttm_mem_type_manager *man)
72 struct radeon_device *rdev;
74 rdev = radeon_get_rdev(bdev);
79 man->flags = TTM_MEMTYPE_FLAG_MAPPABLE;
80 man->available_caching = TTM_PL_MASK_CACHING;
81 man->default_caching = TTM_PL_FLAG_CACHED;
84 man->func = &ttm_bo_manager_func;
85 man->available_caching = TTM_PL_MASK_CACHING;
86 man->default_caching = TTM_PL_FLAG_CACHED;
87 man->flags = TTM_MEMTYPE_FLAG_MAPPABLE | TTM_MEMTYPE_FLAG_CMA;
88 #if IS_ENABLED(CONFIG_AGP)
89 if (rdev->flags & RADEON_IS_AGP) {
90 if (!rdev->ddev->agp) {
91 DRM_ERROR("AGP is not enabled for memory type %u\n",
95 if (!rdev->ddev->agp->cant_use_aperture)
96 man->flags = TTM_MEMTYPE_FLAG_MAPPABLE;
97 man->available_caching = TTM_PL_FLAG_UNCACHED |
99 man->default_caching = TTM_PL_FLAG_WC;
104 /* "On-card" video ram */
105 man->func = &ttm_bo_manager_func;
106 man->flags = TTM_MEMTYPE_FLAG_FIXED |
107 TTM_MEMTYPE_FLAG_MAPPABLE;
108 man->available_caching = TTM_PL_FLAG_UNCACHED | TTM_PL_FLAG_WC;
109 man->default_caching = TTM_PL_FLAG_WC;
112 DRM_ERROR("Unsupported memory type %u\n", (unsigned)type);
118 static void radeon_evict_flags(struct ttm_buffer_object *bo,
119 struct ttm_placement *placement)
121 static const struct ttm_place placements = {
124 .flags = TTM_PL_MASK_CACHING | TTM_PL_FLAG_SYSTEM
127 struct radeon_bo *rbo;
129 if (!radeon_ttm_bo_is_radeon_bo(bo)) {
130 placement->placement = &placements;
131 placement->busy_placement = &placements;
132 placement->num_placement = 1;
133 placement->num_busy_placement = 1;
136 rbo = container_of(bo, struct radeon_bo, tbo);
137 switch (bo->mem.mem_type) {
139 if (rbo->rdev->ring[radeon_copy_ring_index(rbo->rdev)].ready == false)
140 radeon_ttm_placement_from_domain(rbo, RADEON_GEM_DOMAIN_CPU);
141 else if (rbo->rdev->mc.visible_vram_size < rbo->rdev->mc.real_vram_size &&
142 bo->mem.start < (rbo->rdev->mc.visible_vram_size >> PAGE_SHIFT)) {
143 unsigned fpfn = rbo->rdev->mc.visible_vram_size >> PAGE_SHIFT;
146 /* Try evicting to the CPU inaccessible part of VRAM
147 * first, but only set GTT as busy placement, so this
148 * BO will be evicted to GTT rather than causing other
149 * BOs to be evicted from VRAM
151 radeon_ttm_placement_from_domain(rbo, RADEON_GEM_DOMAIN_VRAM |
152 RADEON_GEM_DOMAIN_GTT);
153 rbo->placement.num_busy_placement = 0;
154 for (i = 0; i < rbo->placement.num_placement; i++) {
155 if (rbo->placements[i].flags & TTM_PL_FLAG_VRAM) {
156 if (rbo->placements[i].fpfn < fpfn)
157 rbo->placements[i].fpfn = fpfn;
159 rbo->placement.busy_placement =
161 rbo->placement.num_busy_placement = 1;
165 radeon_ttm_placement_from_domain(rbo, RADEON_GEM_DOMAIN_GTT);
169 radeon_ttm_placement_from_domain(rbo, RADEON_GEM_DOMAIN_CPU);
171 *placement = rbo->placement;
174 static int radeon_verify_access(struct ttm_buffer_object *bo, struct file *filp)
176 struct radeon_bo *rbo = container_of(bo, struct radeon_bo, tbo);
178 if (radeon_ttm_tt_has_userptr(bo->ttm))
180 return drm_vma_node_verify_access(&rbo->tbo.base.vma_node,
184 static void radeon_move_null(struct ttm_buffer_object *bo,
185 struct ttm_mem_reg *new_mem)
187 struct ttm_mem_reg *old_mem = &bo->mem;
189 BUG_ON(old_mem->mm_node != NULL);
191 new_mem->mm_node = NULL;
194 static int radeon_move_blit(struct ttm_buffer_object *bo,
195 bool evict, bool no_wait_gpu,
196 struct ttm_mem_reg *new_mem,
197 struct ttm_mem_reg *old_mem)
199 struct radeon_device *rdev;
200 uint64_t old_start, new_start;
201 struct radeon_fence *fence;
205 rdev = radeon_get_rdev(bo->bdev);
206 ridx = radeon_copy_ring_index(rdev);
207 old_start = (u64)old_mem->start << PAGE_SHIFT;
208 new_start = (u64)new_mem->start << PAGE_SHIFT;
210 switch (old_mem->mem_type) {
212 old_start += rdev->mc.vram_start;
215 old_start += rdev->mc.gtt_start;
218 DRM_ERROR("Unknown placement %d\n", old_mem->mem_type);
221 switch (new_mem->mem_type) {
223 new_start += rdev->mc.vram_start;
226 new_start += rdev->mc.gtt_start;
229 DRM_ERROR("Unknown placement %d\n", old_mem->mem_type);
232 if (!rdev->ring[ridx].ready) {
233 DRM_ERROR("Trying to move memory with ring turned off.\n");
237 BUILD_BUG_ON((PAGE_SIZE % RADEON_GPU_PAGE_SIZE) != 0);
239 num_pages = new_mem->num_pages * (PAGE_SIZE / RADEON_GPU_PAGE_SIZE);
240 fence = radeon_copy(rdev, old_start, new_start, num_pages, bo->base.resv);
242 return PTR_ERR(fence);
244 r = ttm_bo_move_accel_cleanup(bo, &fence->base, evict, new_mem);
245 radeon_fence_unref(&fence);
249 static int radeon_move_vram_ram(struct ttm_buffer_object *bo,
250 bool evict, bool interruptible,
252 struct ttm_mem_reg *new_mem)
254 struct ttm_operation_ctx ctx = { interruptible, no_wait_gpu };
255 struct ttm_mem_reg *old_mem = &bo->mem;
256 struct ttm_mem_reg tmp_mem;
257 struct ttm_place placements;
258 struct ttm_placement placement;
262 tmp_mem.mm_node = NULL;
263 placement.num_placement = 1;
264 placement.placement = &placements;
265 placement.num_busy_placement = 1;
266 placement.busy_placement = &placements;
269 placements.flags = TTM_PL_MASK_CACHING | TTM_PL_FLAG_TT;
270 r = ttm_bo_mem_space(bo, &placement, &tmp_mem, &ctx);
275 r = ttm_tt_set_placement_caching(bo->ttm, tmp_mem.placement);
280 r = ttm_tt_bind(bo->ttm, &tmp_mem, &ctx);
284 r = radeon_move_blit(bo, true, no_wait_gpu, &tmp_mem, old_mem);
288 r = ttm_bo_move_ttm(bo, &ctx, new_mem);
290 ttm_bo_mem_put(bo, &tmp_mem);
294 static int radeon_move_ram_vram(struct ttm_buffer_object *bo,
295 bool evict, bool interruptible,
297 struct ttm_mem_reg *new_mem)
299 struct ttm_operation_ctx ctx = { interruptible, no_wait_gpu };
300 struct ttm_mem_reg *old_mem = &bo->mem;
301 struct ttm_mem_reg tmp_mem;
302 struct ttm_placement placement;
303 struct ttm_place placements;
307 tmp_mem.mm_node = NULL;
308 placement.num_placement = 1;
309 placement.placement = &placements;
310 placement.num_busy_placement = 1;
311 placement.busy_placement = &placements;
314 placements.flags = TTM_PL_MASK_CACHING | TTM_PL_FLAG_TT;
315 r = ttm_bo_mem_space(bo, &placement, &tmp_mem, &ctx);
319 r = ttm_bo_move_ttm(bo, &ctx, &tmp_mem);
323 r = radeon_move_blit(bo, true, no_wait_gpu, new_mem, old_mem);
328 ttm_bo_mem_put(bo, &tmp_mem);
332 static int radeon_bo_move(struct ttm_buffer_object *bo, bool evict,
333 struct ttm_operation_ctx *ctx,
334 struct ttm_mem_reg *new_mem)
336 struct radeon_device *rdev;
337 struct radeon_bo *rbo;
338 struct ttm_mem_reg *old_mem = &bo->mem;
341 r = ttm_bo_wait(bo, ctx->interruptible, ctx->no_wait_gpu);
345 /* Can't move a pinned BO */
346 rbo = container_of(bo, struct radeon_bo, tbo);
347 if (WARN_ON_ONCE(rbo->pin_count > 0))
350 rdev = radeon_get_rdev(bo->bdev);
351 if (old_mem->mem_type == TTM_PL_SYSTEM && bo->ttm == NULL) {
352 radeon_move_null(bo, new_mem);
355 if ((old_mem->mem_type == TTM_PL_TT &&
356 new_mem->mem_type == TTM_PL_SYSTEM) ||
357 (old_mem->mem_type == TTM_PL_SYSTEM &&
358 new_mem->mem_type == TTM_PL_TT)) {
360 radeon_move_null(bo, new_mem);
363 if (!rdev->ring[radeon_copy_ring_index(rdev)].ready ||
364 rdev->asic->copy.copy == NULL) {
369 if (old_mem->mem_type == TTM_PL_VRAM &&
370 new_mem->mem_type == TTM_PL_SYSTEM) {
371 r = radeon_move_vram_ram(bo, evict, ctx->interruptible,
372 ctx->no_wait_gpu, new_mem);
373 } else if (old_mem->mem_type == TTM_PL_SYSTEM &&
374 new_mem->mem_type == TTM_PL_VRAM) {
375 r = radeon_move_ram_vram(bo, evict, ctx->interruptible,
376 ctx->no_wait_gpu, new_mem);
378 r = radeon_move_blit(bo, evict, ctx->no_wait_gpu,
384 r = ttm_bo_move_memcpy(bo, ctx, new_mem);
390 /* update statistics */
391 atomic64_add((u64)bo->num_pages << PAGE_SHIFT, &rdev->num_bytes_moved);
395 static int radeon_ttm_io_mem_reserve(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
397 struct ttm_mem_type_manager *man = &bdev->man[mem->mem_type];
398 struct radeon_device *rdev = radeon_get_rdev(bdev);
400 mem->bus.addr = NULL;
402 mem->bus.size = mem->num_pages << PAGE_SHIFT;
404 mem->bus.is_iomem = false;
405 if (!(man->flags & TTM_MEMTYPE_FLAG_MAPPABLE))
407 switch (mem->mem_type) {
412 #if IS_ENABLED(CONFIG_AGP)
413 if (rdev->flags & RADEON_IS_AGP) {
414 /* RADEON_IS_AGP is set only if AGP is active */
415 mem->bus.offset = mem->start << PAGE_SHIFT;
416 mem->bus.base = rdev->mc.agp_base;
417 mem->bus.is_iomem = !rdev->ddev->agp->cant_use_aperture;
422 mem->bus.offset = mem->start << PAGE_SHIFT;
423 /* check if it's visible */
424 if ((mem->bus.offset + mem->bus.size) > rdev->mc.visible_vram_size)
426 mem->bus.base = rdev->mc.aper_base;
427 mem->bus.is_iomem = true;
430 * Alpha: use bus.addr to hold the ioremap() return,
431 * so we can modify bus.base below.
433 if (mem->placement & TTM_PL_FLAG_WC)
435 ioremap_wc(mem->bus.base + mem->bus.offset,
439 ioremap(mem->bus.base + mem->bus.offset,
445 * Alpha: Use just the bus offset plus
446 * the hose/domain memory base for bus.base.
447 * It then can be used to build PTEs for VRAM
448 * access, as done in ttm_bo_vm_fault().
450 mem->bus.base = (mem->bus.base & 0x0ffffffffUL) +
451 rdev->ddev->hose->dense_mem_base;
460 static void radeon_ttm_io_mem_free(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
465 * TTM backend functions.
467 struct radeon_ttm_tt {
468 struct ttm_dma_tt ttm;
469 struct radeon_device *rdev;
473 struct mm_struct *usermm;
477 /* prepare the sg table with the user pages */
478 static int radeon_ttm_tt_pin_userptr(struct ttm_tt *ttm)
480 struct radeon_device *rdev = radeon_get_rdev(ttm->bdev);
481 struct radeon_ttm_tt *gtt = (void *)ttm;
482 unsigned pinned = 0, nents;
485 int write = !(gtt->userflags & RADEON_GEM_USERPTR_READONLY);
486 enum dma_data_direction direction = write ?
487 DMA_BIDIRECTIONAL : DMA_TO_DEVICE;
489 if (current->mm != gtt->usermm)
492 if (gtt->userflags & RADEON_GEM_USERPTR_ANONONLY) {
493 /* check that we only pin down anonymous memory
494 to prevent problems with writeback */
495 unsigned long end = gtt->userptr + ttm->num_pages * PAGE_SIZE;
496 struct vm_area_struct *vma;
497 vma = find_vma(gtt->usermm, gtt->userptr);
498 if (!vma || vma->vm_file || vma->vm_end < end)
503 unsigned num_pages = ttm->num_pages - pinned;
504 uint64_t userptr = gtt->userptr + pinned * PAGE_SIZE;
505 struct page **pages = ttm->pages + pinned;
507 r = get_user_pages(userptr, num_pages, write ? FOLL_WRITE : 0,
514 } while (pinned < ttm->num_pages);
516 r = sg_alloc_table_from_pages(ttm->sg, ttm->pages, ttm->num_pages, 0,
517 ttm->num_pages << PAGE_SHIFT,
523 nents = dma_map_sg(rdev->dev, ttm->sg->sgl, ttm->sg->nents, direction);
527 drm_prime_sg_to_page_addr_arrays(ttm->sg, ttm->pages,
528 gtt->ttm.dma_address, ttm->num_pages);
536 release_pages(ttm->pages, pinned);
540 static void radeon_ttm_tt_unpin_userptr(struct ttm_tt *ttm)
542 struct radeon_device *rdev = radeon_get_rdev(ttm->bdev);
543 struct radeon_ttm_tt *gtt = (void *)ttm;
544 struct sg_page_iter sg_iter;
546 int write = !(gtt->userflags & RADEON_GEM_USERPTR_READONLY);
547 enum dma_data_direction direction = write ?
548 DMA_BIDIRECTIONAL : DMA_TO_DEVICE;
550 /* double check that we don't free the table twice */
554 /* free the sg table and pages again */
555 dma_unmap_sg(rdev->dev, ttm->sg->sgl, ttm->sg->nents, direction);
557 for_each_sg_page(ttm->sg->sgl, &sg_iter, ttm->sg->nents, 0) {
558 struct page *page = sg_page_iter_page(&sg_iter);
559 if (!(gtt->userflags & RADEON_GEM_USERPTR_READONLY))
560 set_page_dirty(page);
562 mark_page_accessed(page);
566 sg_free_table(ttm->sg);
569 static int radeon_ttm_backend_bind(struct ttm_tt *ttm,
570 struct ttm_mem_reg *bo_mem)
572 struct radeon_ttm_tt *gtt = (void*)ttm;
573 uint32_t flags = RADEON_GART_PAGE_VALID | RADEON_GART_PAGE_READ |
574 RADEON_GART_PAGE_WRITE;
578 radeon_ttm_tt_pin_userptr(ttm);
579 flags &= ~RADEON_GART_PAGE_WRITE;
582 gtt->offset = (unsigned long)(bo_mem->start << PAGE_SHIFT);
583 if (!ttm->num_pages) {
584 WARN(1, "nothing to bind %lu pages for mreg %p back %p!\n",
585 ttm->num_pages, bo_mem, ttm);
587 if (ttm->caching_state == tt_cached)
588 flags |= RADEON_GART_PAGE_SNOOP;
589 r = radeon_gart_bind(gtt->rdev, gtt->offset, ttm->num_pages,
590 ttm->pages, gtt->ttm.dma_address, flags);
592 DRM_ERROR("failed to bind %lu pages at 0x%08X\n",
593 ttm->num_pages, (unsigned)gtt->offset);
599 static int radeon_ttm_backend_unbind(struct ttm_tt *ttm)
601 struct radeon_ttm_tt *gtt = (void *)ttm;
603 radeon_gart_unbind(gtt->rdev, gtt->offset, ttm->num_pages);
606 radeon_ttm_tt_unpin_userptr(ttm);
611 static void radeon_ttm_backend_destroy(struct ttm_tt *ttm)
613 struct radeon_ttm_tt *gtt = (void *)ttm;
615 ttm_dma_tt_fini(>t->ttm);
619 static struct ttm_backend_func radeon_backend_func = {
620 .bind = &radeon_ttm_backend_bind,
621 .unbind = &radeon_ttm_backend_unbind,
622 .destroy = &radeon_ttm_backend_destroy,
625 static struct ttm_tt *radeon_ttm_tt_create(struct ttm_buffer_object *bo,
628 struct radeon_device *rdev;
629 struct radeon_ttm_tt *gtt;
631 rdev = radeon_get_rdev(bo->bdev);
632 #if IS_ENABLED(CONFIG_AGP)
633 if (rdev->flags & RADEON_IS_AGP) {
634 return ttm_agp_tt_create(bo, rdev->ddev->agp->bridge,
639 gtt = kzalloc(sizeof(struct radeon_ttm_tt), GFP_KERNEL);
643 gtt->ttm.ttm.func = &radeon_backend_func;
645 if (ttm_dma_tt_init(>t->ttm, bo, page_flags)) {
649 return >t->ttm.ttm;
652 static struct radeon_ttm_tt *radeon_ttm_tt_to_gtt(struct ttm_tt *ttm)
654 if (!ttm || ttm->func != &radeon_backend_func)
656 return (struct radeon_ttm_tt *)ttm;
659 static int radeon_ttm_tt_populate(struct ttm_tt *ttm,
660 struct ttm_operation_ctx *ctx)
662 struct radeon_ttm_tt *gtt = radeon_ttm_tt_to_gtt(ttm);
663 struct radeon_device *rdev;
664 bool slave = !!(ttm->page_flags & TTM_PAGE_FLAG_SG);
666 if (gtt && gtt->userptr) {
667 ttm->sg = kzalloc(sizeof(struct sg_table), GFP_KERNEL);
671 ttm->page_flags |= TTM_PAGE_FLAG_SG;
672 ttm->state = tt_unbound;
676 if (slave && ttm->sg) {
677 drm_prime_sg_to_page_addr_arrays(ttm->sg, ttm->pages,
678 gtt->ttm.dma_address, ttm->num_pages);
679 ttm->state = tt_unbound;
683 rdev = radeon_get_rdev(ttm->bdev);
684 #if IS_ENABLED(CONFIG_AGP)
685 if (rdev->flags & RADEON_IS_AGP) {
686 return ttm_agp_tt_populate(ttm, ctx);
690 #ifdef CONFIG_SWIOTLB
691 if (rdev->need_swiotlb && swiotlb_nr_tbl()) {
692 return ttm_dma_populate(>t->ttm, rdev->dev, ctx);
696 return ttm_populate_and_map_pages(rdev->dev, >t->ttm, ctx);
699 static void radeon_ttm_tt_unpopulate(struct ttm_tt *ttm)
701 struct radeon_device *rdev;
702 struct radeon_ttm_tt *gtt = radeon_ttm_tt_to_gtt(ttm);
703 bool slave = !!(ttm->page_flags & TTM_PAGE_FLAG_SG);
705 if (gtt && gtt->userptr) {
707 ttm->page_flags &= ~TTM_PAGE_FLAG_SG;
714 rdev = radeon_get_rdev(ttm->bdev);
715 #if IS_ENABLED(CONFIG_AGP)
716 if (rdev->flags & RADEON_IS_AGP) {
717 ttm_agp_tt_unpopulate(ttm);
722 #ifdef CONFIG_SWIOTLB
723 if (rdev->need_swiotlb && swiotlb_nr_tbl()) {
724 ttm_dma_unpopulate(>t->ttm, rdev->dev);
729 ttm_unmap_and_unpopulate_pages(rdev->dev, >t->ttm);
732 int radeon_ttm_tt_set_userptr(struct ttm_tt *ttm, uint64_t addr,
735 struct radeon_ttm_tt *gtt = radeon_ttm_tt_to_gtt(ttm);
741 gtt->usermm = current->mm;
742 gtt->userflags = flags;
746 bool radeon_ttm_tt_has_userptr(struct ttm_tt *ttm)
748 struct radeon_ttm_tt *gtt = radeon_ttm_tt_to_gtt(ttm);
753 return !!gtt->userptr;
756 bool radeon_ttm_tt_is_readonly(struct ttm_tt *ttm)
758 struct radeon_ttm_tt *gtt = radeon_ttm_tt_to_gtt(ttm);
763 return !!(gtt->userflags & RADEON_GEM_USERPTR_READONLY);
766 static struct ttm_bo_driver radeon_bo_driver = {
767 .ttm_tt_create = &radeon_ttm_tt_create,
768 .ttm_tt_populate = &radeon_ttm_tt_populate,
769 .ttm_tt_unpopulate = &radeon_ttm_tt_unpopulate,
770 .init_mem_type = &radeon_init_mem_type,
771 .eviction_valuable = ttm_bo_eviction_valuable,
772 .evict_flags = &radeon_evict_flags,
773 .move = &radeon_bo_move,
774 .verify_access = &radeon_verify_access,
775 .move_notify = &radeon_bo_move_notify,
776 .fault_reserve_notify = &radeon_bo_fault_reserve_notify,
777 .io_mem_reserve = &radeon_ttm_io_mem_reserve,
778 .io_mem_free = &radeon_ttm_io_mem_free,
781 int radeon_ttm_init(struct radeon_device *rdev)
785 /* No others user of address space so set it to 0 */
786 r = ttm_bo_device_init(&rdev->mman.bdev,
788 rdev->ddev->anon_inode->i_mapping,
789 rdev->ddev->vma_offset_manager,
790 dma_addressing_limited(&rdev->pdev->dev));
792 DRM_ERROR("failed initializing buffer object driver(%d).\n", r);
795 rdev->mman.initialized = true;
796 r = ttm_bo_init_mm(&rdev->mman.bdev, TTM_PL_VRAM,
797 rdev->mc.real_vram_size >> PAGE_SHIFT);
799 DRM_ERROR("Failed initializing VRAM heap.\n");
802 /* Change the size here instead of the init above so only lpfn is affected */
803 radeon_ttm_set_active_vram_size(rdev, rdev->mc.visible_vram_size);
805 r = radeon_bo_create(rdev, 256 * 1024, PAGE_SIZE, true,
806 RADEON_GEM_DOMAIN_VRAM, 0, NULL,
807 NULL, &rdev->stolen_vga_memory);
811 r = radeon_bo_reserve(rdev->stolen_vga_memory, false);
814 r = radeon_bo_pin(rdev->stolen_vga_memory, RADEON_GEM_DOMAIN_VRAM, NULL);
815 radeon_bo_unreserve(rdev->stolen_vga_memory);
817 radeon_bo_unref(&rdev->stolen_vga_memory);
820 DRM_INFO("radeon: %uM of VRAM memory ready\n",
821 (unsigned) (rdev->mc.real_vram_size / (1024 * 1024)));
822 r = ttm_bo_init_mm(&rdev->mman.bdev, TTM_PL_TT,
823 rdev->mc.gtt_size >> PAGE_SHIFT);
825 DRM_ERROR("Failed initializing GTT heap.\n");
828 DRM_INFO("radeon: %uM of GTT memory ready.\n",
829 (unsigned)(rdev->mc.gtt_size / (1024 * 1024)));
831 r = radeon_ttm_debugfs_init(rdev);
833 DRM_ERROR("Failed to init debugfs\n");
839 void radeon_ttm_fini(struct radeon_device *rdev)
843 if (!rdev->mman.initialized)
845 radeon_ttm_debugfs_fini(rdev);
846 if (rdev->stolen_vga_memory) {
847 r = radeon_bo_reserve(rdev->stolen_vga_memory, false);
849 radeon_bo_unpin(rdev->stolen_vga_memory);
850 radeon_bo_unreserve(rdev->stolen_vga_memory);
852 radeon_bo_unref(&rdev->stolen_vga_memory);
854 ttm_bo_clean_mm(&rdev->mman.bdev, TTM_PL_VRAM);
855 ttm_bo_clean_mm(&rdev->mman.bdev, TTM_PL_TT);
856 ttm_bo_device_release(&rdev->mman.bdev);
857 radeon_gart_fini(rdev);
858 rdev->mman.initialized = false;
859 DRM_INFO("radeon: ttm finalized\n");
862 /* this should only be called at bootup or when userspace
864 void radeon_ttm_set_active_vram_size(struct radeon_device *rdev, u64 size)
866 struct ttm_mem_type_manager *man;
868 if (!rdev->mman.initialized)
871 man = &rdev->mman.bdev.man[TTM_PL_VRAM];
872 /* this just adjusts TTM size idea, which sets lpfn to the correct value */
873 man->size = size >> PAGE_SHIFT;
876 static vm_fault_t radeon_ttm_fault(struct vm_fault *vmf)
878 struct ttm_buffer_object *bo;
879 struct radeon_device *rdev;
882 bo = (struct ttm_buffer_object *)vmf->vma->vm_private_data;
884 return VM_FAULT_NOPAGE;
886 rdev = radeon_get_rdev(bo->bdev);
887 down_read(&rdev->pm.mclk_lock);
888 ret = ttm_bo_vm_fault(vmf);
889 up_read(&rdev->pm.mclk_lock);
893 static struct vm_operations_struct radeon_ttm_vm_ops = {
894 .fault = radeon_ttm_fault,
895 .open = ttm_bo_vm_open,
896 .close = ttm_bo_vm_close,
897 .access = ttm_bo_vm_access
900 int radeon_mmap(struct file *filp, struct vm_area_struct *vma)
903 struct drm_file *file_priv = filp->private_data;
904 struct radeon_device *rdev = file_priv->minor->dev->dev_private;
909 r = ttm_bo_mmap(filp, vma, &rdev->mman.bdev);
910 if (unlikely(r != 0))
913 vma->vm_ops = &radeon_ttm_vm_ops;
917 #if defined(CONFIG_DEBUG_FS)
919 static int radeon_mm_dump_table(struct seq_file *m, void *data)
921 struct drm_info_node *node = (struct drm_info_node *)m->private;
922 unsigned ttm_pl = *(int*)node->info_ent->data;
923 struct drm_device *dev = node->minor->dev;
924 struct radeon_device *rdev = dev->dev_private;
925 struct ttm_mem_type_manager *man = &rdev->mman.bdev.man[ttm_pl];
926 struct drm_printer p = drm_seq_file_printer(m);
928 man->func->debug(man, &p);
933 static int ttm_pl_vram = TTM_PL_VRAM;
934 static int ttm_pl_tt = TTM_PL_TT;
936 static struct drm_info_list radeon_ttm_debugfs_list[] = {
937 {"radeon_vram_mm", radeon_mm_dump_table, 0, &ttm_pl_vram},
938 {"radeon_gtt_mm", radeon_mm_dump_table, 0, &ttm_pl_tt},
939 {"ttm_page_pool", ttm_page_alloc_debugfs, 0, NULL},
940 #ifdef CONFIG_SWIOTLB
941 {"ttm_dma_page_pool", ttm_dma_page_alloc_debugfs, 0, NULL}
945 static int radeon_ttm_vram_open(struct inode *inode, struct file *filep)
947 struct radeon_device *rdev = inode->i_private;
948 i_size_write(inode, rdev->mc.mc_vram_size);
949 filep->private_data = inode->i_private;
953 static ssize_t radeon_ttm_vram_read(struct file *f, char __user *buf,
954 size_t size, loff_t *pos)
956 struct radeon_device *rdev = f->private_data;
960 if (size & 0x3 || *pos & 0x3)
967 if (*pos >= rdev->mc.mc_vram_size)
970 spin_lock_irqsave(&rdev->mmio_idx_lock, flags);
971 WREG32(RADEON_MM_INDEX, ((uint32_t)*pos) | 0x80000000);
972 if (rdev->family >= CHIP_CEDAR)
973 WREG32(EVERGREEN_MM_INDEX_HI, *pos >> 31);
974 value = RREG32(RADEON_MM_DATA);
975 spin_unlock_irqrestore(&rdev->mmio_idx_lock, flags);
977 r = put_user(value, (uint32_t *)buf);
990 static const struct file_operations radeon_ttm_vram_fops = {
991 .owner = THIS_MODULE,
992 .open = radeon_ttm_vram_open,
993 .read = radeon_ttm_vram_read,
994 .llseek = default_llseek
997 static int radeon_ttm_gtt_open(struct inode *inode, struct file *filep)
999 struct radeon_device *rdev = inode->i_private;
1000 i_size_write(inode, rdev->mc.gtt_size);
1001 filep->private_data = inode->i_private;
1005 static ssize_t radeon_ttm_gtt_read(struct file *f, char __user *buf,
1006 size_t size, loff_t *pos)
1008 struct radeon_device *rdev = f->private_data;
1013 loff_t p = *pos / PAGE_SIZE;
1014 unsigned off = *pos & ~PAGE_MASK;
1015 size_t cur_size = min_t(size_t, size, PAGE_SIZE - off);
1019 if (p >= rdev->gart.num_cpu_pages)
1022 page = rdev->gart.pages[p];
1027 r = copy_to_user(buf, ptr, cur_size);
1028 kunmap(rdev->gart.pages[p]);
1030 r = clear_user(buf, cur_size);
1044 static const struct file_operations radeon_ttm_gtt_fops = {
1045 .owner = THIS_MODULE,
1046 .open = radeon_ttm_gtt_open,
1047 .read = radeon_ttm_gtt_read,
1048 .llseek = default_llseek
1053 static int radeon_ttm_debugfs_init(struct radeon_device *rdev)
1055 #if defined(CONFIG_DEBUG_FS)
1058 struct drm_minor *minor = rdev->ddev->primary;
1059 struct dentry *root = minor->debugfs_root;
1061 rdev->mman.vram = debugfs_create_file("radeon_vram", S_IFREG | S_IRUGO,
1063 &radeon_ttm_vram_fops);
1065 rdev->mman.gtt = debugfs_create_file("radeon_gtt", S_IFREG | S_IRUGO,
1066 root, rdev, &radeon_ttm_gtt_fops);
1068 count = ARRAY_SIZE(radeon_ttm_debugfs_list);
1070 #ifdef CONFIG_SWIOTLB
1071 if (!(rdev->need_swiotlb && swiotlb_nr_tbl()))
1075 return radeon_debugfs_add_files(rdev, radeon_ttm_debugfs_list, count);
1082 static void radeon_ttm_debugfs_fini(struct radeon_device *rdev)
1084 #if defined(CONFIG_DEBUG_FS)
1086 debugfs_remove(rdev->mman.vram);
1087 rdev->mman.vram = NULL;
1089 debugfs_remove(rdev->mman.gtt);
1090 rdev->mman.gtt = NULL;