2 * Copyright 2012 Red Hat Inc.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the
6 * "Software"), to deal in the Software without restriction, including
7 * without limitation the rights to use, copy, modify, merge, publish,
8 * distribute, sub license, and/or sell copies of the Software, and to
9 * permit persons to whom the Software is furnished to do so, subject to
10 * the following conditions:
12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
15 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
16 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
17 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
18 * USE OR OTHER DEALINGS IN THE SOFTWARE.
20 * The above copyright notice and this permission notice (including the
21 * next paragraph) shall be included in all copies or substantial portions
26 * Authors: Dave Airlie <airlied@redhat.com>
29 #include <drm/ttm/ttm_page_alloc.h>
33 static inline struct ast_private
*
34 ast_bdev(struct ttm_bo_device
*bd
)
36 return container_of(bd
, struct ast_private
, ttm
.bdev
);
40 ast_ttm_mem_global_init(struct drm_global_reference
*ref
)
42 return ttm_mem_global_init(ref
->object
);
46 ast_ttm_mem_global_release(struct drm_global_reference
*ref
)
48 ttm_mem_global_release(ref
->object
);
51 static int ast_ttm_global_init(struct ast_private
*ast
)
53 struct drm_global_reference
*global_ref
;
56 global_ref
= &ast
->ttm
.mem_global_ref
;
57 global_ref
->global_type
= DRM_GLOBAL_TTM_MEM
;
58 global_ref
->size
= sizeof(struct ttm_mem_global
);
59 global_ref
->init
= &ast_ttm_mem_global_init
;
60 global_ref
->release
= &ast_ttm_mem_global_release
;
61 r
= drm_global_item_ref(global_ref
);
63 DRM_ERROR("Failed setting up TTM memory accounting "
68 ast
->ttm
.bo_global_ref
.mem_glob
=
69 ast
->ttm
.mem_global_ref
.object
;
70 global_ref
= &ast
->ttm
.bo_global_ref
.ref
;
71 global_ref
->global_type
= DRM_GLOBAL_TTM_BO
;
72 global_ref
->size
= sizeof(struct ttm_bo_global
);
73 global_ref
->init
= &ttm_bo_global_init
;
74 global_ref
->release
= &ttm_bo_global_release
;
75 r
= drm_global_item_ref(global_ref
);
77 DRM_ERROR("Failed setting up TTM BO subsystem.\n");
78 drm_global_item_unref(&ast
->ttm
.mem_global_ref
);
85 ast_ttm_global_release(struct ast_private
*ast
)
87 if (ast
->ttm
.mem_global_ref
.release
== NULL
)
90 drm_global_item_unref(&ast
->ttm
.bo_global_ref
.ref
);
91 drm_global_item_unref(&ast
->ttm
.mem_global_ref
);
92 ast
->ttm
.mem_global_ref
.release
= NULL
;
96 static void ast_bo_ttm_destroy(struct ttm_buffer_object
*tbo
)
100 bo
= container_of(tbo
, struct ast_bo
, bo
);
102 drm_gem_object_release(&bo
->gem
);
106 static bool ast_ttm_bo_is_ast_bo(struct ttm_buffer_object
*bo
)
108 if (bo
->destroy
== &ast_bo_ttm_destroy
)
114 ast_bo_init_mem_type(struct ttm_bo_device
*bdev
, uint32_t type
,
115 struct ttm_mem_type_manager
*man
)
119 man
->flags
= TTM_MEMTYPE_FLAG_MAPPABLE
;
120 man
->available_caching
= TTM_PL_MASK_CACHING
;
121 man
->default_caching
= TTM_PL_FLAG_CACHED
;
124 man
->func
= &ttm_bo_manager_func
;
125 man
->flags
= TTM_MEMTYPE_FLAG_FIXED
|
126 TTM_MEMTYPE_FLAG_MAPPABLE
;
127 man
->available_caching
= TTM_PL_FLAG_UNCACHED
|
129 man
->default_caching
= TTM_PL_FLAG_WC
;
132 DRM_ERROR("Unsupported memory type %u\n", (unsigned)type
);
139 ast_bo_evict_flags(struct ttm_buffer_object
*bo
, struct ttm_placement
*pl
)
141 struct ast_bo
*astbo
= ast_bo(bo
);
143 if (!ast_ttm_bo_is_ast_bo(bo
))
146 ast_ttm_placement(astbo
, TTM_PL_FLAG_SYSTEM
);
147 *pl
= astbo
->placement
;
150 static int ast_bo_verify_access(struct ttm_buffer_object
*bo
, struct file
*filp
)
152 struct ast_bo
*astbo
= ast_bo(bo
);
154 return drm_vma_node_verify_access(&astbo
->gem
.vma_node
,
158 static int ast_ttm_io_mem_reserve(struct ttm_bo_device
*bdev
,
159 struct ttm_mem_reg
*mem
)
161 struct ttm_mem_type_manager
*man
= &bdev
->man
[mem
->mem_type
];
162 struct ast_private
*ast
= ast_bdev(bdev
);
164 mem
->bus
.addr
= NULL
;
166 mem
->bus
.size
= mem
->num_pages
<< PAGE_SHIFT
;
168 mem
->bus
.is_iomem
= false;
169 if (!(man
->flags
& TTM_MEMTYPE_FLAG_MAPPABLE
))
171 switch (mem
->mem_type
) {
176 mem
->bus
.offset
= mem
->start
<< PAGE_SHIFT
;
177 mem
->bus
.base
= pci_resource_start(ast
->dev
->pdev
, 0);
178 mem
->bus
.is_iomem
= true;
187 static void ast_ttm_io_mem_free(struct ttm_bo_device
*bdev
, struct ttm_mem_reg
*mem
)
191 static void ast_ttm_backend_destroy(struct ttm_tt
*tt
)
197 static struct ttm_backend_func ast_tt_backend_func
= {
198 .destroy
= &ast_ttm_backend_destroy
,
202 static struct ttm_tt
*ast_ttm_tt_create(struct ttm_buffer_object
*bo
,
207 tt
= kzalloc(sizeof(struct ttm_tt
), GFP_KERNEL
);
210 tt
->func
= &ast_tt_backend_func
;
211 if (ttm_tt_init(tt
, bo
, page_flags
)) {
218 struct ttm_bo_driver ast_bo_driver
= {
219 .ttm_tt_create
= ast_ttm_tt_create
,
220 .init_mem_type
= ast_bo_init_mem_type
,
221 .eviction_valuable
= ttm_bo_eviction_valuable
,
222 .evict_flags
= ast_bo_evict_flags
,
224 .verify_access
= ast_bo_verify_access
,
225 .io_mem_reserve
= &ast_ttm_io_mem_reserve
,
226 .io_mem_free
= &ast_ttm_io_mem_free
,
229 int ast_mm_init(struct ast_private
*ast
)
232 struct drm_device
*dev
= ast
->dev
;
233 struct ttm_bo_device
*bdev
= &ast
->ttm
.bdev
;
235 ret
= ast_ttm_global_init(ast
);
239 ret
= ttm_bo_device_init(&ast
->ttm
.bdev
,
240 ast
->ttm
.bo_global_ref
.ref
.object
,
242 dev
->anon_inode
->i_mapping
,
243 DRM_FILE_PAGE_OFFSET
,
246 DRM_ERROR("Error initialising bo driver; %d\n", ret
);
250 ret
= ttm_bo_init_mm(bdev
, TTM_PL_VRAM
,
251 ast
->vram_size
>> PAGE_SHIFT
);
253 DRM_ERROR("Failed ttm VRAM init: %d\n", ret
);
257 arch_io_reserve_memtype_wc(pci_resource_start(dev
->pdev
, 0),
258 pci_resource_len(dev
->pdev
, 0));
259 ast
->fb_mtrr
= arch_phys_wc_add(pci_resource_start(dev
->pdev
, 0),
260 pci_resource_len(dev
->pdev
, 0));
265 void ast_mm_fini(struct ast_private
*ast
)
267 struct drm_device
*dev
= ast
->dev
;
269 ttm_bo_device_release(&ast
->ttm
.bdev
);
271 ast_ttm_global_release(ast
);
273 arch_phys_wc_del(ast
->fb_mtrr
);
274 arch_io_free_memtype_wc(pci_resource_start(dev
->pdev
, 0),
275 pci_resource_len(dev
->pdev
, 0));
278 void ast_ttm_placement(struct ast_bo
*bo
, int domain
)
283 bo
->placement
.placement
= bo
->placements
;
284 bo
->placement
.busy_placement
= bo
->placements
;
285 if (domain
& TTM_PL_FLAG_VRAM
)
286 bo
->placements
[c
++].flags
= TTM_PL_FLAG_WC
| TTM_PL_FLAG_UNCACHED
| TTM_PL_FLAG_VRAM
;
287 if (domain
& TTM_PL_FLAG_SYSTEM
)
288 bo
->placements
[c
++].flags
= TTM_PL_FLAG_CACHED
| TTM_PL_FLAG_SYSTEM
;
290 bo
->placements
[c
++].flags
= TTM_PL_FLAG_CACHED
| TTM_PL_FLAG_SYSTEM
;
291 bo
->placement
.num_placement
= c
;
292 bo
->placement
.num_busy_placement
= c
;
293 for (i
= 0; i
< c
; ++i
) {
294 bo
->placements
[i
].fpfn
= 0;
295 bo
->placements
[i
].lpfn
= 0;
299 int ast_bo_create(struct drm_device
*dev
, int size
, int align
,
300 uint32_t flags
, struct ast_bo
**pastbo
)
302 struct ast_private
*ast
= dev
->dev_private
;
303 struct ast_bo
*astbo
;
307 astbo
= kzalloc(sizeof(struct ast_bo
), GFP_KERNEL
);
311 ret
= drm_gem_object_init(dev
, &astbo
->gem
, size
);
315 astbo
->bo
.bdev
= &ast
->ttm
.bdev
;
317 ast_ttm_placement(astbo
, TTM_PL_FLAG_VRAM
| TTM_PL_FLAG_SYSTEM
);
319 acc_size
= ttm_bo_dma_acc_size(&ast
->ttm
.bdev
, size
,
320 sizeof(struct ast_bo
));
322 ret
= ttm_bo_init(&ast
->ttm
.bdev
, &astbo
->bo
, size
,
323 ttm_bo_type_device
, &astbo
->placement
,
324 align
>> PAGE_SHIFT
, false, acc_size
,
325 NULL
, NULL
, ast_bo_ttm_destroy
);
336 static inline u64
ast_bo_gpu_offset(struct ast_bo
*bo
)
338 return bo
->bo
.offset
;
341 int ast_bo_pin(struct ast_bo
*bo
, u32 pl_flag
, u64
*gpu_addr
)
343 struct ttm_operation_ctx ctx
= { false, false };
349 *gpu_addr
= ast_bo_gpu_offset(bo
);
352 ast_ttm_placement(bo
, pl_flag
);
353 for (i
= 0; i
< bo
->placement
.num_placement
; i
++)
354 bo
->placements
[i
].flags
|= TTM_PL_FLAG_NO_EVICT
;
355 ret
= ttm_bo_validate(&bo
->bo
, &bo
->placement
, &ctx
);
361 *gpu_addr
= ast_bo_gpu_offset(bo
);
365 int ast_bo_unpin(struct ast_bo
*bo
)
367 struct ttm_operation_ctx ctx
= { false, false };
369 if (!bo
->pin_count
) {
370 DRM_ERROR("unpin bad %p\n", bo
);
377 for (i
= 0; i
< bo
->placement
.num_placement
; i
++)
378 bo
->placements
[i
].flags
&= ~TTM_PL_FLAG_NO_EVICT
;
379 return ttm_bo_validate(&bo
->bo
, &bo
->placement
, &ctx
);
382 int ast_bo_push_sysram(struct ast_bo
*bo
)
384 struct ttm_operation_ctx ctx
= { false, false };
386 if (!bo
->pin_count
) {
387 DRM_ERROR("unpin bad %p\n", bo
);
394 if (bo
->kmap
.virtual)
395 ttm_bo_kunmap(&bo
->kmap
);
397 ast_ttm_placement(bo
, TTM_PL_FLAG_SYSTEM
);
398 for (i
= 0; i
< bo
->placement
.num_placement
; i
++)
399 bo
->placements
[i
].flags
|= TTM_PL_FLAG_NO_EVICT
;
401 ret
= ttm_bo_validate(&bo
->bo
, &bo
->placement
, &ctx
);
403 DRM_ERROR("pushing to VRAM failed\n");
409 int ast_mmap(struct file
*filp
, struct vm_area_struct
*vma
)
411 struct drm_file
*file_priv
;
412 struct ast_private
*ast
;
414 if (unlikely(vma
->vm_pgoff
< DRM_FILE_PAGE_OFFSET
))
417 file_priv
= filp
->private_data
;
418 ast
= file_priv
->minor
->dev
->dev_private
;
419 return ttm_bo_mmap(filp
, vma
, &ast
->ttm
.bdev
);