2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
10 static void bochs_ttm_placement(struct bochs_bo
*bo
, int domain
);
12 /* ---------------------------------------------------------------------- */
14 static inline struct bochs_device
*bochs_bdev(struct ttm_bo_device
*bd
)
16 return container_of(bd
, struct bochs_device
, ttm
.bdev
);
19 static int bochs_ttm_mem_global_init(struct drm_global_reference
*ref
)
21 return ttm_mem_global_init(ref
->object
);
24 static void bochs_ttm_mem_global_release(struct drm_global_reference
*ref
)
26 ttm_mem_global_release(ref
->object
);
29 static int bochs_ttm_global_init(struct bochs_device
*bochs
)
31 struct drm_global_reference
*global_ref
;
34 global_ref
= &bochs
->ttm
.mem_global_ref
;
35 global_ref
->global_type
= DRM_GLOBAL_TTM_MEM
;
36 global_ref
->size
= sizeof(struct ttm_mem_global
);
37 global_ref
->init
= &bochs_ttm_mem_global_init
;
38 global_ref
->release
= &bochs_ttm_mem_global_release
;
39 r
= drm_global_item_ref(global_ref
);
41 DRM_ERROR("Failed setting up TTM memory accounting "
46 bochs
->ttm
.bo_global_ref
.mem_glob
=
47 bochs
->ttm
.mem_global_ref
.object
;
48 global_ref
= &bochs
->ttm
.bo_global_ref
.ref
;
49 global_ref
->global_type
= DRM_GLOBAL_TTM_BO
;
50 global_ref
->size
= sizeof(struct ttm_bo_global
);
51 global_ref
->init
= &ttm_bo_global_init
;
52 global_ref
->release
= &ttm_bo_global_release
;
53 r
= drm_global_item_ref(global_ref
);
55 DRM_ERROR("Failed setting up TTM BO subsystem.\n");
56 drm_global_item_unref(&bochs
->ttm
.mem_global_ref
);
63 static void bochs_ttm_global_release(struct bochs_device
*bochs
)
65 if (bochs
->ttm
.mem_global_ref
.release
== NULL
)
68 drm_global_item_unref(&bochs
->ttm
.bo_global_ref
.ref
);
69 drm_global_item_unref(&bochs
->ttm
.mem_global_ref
);
70 bochs
->ttm
.mem_global_ref
.release
= NULL
;
74 static void bochs_bo_ttm_destroy(struct ttm_buffer_object
*tbo
)
78 bo
= container_of(tbo
, struct bochs_bo
, bo
);
79 drm_gem_object_release(&bo
->gem
);
83 static bool bochs_ttm_bo_is_bochs_bo(struct ttm_buffer_object
*bo
)
85 if (bo
->destroy
== &bochs_bo_ttm_destroy
)
90 static int bochs_bo_init_mem_type(struct ttm_bo_device
*bdev
, uint32_t type
,
91 struct ttm_mem_type_manager
*man
)
95 man
->flags
= TTM_MEMTYPE_FLAG_MAPPABLE
;
96 man
->available_caching
= TTM_PL_MASK_CACHING
;
97 man
->default_caching
= TTM_PL_FLAG_CACHED
;
100 man
->func
= &ttm_bo_manager_func
;
101 man
->flags
= TTM_MEMTYPE_FLAG_FIXED
|
102 TTM_MEMTYPE_FLAG_MAPPABLE
;
103 man
->available_caching
= TTM_PL_FLAG_UNCACHED
|
105 man
->default_caching
= TTM_PL_FLAG_WC
;
108 DRM_ERROR("Unsupported memory type %u\n", (unsigned)type
);
115 bochs_bo_evict_flags(struct ttm_buffer_object
*bo
, struct ttm_placement
*pl
)
117 struct bochs_bo
*bochsbo
= bochs_bo(bo
);
119 if (!bochs_ttm_bo_is_bochs_bo(bo
))
122 bochs_ttm_placement(bochsbo
, TTM_PL_FLAG_SYSTEM
);
123 *pl
= bochsbo
->placement
;
126 static int bochs_bo_verify_access(struct ttm_buffer_object
*bo
,
129 struct bochs_bo
*bochsbo
= bochs_bo(bo
);
131 return drm_vma_node_verify_access(&bochsbo
->gem
.vma_node
,
135 static int bochs_ttm_io_mem_reserve(struct ttm_bo_device
*bdev
,
136 struct ttm_mem_reg
*mem
)
138 struct ttm_mem_type_manager
*man
= &bdev
->man
[mem
->mem_type
];
139 struct bochs_device
*bochs
= bochs_bdev(bdev
);
141 mem
->bus
.addr
= NULL
;
143 mem
->bus
.size
= mem
->num_pages
<< PAGE_SHIFT
;
145 mem
->bus
.is_iomem
= false;
146 if (!(man
->flags
& TTM_MEMTYPE_FLAG_MAPPABLE
))
148 switch (mem
->mem_type
) {
153 mem
->bus
.offset
= mem
->start
<< PAGE_SHIFT
;
154 mem
->bus
.base
= bochs
->fb_base
;
155 mem
->bus
.is_iomem
= true;
164 static void bochs_ttm_io_mem_free(struct ttm_bo_device
*bdev
,
165 struct ttm_mem_reg
*mem
)
169 static void bochs_ttm_backend_destroy(struct ttm_tt
*tt
)
175 static struct ttm_backend_func bochs_tt_backend_func
= {
176 .destroy
= &bochs_ttm_backend_destroy
,
179 static struct ttm_tt
*bochs_ttm_tt_create(struct ttm_buffer_object
*bo
,
184 tt
= kzalloc(sizeof(struct ttm_tt
), GFP_KERNEL
);
187 tt
->func
= &bochs_tt_backend_func
;
188 if (ttm_tt_init(tt
, bo
, page_flags
)) {
195 static struct ttm_bo_driver bochs_bo_driver
= {
196 .ttm_tt_create
= bochs_ttm_tt_create
,
197 .init_mem_type
= bochs_bo_init_mem_type
,
198 .eviction_valuable
= ttm_bo_eviction_valuable
,
199 .evict_flags
= bochs_bo_evict_flags
,
201 .verify_access
= bochs_bo_verify_access
,
202 .io_mem_reserve
= &bochs_ttm_io_mem_reserve
,
203 .io_mem_free
= &bochs_ttm_io_mem_free
,
206 int bochs_mm_init(struct bochs_device
*bochs
)
208 struct ttm_bo_device
*bdev
= &bochs
->ttm
.bdev
;
211 ret
= bochs_ttm_global_init(bochs
);
215 ret
= ttm_bo_device_init(&bochs
->ttm
.bdev
,
216 bochs
->ttm
.bo_global_ref
.ref
.object
,
218 bochs
->dev
->anon_inode
->i_mapping
,
219 DRM_FILE_PAGE_OFFSET
,
222 DRM_ERROR("Error initialising bo driver; %d\n", ret
);
226 ret
= ttm_bo_init_mm(bdev
, TTM_PL_VRAM
,
227 bochs
->fb_size
>> PAGE_SHIFT
);
229 DRM_ERROR("Failed ttm VRAM init: %d\n", ret
);
233 bochs
->ttm
.initialized
= true;
237 void bochs_mm_fini(struct bochs_device
*bochs
)
239 if (!bochs
->ttm
.initialized
)
242 ttm_bo_device_release(&bochs
->ttm
.bdev
);
243 bochs_ttm_global_release(bochs
);
244 bochs
->ttm
.initialized
= false;
247 static void bochs_ttm_placement(struct bochs_bo
*bo
, int domain
)
251 bo
->placement
.placement
= bo
->placements
;
252 bo
->placement
.busy_placement
= bo
->placements
;
253 if (domain
& TTM_PL_FLAG_VRAM
) {
254 bo
->placements
[c
++].flags
= TTM_PL_FLAG_WC
255 | TTM_PL_FLAG_UNCACHED
258 if (domain
& TTM_PL_FLAG_SYSTEM
) {
259 bo
->placements
[c
++].flags
= TTM_PL_MASK_CACHING
260 | TTM_PL_FLAG_SYSTEM
;
263 bo
->placements
[c
++].flags
= TTM_PL_MASK_CACHING
264 | TTM_PL_FLAG_SYSTEM
;
266 for (i
= 0; i
< c
; ++i
) {
267 bo
->placements
[i
].fpfn
= 0;
268 bo
->placements
[i
].lpfn
= 0;
270 bo
->placement
.num_placement
= c
;
271 bo
->placement
.num_busy_placement
= c
;
274 static inline u64
bochs_bo_gpu_offset(struct bochs_bo
*bo
)
276 return bo
->bo
.offset
;
279 int bochs_bo_pin(struct bochs_bo
*bo
, u32 pl_flag
, u64
*gpu_addr
)
281 struct ttm_operation_ctx ctx
= { false, false };
287 *gpu_addr
= bochs_bo_gpu_offset(bo
);
291 bochs_ttm_placement(bo
, pl_flag
);
292 for (i
= 0; i
< bo
->placement
.num_placement
; i
++)
293 bo
->placements
[i
].flags
|= TTM_PL_FLAG_NO_EVICT
;
294 ret
= ttm_bo_validate(&bo
->bo
, &bo
->placement
, &ctx
);
300 *gpu_addr
= bochs_bo_gpu_offset(bo
);
304 int bochs_bo_unpin(struct bochs_bo
*bo
)
306 struct ttm_operation_ctx ctx
= { false, false };
309 if (!bo
->pin_count
) {
310 DRM_ERROR("unpin bad %p\n", bo
);
318 for (i
= 0; i
< bo
->placement
.num_placement
; i
++)
319 bo
->placements
[i
].flags
&= ~TTM_PL_FLAG_NO_EVICT
;
320 ret
= ttm_bo_validate(&bo
->bo
, &bo
->placement
, &ctx
);
327 int bochs_mmap(struct file
*filp
, struct vm_area_struct
*vma
)
329 struct drm_file
*file_priv
;
330 struct bochs_device
*bochs
;
332 if (unlikely(vma
->vm_pgoff
< DRM_FILE_PAGE_OFFSET
))
335 file_priv
= filp
->private_data
;
336 bochs
= file_priv
->minor
->dev
->dev_private
;
337 return ttm_bo_mmap(filp
, vma
, &bochs
->ttm
.bdev
);
340 /* ---------------------------------------------------------------------- */
342 static int bochs_bo_create(struct drm_device
*dev
, int size
, int align
,
343 uint32_t flags
, struct bochs_bo
**pbochsbo
)
345 struct bochs_device
*bochs
= dev
->dev_private
;
346 struct bochs_bo
*bochsbo
;
350 bochsbo
= kzalloc(sizeof(struct bochs_bo
), GFP_KERNEL
);
354 ret
= drm_gem_object_init(dev
, &bochsbo
->gem
, size
);
360 bochsbo
->bo
.bdev
= &bochs
->ttm
.bdev
;
361 bochsbo
->bo
.bdev
->dev_mapping
= dev
->anon_inode
->i_mapping
;
363 bochs_ttm_placement(bochsbo
, TTM_PL_FLAG_VRAM
| TTM_PL_FLAG_SYSTEM
);
365 acc_size
= ttm_bo_dma_acc_size(&bochs
->ttm
.bdev
, size
,
366 sizeof(struct bochs_bo
));
368 ret
= ttm_bo_init(&bochs
->ttm
.bdev
, &bochsbo
->bo
, size
,
369 ttm_bo_type_device
, &bochsbo
->placement
,
370 align
>> PAGE_SHIFT
, false, acc_size
,
371 NULL
, NULL
, bochs_bo_ttm_destroy
);
379 int bochs_gem_create(struct drm_device
*dev
, u32 size
, bool iskernel
,
380 struct drm_gem_object
**obj
)
382 struct bochs_bo
*bochsbo
;
387 size
= PAGE_ALIGN(size
);
391 ret
= bochs_bo_create(dev
, size
, 0, 0, &bochsbo
);
393 if (ret
!= -ERESTARTSYS
)
394 DRM_ERROR("failed to allocate GEM object\n");
397 *obj
= &bochsbo
->gem
;
401 int bochs_dumb_create(struct drm_file
*file
, struct drm_device
*dev
,
402 struct drm_mode_create_dumb
*args
)
404 struct drm_gem_object
*gobj
;
408 args
->pitch
= args
->width
* ((args
->bpp
+ 7) / 8);
409 args
->size
= args
->pitch
* args
->height
;
411 ret
= bochs_gem_create(dev
, args
->size
, false,
416 ret
= drm_gem_handle_create(file
, gobj
, &handle
);
417 drm_gem_object_unreference_unlocked(gobj
);
421 args
->handle
= handle
;
425 static void bochs_bo_unref(struct bochs_bo
**bo
)
427 struct ttm_buffer_object
*tbo
;
437 void bochs_gem_free_object(struct drm_gem_object
*obj
)
439 struct bochs_bo
*bochs_bo
= gem_to_bochs_bo(obj
);
441 bochs_bo_unref(&bochs_bo
);
444 int bochs_dumb_mmap_offset(struct drm_file
*file
, struct drm_device
*dev
,
445 uint32_t handle
, uint64_t *offset
)
447 struct drm_gem_object
*obj
;
450 obj
= drm_gem_object_lookup(file
, handle
);
454 bo
= gem_to_bochs_bo(obj
);
455 *offset
= bochs_bo_mmap_offset(bo
);
457 drm_gem_object_unreference_unlocked(obj
);
461 /* ---------------------------------------------------------------------- */
463 static void bochs_user_framebuffer_destroy(struct drm_framebuffer
*fb
)
465 struct bochs_framebuffer
*bochs_fb
= to_bochs_framebuffer(fb
);
467 drm_gem_object_unreference_unlocked(bochs_fb
->obj
);
468 drm_framebuffer_cleanup(fb
);
472 static const struct drm_framebuffer_funcs bochs_fb_funcs
= {
473 .destroy
= bochs_user_framebuffer_destroy
,
476 int bochs_framebuffer_init(struct drm_device
*dev
,
477 struct bochs_framebuffer
*gfb
,
478 const struct drm_mode_fb_cmd2
*mode_cmd
,
479 struct drm_gem_object
*obj
)
483 drm_helper_mode_fill_fb_struct(dev
, &gfb
->base
, mode_cmd
);
485 ret
= drm_framebuffer_init(dev
, &gfb
->base
, &bochs_fb_funcs
);
487 DRM_ERROR("drm_framebuffer_init failed: %d\n", ret
);
493 static struct drm_framebuffer
*
494 bochs_user_framebuffer_create(struct drm_device
*dev
,
495 struct drm_file
*filp
,
496 const struct drm_mode_fb_cmd2
*mode_cmd
)
498 struct drm_gem_object
*obj
;
499 struct bochs_framebuffer
*bochs_fb
;
502 DRM_DEBUG_DRIVER("%dx%d, format %c%c%c%c\n",
503 mode_cmd
->width
, mode_cmd
->height
,
504 (mode_cmd
->pixel_format
) & 0xff,
505 (mode_cmd
->pixel_format
>> 8) & 0xff,
506 (mode_cmd
->pixel_format
>> 16) & 0xff,
507 (mode_cmd
->pixel_format
>> 24) & 0xff);
509 if (mode_cmd
->pixel_format
!= DRM_FORMAT_XRGB8888
)
510 return ERR_PTR(-ENOENT
);
512 obj
= drm_gem_object_lookup(filp
, mode_cmd
->handles
[0]);
514 return ERR_PTR(-ENOENT
);
516 bochs_fb
= kzalloc(sizeof(*bochs_fb
), GFP_KERNEL
);
518 drm_gem_object_unreference_unlocked(obj
);
519 return ERR_PTR(-ENOMEM
);
522 ret
= bochs_framebuffer_init(dev
, bochs_fb
, mode_cmd
, obj
);
524 drm_gem_object_unreference_unlocked(obj
);
528 return &bochs_fb
->base
;
531 const struct drm_mode_config_funcs bochs_mode_funcs
= {
532 .fb_create
= bochs_user_framebuffer_create
,