1 /**************************************************************************
3 * Copyright © 2009 VMware, Inc., Palo Alto, CA., USA
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
21 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
22 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
23 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
24 * USE OR OTHER DEALINGS IN THE SOFTWARE.
26 **************************************************************************/
28 #include "vmwgfx_kms.h"
31 /* Might need a hrtimer here? */
32 #define VMWGFX_PRESENT_RATE ((HZ / 60 > 0) ? HZ / 60 : 1)
35 struct vmw_clip_rect
{
40 * Clip @num_rects number of @rects against @clip storing the
41 * results in @out_rects and the number of passed rects in @out_num.
43 void vmw_clip_cliprects(struct drm_clip_rect
*rects
,
45 struct vmw_clip_rect clip
,
46 SVGASignedRect
*out_rects
,
51 for (i
= 0, k
= 0; i
< num_rects
; i
++) {
52 int x1
= max_t(int, clip
.x1
, rects
[i
].x1
);
53 int y1
= max_t(int, clip
.y1
, rects
[i
].y1
);
54 int x2
= min_t(int, clip
.x2
, rects
[i
].x2
);
55 int y2
= min_t(int, clip
.y2
, rects
[i
].y2
);
62 out_rects
[k
].left
= x1
;
63 out_rects
[k
].top
= y1
;
64 out_rects
[k
].right
= x2
;
65 out_rects
[k
].bottom
= y2
;
72 void vmw_display_unit_cleanup(struct vmw_display_unit
*du
)
74 if (du
->cursor_surface
)
75 vmw_surface_unreference(&du
->cursor_surface
);
76 if (du
->cursor_dmabuf
)
77 vmw_dmabuf_unreference(&du
->cursor_dmabuf
);
78 drm_crtc_cleanup(&du
->crtc
);
79 drm_encoder_cleanup(&du
->encoder
);
80 drm_connector_cleanup(&du
->connector
);
84 * Display Unit Cursor functions
87 int vmw_cursor_update_image(struct vmw_private
*dev_priv
,
88 u32
*image
, u32 width
, u32 height
,
89 u32 hotspotX
, u32 hotspotY
)
93 SVGAFifoCmdDefineAlphaCursor cursor
;
95 u32 image_size
= width
* height
* 4;
96 u32 cmd_size
= sizeof(*cmd
) + image_size
;
101 cmd
= vmw_fifo_reserve(dev_priv
, cmd_size
);
102 if (unlikely(cmd
== NULL
)) {
103 DRM_ERROR("Fifo reserve failed.\n");
107 memset(cmd
, 0, sizeof(*cmd
));
109 memcpy(&cmd
[1], image
, image_size
);
111 cmd
->cmd
= cpu_to_le32(SVGA_CMD_DEFINE_ALPHA_CURSOR
);
112 cmd
->cursor
.id
= cpu_to_le32(0);
113 cmd
->cursor
.width
= cpu_to_le32(width
);
114 cmd
->cursor
.height
= cpu_to_le32(height
);
115 cmd
->cursor
.hotspotX
= cpu_to_le32(hotspotX
);
116 cmd
->cursor
.hotspotY
= cpu_to_le32(hotspotY
);
118 vmw_fifo_commit(dev_priv
, cmd_size
);
123 int vmw_cursor_update_dmabuf(struct vmw_private
*dev_priv
,
124 struct vmw_dma_buffer
*dmabuf
,
125 u32 width
, u32 height
,
126 u32 hotspotX
, u32 hotspotY
)
128 struct ttm_bo_kmap_obj map
;
129 unsigned long kmap_offset
;
130 unsigned long kmap_num
;
136 kmap_num
= (width
*height
*4 + PAGE_SIZE
- 1) >> PAGE_SHIFT
;
138 ret
= ttm_bo_reserve(&dmabuf
->base
, true, false, false, 0);
139 if (unlikely(ret
!= 0)) {
140 DRM_ERROR("reserve failed\n");
144 ret
= ttm_bo_kmap(&dmabuf
->base
, kmap_offset
, kmap_num
, &map
);
145 if (unlikely(ret
!= 0))
148 virtual = ttm_kmap_obj_virtual(&map
, &dummy
);
149 ret
= vmw_cursor_update_image(dev_priv
, virtual, width
, height
,
154 ttm_bo_unreserve(&dmabuf
->base
);
160 void vmw_cursor_update_position(struct vmw_private
*dev_priv
,
161 bool show
, int x
, int y
)
163 __le32 __iomem
*fifo_mem
= dev_priv
->mmio_virt
;
166 iowrite32(show
? 1 : 0, fifo_mem
+ SVGA_FIFO_CURSOR_ON
);
167 iowrite32(x
, fifo_mem
+ SVGA_FIFO_CURSOR_X
);
168 iowrite32(y
, fifo_mem
+ SVGA_FIFO_CURSOR_Y
);
169 count
= ioread32(fifo_mem
+ SVGA_FIFO_CURSOR_COUNT
);
170 iowrite32(++count
, fifo_mem
+ SVGA_FIFO_CURSOR_COUNT
);
173 int vmw_du_crtc_cursor_set(struct drm_crtc
*crtc
, struct drm_file
*file_priv
,
174 uint32_t handle
, uint32_t width
, uint32_t height
)
176 struct vmw_private
*dev_priv
= vmw_priv(crtc
->dev
);
177 struct ttm_object_file
*tfile
= vmw_fpriv(file_priv
)->tfile
;
178 struct vmw_display_unit
*du
= vmw_crtc_to_du(crtc
);
179 struct vmw_surface
*surface
= NULL
;
180 struct vmw_dma_buffer
*dmabuf
= NULL
;
183 /* A lot of the code assumes this */
184 if (handle
&& (width
!= 64 || height
!= 64))
188 ret
= vmw_user_lookup_handle(dev_priv
, tfile
,
189 handle
, &surface
, &dmabuf
);
191 DRM_ERROR("failed to find surface or dmabuf: %i\n", ret
);
196 /* need to do this before taking down old image */
197 if (surface
&& !surface
->snooper
.image
) {
198 DRM_ERROR("surface not suitable for cursor\n");
199 vmw_surface_unreference(&surface
);
203 /* takedown old cursor */
204 if (du
->cursor_surface
) {
205 du
->cursor_surface
->snooper
.crtc
= NULL
;
206 vmw_surface_unreference(&du
->cursor_surface
);
208 if (du
->cursor_dmabuf
)
209 vmw_dmabuf_unreference(&du
->cursor_dmabuf
);
211 /* setup new image */
213 /* vmw_user_surface_lookup takes one reference */
214 du
->cursor_surface
= surface
;
216 du
->cursor_surface
->snooper
.crtc
= crtc
;
217 du
->cursor_age
= du
->cursor_surface
->snooper
.age
;
218 vmw_cursor_update_image(dev_priv
, surface
->snooper
.image
,
219 64, 64, du
->hotspot_x
, du
->hotspot_y
);
221 /* vmw_user_surface_lookup takes one reference */
222 du
->cursor_dmabuf
= dmabuf
;
224 ret
= vmw_cursor_update_dmabuf(dev_priv
, dmabuf
, width
, height
,
225 du
->hotspot_x
, du
->hotspot_y
);
227 vmw_cursor_update_position(dev_priv
, false, 0, 0);
231 vmw_cursor_update_position(dev_priv
, true,
232 du
->cursor_x
+ du
->hotspot_x
,
233 du
->cursor_y
+ du
->hotspot_y
);
238 int vmw_du_crtc_cursor_move(struct drm_crtc
*crtc
, int x
, int y
)
240 struct vmw_private
*dev_priv
= vmw_priv(crtc
->dev
);
241 struct vmw_display_unit
*du
= vmw_crtc_to_du(crtc
);
242 bool shown
= du
->cursor_surface
|| du
->cursor_dmabuf
? true : false;
244 du
->cursor_x
= x
+ crtc
->x
;
245 du
->cursor_y
= y
+ crtc
->y
;
247 vmw_cursor_update_position(dev_priv
, shown
,
248 du
->cursor_x
+ du
->hotspot_x
,
249 du
->cursor_y
+ du
->hotspot_y
);
254 void vmw_kms_cursor_snoop(struct vmw_surface
*srf
,
255 struct ttm_object_file
*tfile
,
256 struct ttm_buffer_object
*bo
,
257 SVGA3dCmdHeader
*header
)
259 struct ttm_bo_kmap_obj map
;
260 unsigned long kmap_offset
;
261 unsigned long kmap_num
;
267 SVGA3dCmdHeader header
;
268 SVGA3dCmdSurfaceDMA dma
;
272 cmd
= container_of(header
, struct vmw_dma_cmd
, header
);
274 /* No snooper installed */
275 if (!srf
->snooper
.image
)
278 if (cmd
->dma
.host
.face
!= 0 || cmd
->dma
.host
.mipmap
!= 0) {
279 DRM_ERROR("face and mipmap for cursors should never != 0\n");
283 if (cmd
->header
.size
< 64) {
284 DRM_ERROR("at least one full copy box must be given\n");
288 box
= (SVGA3dCopyBox
*)&cmd
[1];
289 box_count
= (cmd
->header
.size
- sizeof(SVGA3dCmdSurfaceDMA
)) /
290 sizeof(SVGA3dCopyBox
);
292 if (cmd
->dma
.guest
.ptr
.offset
% PAGE_SIZE
||
293 box
->x
!= 0 || box
->y
!= 0 || box
->z
!= 0 ||
294 box
->srcx
!= 0 || box
->srcy
!= 0 || box
->srcz
!= 0 ||
295 box
->d
!= 1 || box_count
!= 1) {
296 /* TODO handle none page aligned offsets */
297 /* TODO handle more dst & src != 0 */
298 /* TODO handle more then one copy */
299 DRM_ERROR("Cant snoop dma request for cursor!\n");
300 DRM_ERROR("(%u, %u, %u) (%u, %u, %u) (%ux%ux%u) %u %u\n",
301 box
->srcx
, box
->srcy
, box
->srcz
,
302 box
->x
, box
->y
, box
->z
,
303 box
->w
, box
->h
, box
->d
, box_count
,
304 cmd
->dma
.guest
.ptr
.offset
);
308 kmap_offset
= cmd
->dma
.guest
.ptr
.offset
>> PAGE_SHIFT
;
309 kmap_num
= (64*64*4) >> PAGE_SHIFT
;
311 ret
= ttm_bo_reserve(bo
, true, false, false, 0);
312 if (unlikely(ret
!= 0)) {
313 DRM_ERROR("reserve failed\n");
317 ret
= ttm_bo_kmap(bo
, kmap_offset
, kmap_num
, &map
);
318 if (unlikely(ret
!= 0))
321 virtual = ttm_kmap_obj_virtual(&map
, &dummy
);
323 if (box
->w
== 64 && cmd
->dma
.guest
.pitch
== 64*4) {
324 memcpy(srf
->snooper
.image
, virtual, 64*64*4);
326 /* Image is unsigned pointer. */
327 for (i
= 0; i
< box
->h
; i
++)
328 memcpy(srf
->snooper
.image
+ i
* 64,
329 virtual + i
* cmd
->dma
.guest
.pitch
,
335 /* we can't call this function from this function since execbuf has
336 * reserved fifo space.
338 * if (srf->snooper.crtc)
339 * vmw_ldu_crtc_cursor_update_image(dev_priv,
340 * srf->snooper.image, 64, 64,
341 * du->hotspot_x, du->hotspot_y);
346 ttm_bo_unreserve(bo
);
349 void vmw_kms_cursor_post_execbuf(struct vmw_private
*dev_priv
)
351 struct drm_device
*dev
= dev_priv
->dev
;
352 struct vmw_display_unit
*du
;
353 struct drm_crtc
*crtc
;
355 mutex_lock(&dev
->mode_config
.mutex
);
357 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
, head
) {
358 du
= vmw_crtc_to_du(crtc
);
359 if (!du
->cursor_surface
||
360 du
->cursor_age
== du
->cursor_surface
->snooper
.age
)
363 du
->cursor_age
= du
->cursor_surface
->snooper
.age
;
364 vmw_cursor_update_image(dev_priv
,
365 du
->cursor_surface
->snooper
.image
,
366 64, 64, du
->hotspot_x
, du
->hotspot_y
);
369 mutex_unlock(&dev
->mode_config
.mutex
);
373 * Generic framebuffer code
376 int vmw_framebuffer_create_handle(struct drm_framebuffer
*fb
,
377 struct drm_file
*file_priv
,
378 unsigned int *handle
)
387 * Surface framebuffer code
390 #define vmw_framebuffer_to_vfbs(x) \
391 container_of(x, struct vmw_framebuffer_surface, base.base)
393 struct vmw_framebuffer_surface
{
394 struct vmw_framebuffer base
;
395 struct vmw_surface
*surface
;
396 struct vmw_dma_buffer
*buffer
;
397 struct list_head head
;
398 struct drm_master
*master
;
401 void vmw_framebuffer_surface_destroy(struct drm_framebuffer
*framebuffer
)
403 struct vmw_framebuffer_surface
*vfbs
=
404 vmw_framebuffer_to_vfbs(framebuffer
);
405 struct vmw_master
*vmaster
= vmw_master(vfbs
->master
);
408 mutex_lock(&vmaster
->fb_surf_mutex
);
409 list_del(&vfbs
->head
);
410 mutex_unlock(&vmaster
->fb_surf_mutex
);
412 drm_master_put(&vfbs
->master
);
413 drm_framebuffer_cleanup(framebuffer
);
414 vmw_surface_unreference(&vfbs
->surface
);
415 ttm_base_object_unref(&vfbs
->base
.user_obj
);
420 static int do_surface_dirty_sou(struct vmw_private
*dev_priv
,
421 struct drm_file
*file_priv
,
422 struct vmw_framebuffer
*framebuffer
,
423 unsigned flags
, unsigned color
,
424 struct drm_clip_rect
*clips
,
425 unsigned num_clips
, int inc
)
427 struct vmw_display_unit
*units
[VMWGFX_NUM_DISPLAY_UNITS
];
428 struct drm_clip_rect
*clips_ptr
;
429 struct drm_clip_rect
*tmp
;
430 struct drm_crtc
*crtc
;
433 int ret
= 0; /* silence warning */
434 int left
, right
, top
, bottom
;
437 SVGA3dCmdHeader header
;
438 SVGA3dCmdBlitSurfaceToScreen body
;
440 SVGASignedRect
*blits
;
443 list_for_each_entry(crtc
, &dev_priv
->dev
->mode_config
.crtc_list
,
445 if (crtc
->fb
!= &framebuffer
->base
)
447 units
[num_units
++] = vmw_crtc_to_du(crtc
);
450 BUG_ON(!clips
|| !num_clips
);
452 tmp
= kzalloc(sizeof(*tmp
) * num_clips
, GFP_KERNEL
);
453 if (unlikely(tmp
== NULL
)) {
454 DRM_ERROR("Temporary cliprect memory alloc failed.\n");
458 fifo_size
= sizeof(*cmd
) + sizeof(SVGASignedRect
) * num_clips
;
459 cmd
= kzalloc(fifo_size
, GFP_KERNEL
);
460 if (unlikely(cmd
== NULL
)) {
461 DRM_ERROR("Temporary fifo memory alloc failed.\n");
466 /* setup blits pointer */
467 blits
= (SVGASignedRect
*)&cmd
[1];
469 /* initial clip region */
475 /* skip the first clip rect */
476 for (i
= 1, clips_ptr
= clips
+ inc
;
477 i
< num_clips
; i
++, clips_ptr
+= inc
) {
478 left
= min_t(int, left
, (int)clips_ptr
->x1
);
479 right
= max_t(int, right
, (int)clips_ptr
->x2
);
480 top
= min_t(int, top
, (int)clips_ptr
->y1
);
481 bottom
= max_t(int, bottom
, (int)clips_ptr
->y2
);
484 /* only need to do this once */
485 memset(cmd
, 0, fifo_size
);
486 cmd
->header
.id
= cpu_to_le32(SVGA_3D_CMD_BLIT_SURFACE_TO_SCREEN
);
487 cmd
->header
.size
= cpu_to_le32(fifo_size
- sizeof(cmd
->header
));
489 cmd
->body
.srcRect
.left
= left
;
490 cmd
->body
.srcRect
.right
= right
;
491 cmd
->body
.srcRect
.top
= top
;
492 cmd
->body
.srcRect
.bottom
= bottom
;
495 for (i
= 0; i
< num_clips
; i
++, clips_ptr
+= inc
) {
496 tmp
[i
].x1
= clips_ptr
->x1
- left
;
497 tmp
[i
].x2
= clips_ptr
->x2
- left
;
498 tmp
[i
].y1
= clips_ptr
->y1
- top
;
499 tmp
[i
].y2
= clips_ptr
->y2
- top
;
502 /* do per unit writing, reuse fifo for each */
503 for (i
= 0; i
< num_units
; i
++) {
504 struct vmw_display_unit
*unit
= units
[i
];
505 struct vmw_clip_rect clip
;
508 clip
.x1
= left
- unit
->crtc
.x
;
509 clip
.y1
= top
- unit
->crtc
.y
;
510 clip
.x2
= right
- unit
->crtc
.x
;
511 clip
.y2
= bottom
- unit
->crtc
.y
;
513 /* skip any crtcs that misses the clip region */
514 if (clip
.x1
>= unit
->crtc
.mode
.hdisplay
||
515 clip
.y1
>= unit
->crtc
.mode
.vdisplay
||
516 clip
.x2
<= 0 || clip
.y2
<= 0)
520 * In order for the clip rects to be correctly scaled
521 * the src and dest rects needs to be the same size.
523 cmd
->body
.destRect
.left
= clip
.x1
;
524 cmd
->body
.destRect
.right
= clip
.x2
;
525 cmd
->body
.destRect
.top
= clip
.y1
;
526 cmd
->body
.destRect
.bottom
= clip
.y2
;
528 /* create a clip rect of the crtc in dest coords */
529 clip
.x2
= unit
->crtc
.mode
.hdisplay
- clip
.x1
;
530 clip
.y2
= unit
->crtc
.mode
.vdisplay
- clip
.y1
;
531 clip
.x1
= 0 - clip
.x1
;
532 clip
.y1
= 0 - clip
.y1
;
534 /* need to reset sid as it is changed by execbuf */
535 cmd
->body
.srcImage
.sid
= cpu_to_le32(framebuffer
->user_handle
);
536 cmd
->body
.destScreenId
= unit
->unit
;
538 /* clip and write blits to cmd stream */
539 vmw_clip_cliprects(tmp
, num_clips
, clip
, blits
, &num
);
541 /* if no cliprects hit skip this */
546 /* recalculate package length */
547 fifo_size
= sizeof(*cmd
) + sizeof(SVGASignedRect
) * num
;
548 cmd
->header
.size
= cpu_to_le32(fifo_size
- sizeof(cmd
->header
));
549 ret
= vmw_execbuf_process(file_priv
, dev_priv
, NULL
, cmd
,
552 if (unlikely(ret
!= 0))
564 int vmw_framebuffer_surface_dirty(struct drm_framebuffer
*framebuffer
,
565 struct drm_file
*file_priv
,
566 unsigned flags
, unsigned color
,
567 struct drm_clip_rect
*clips
,
570 struct vmw_private
*dev_priv
= vmw_priv(framebuffer
->dev
);
571 struct vmw_master
*vmaster
= vmw_master(file_priv
->master
);
572 struct vmw_framebuffer_surface
*vfbs
=
573 vmw_framebuffer_to_vfbs(framebuffer
);
574 struct drm_clip_rect norect
;
577 if (unlikely(vfbs
->master
!= file_priv
->master
))
580 /* Require ScreenObject support for 3D */
581 if (!dev_priv
->sou_priv
)
584 ret
= ttm_read_lock(&vmaster
->lock
, true);
585 if (unlikely(ret
!= 0))
591 norect
.x1
= norect
.y1
= 0;
592 norect
.x2
= framebuffer
->width
;
593 norect
.y2
= framebuffer
->height
;
594 } else if (flags
& DRM_MODE_FB_DIRTY_ANNOTATE_COPY
) {
596 inc
= 2; /* skip source rects */
599 ret
= do_surface_dirty_sou(dev_priv
, file_priv
, &vfbs
->base
,
601 clips
, num_clips
, inc
);
603 ttm_read_unlock(&vmaster
->lock
);
607 static struct drm_framebuffer_funcs vmw_framebuffer_surface_funcs
= {
608 .destroy
= vmw_framebuffer_surface_destroy
,
609 .dirty
= vmw_framebuffer_surface_dirty
,
610 .create_handle
= vmw_framebuffer_create_handle
,
613 static int vmw_kms_new_framebuffer_surface(struct vmw_private
*dev_priv
,
614 struct drm_file
*file_priv
,
615 struct vmw_surface
*surface
,
616 struct vmw_framebuffer
**out
,
617 const struct drm_mode_fb_cmd
621 struct drm_device
*dev
= dev_priv
->dev
;
622 struct vmw_framebuffer_surface
*vfbs
;
623 enum SVGA3dSurfaceFormat format
;
624 struct vmw_master
*vmaster
= vmw_master(file_priv
->master
);
627 /* 3D is only supported on HWv8 hosts which supports screen objects */
628 if (!dev_priv
->sou_priv
)
635 /* Surface must be marked as a scanout. */
636 if (unlikely(!surface
->scanout
))
639 if (unlikely(surface
->mip_levels
[0] != 1 ||
640 surface
->num_sizes
!= 1 ||
641 surface
->sizes
[0].width
< mode_cmd
->width
||
642 surface
->sizes
[0].height
< mode_cmd
->height
||
643 surface
->sizes
[0].depth
!= 1)) {
644 DRM_ERROR("Incompatible surface dimensions "
645 "for requested mode.\n");
649 switch (mode_cmd
->depth
) {
651 format
= SVGA3D_A8R8G8B8
;
654 format
= SVGA3D_X8R8G8B8
;
657 format
= SVGA3D_R5G6B5
;
660 format
= SVGA3D_A1R5G5B5
;
663 format
= SVGA3D_LUMINANCE8
;
666 DRM_ERROR("Invalid color depth: %d\n", mode_cmd
->depth
);
670 if (unlikely(format
!= surface
->format
)) {
671 DRM_ERROR("Invalid surface format for requested mode.\n");
675 vfbs
= kzalloc(sizeof(*vfbs
), GFP_KERNEL
);
681 ret
= drm_framebuffer_init(dev
, &vfbs
->base
.base
,
682 &vmw_framebuffer_surface_funcs
);
686 if (!vmw_surface_reference(surface
)) {
687 DRM_ERROR("failed to reference surface %p\n", surface
);
691 /* XXX get the first 3 from the surface info */
692 vfbs
->base
.base
.bits_per_pixel
= mode_cmd
->bpp
;
693 vfbs
->base
.base
.pitches
[0] = mode_cmd
->pitch
;
694 vfbs
->base
.base
.depth
= mode_cmd
->depth
;
695 vfbs
->base
.base
.width
= mode_cmd
->width
;
696 vfbs
->base
.base
.height
= mode_cmd
->height
;
697 vfbs
->surface
= surface
;
698 vfbs
->base
.user_handle
= mode_cmd
->handle
;
699 vfbs
->master
= drm_master_get(file_priv
->master
);
701 mutex_lock(&vmaster
->fb_surf_mutex
);
702 list_add_tail(&vfbs
->head
, &vmaster
->fb_surf
);
703 mutex_unlock(&vmaster
->fb_surf_mutex
);
710 drm_framebuffer_cleanup(&vfbs
->base
.base
);
718 * Dmabuf framebuffer code
721 #define vmw_framebuffer_to_vfbd(x) \
722 container_of(x, struct vmw_framebuffer_dmabuf, base.base)
724 struct vmw_framebuffer_dmabuf
{
725 struct vmw_framebuffer base
;
726 struct vmw_dma_buffer
*buffer
;
729 void vmw_framebuffer_dmabuf_destroy(struct drm_framebuffer
*framebuffer
)
731 struct vmw_framebuffer_dmabuf
*vfbd
=
732 vmw_framebuffer_to_vfbd(framebuffer
);
734 drm_framebuffer_cleanup(framebuffer
);
735 vmw_dmabuf_unreference(&vfbd
->buffer
);
736 ttm_base_object_unref(&vfbd
->base
.user_obj
);
741 static int do_dmabuf_dirty_ldu(struct vmw_private
*dev_priv
,
742 struct vmw_framebuffer
*framebuffer
,
743 unsigned flags
, unsigned color
,
744 struct drm_clip_rect
*clips
,
745 unsigned num_clips
, int increment
)
752 SVGAFifoCmdUpdate body
;
755 fifo_size
= sizeof(*cmd
) * num_clips
;
756 cmd
= vmw_fifo_reserve(dev_priv
, fifo_size
);
757 if (unlikely(cmd
== NULL
)) {
758 DRM_ERROR("Fifo reserve failed.\n");
762 memset(cmd
, 0, fifo_size
);
763 for (i
= 0; i
< num_clips
; i
++, clips
+= increment
) {
764 cmd
[i
].header
= cpu_to_le32(SVGA_CMD_UPDATE
);
765 cmd
[i
].body
.x
= cpu_to_le32(clips
->x1
);
766 cmd
[i
].body
.y
= cpu_to_le32(clips
->y1
);
767 cmd
[i
].body
.width
= cpu_to_le32(clips
->x2
- clips
->x1
);
768 cmd
[i
].body
.height
= cpu_to_le32(clips
->y2
- clips
->y1
);
771 vmw_fifo_commit(dev_priv
, fifo_size
);
775 static int do_dmabuf_define_gmrfb(struct drm_file
*file_priv
,
776 struct vmw_private
*dev_priv
,
777 struct vmw_framebuffer
*framebuffer
)
779 int depth
= framebuffer
->base
.depth
;
785 SVGAFifoCmdDefineGMRFB body
;
788 /* Emulate RGBA support, contrary to svga_reg.h this is not
789 * supported by hosts. This is only a problem if we are reading
790 * this value later and expecting what we uploaded back.
795 fifo_size
= sizeof(*cmd
);
796 cmd
= kmalloc(fifo_size
, GFP_KERNEL
);
797 if (unlikely(cmd
== NULL
)) {
798 DRM_ERROR("Failed to allocate temporary cmd buffer.\n");
802 memset(cmd
, 0, fifo_size
);
803 cmd
->header
= SVGA_CMD_DEFINE_GMRFB
;
804 cmd
->body
.format
.bitsPerPixel
= framebuffer
->base
.bits_per_pixel
;
805 cmd
->body
.format
.colorDepth
= depth
;
806 cmd
->body
.format
.reserved
= 0;
807 cmd
->body
.bytesPerLine
= framebuffer
->base
.pitches
[0];
808 cmd
->body
.ptr
.gmrId
= framebuffer
->user_handle
;
809 cmd
->body
.ptr
.offset
= 0;
811 ret
= vmw_execbuf_process(file_priv
, dev_priv
, NULL
, cmd
,
819 static int do_dmabuf_dirty_sou(struct drm_file
*file_priv
,
820 struct vmw_private
*dev_priv
,
821 struct vmw_framebuffer
*framebuffer
,
822 unsigned flags
, unsigned color
,
823 struct drm_clip_rect
*clips
,
824 unsigned num_clips
, int increment
)
826 struct vmw_display_unit
*units
[VMWGFX_NUM_DISPLAY_UNITS
];
827 struct drm_clip_rect
*clips_ptr
;
828 int i
, k
, num_units
, ret
;
829 struct drm_crtc
*crtc
;
834 SVGAFifoCmdBlitGMRFBToScreen body
;
837 ret
= do_dmabuf_define_gmrfb(file_priv
, dev_priv
, framebuffer
);
838 if (unlikely(ret
!= 0))
839 return ret
; /* define_gmrfb prints warnings */
841 fifo_size
= sizeof(*blits
) * num_clips
;
842 blits
= kmalloc(fifo_size
, GFP_KERNEL
);
843 if (unlikely(blits
== NULL
)) {
844 DRM_ERROR("Failed to allocate temporary cmd buffer.\n");
849 list_for_each_entry(crtc
, &dev_priv
->dev
->mode_config
.crtc_list
, head
) {
850 if (crtc
->fb
!= &framebuffer
->base
)
852 units
[num_units
++] = vmw_crtc_to_du(crtc
);
855 for (k
= 0; k
< num_units
; k
++) {
856 struct vmw_display_unit
*unit
= units
[k
];
860 for (i
= 0; i
< num_clips
; i
++, clips_ptr
+= increment
) {
861 int clip_x1
= clips_ptr
->x1
- unit
->crtc
.x
;
862 int clip_y1
= clips_ptr
->y1
- unit
->crtc
.y
;
863 int clip_x2
= clips_ptr
->x2
- unit
->crtc
.x
;
864 int clip_y2
= clips_ptr
->y2
- unit
->crtc
.y
;
867 /* skip any crtcs that misses the clip region */
868 if (clip_x1
>= unit
->crtc
.mode
.hdisplay
||
869 clip_y1
>= unit
->crtc
.mode
.vdisplay
||
870 clip_x2
<= 0 || clip_y2
<= 0)
873 /* clip size to crtc size */
874 clip_x2
= min_t(int, clip_x2
, unit
->crtc
.mode
.hdisplay
);
875 clip_y2
= min_t(int, clip_y2
, unit
->crtc
.mode
.vdisplay
);
877 /* translate both src and dest to bring clip into screen */
878 move_x
= min_t(int, clip_x1
, 0);
879 move_y
= min_t(int, clip_y1
, 0);
881 /* actual translate done here */
882 blits
[hit_num
].header
= SVGA_CMD_BLIT_GMRFB_TO_SCREEN
;
883 blits
[hit_num
].body
.destScreenId
= unit
->unit
;
884 blits
[hit_num
].body
.srcOrigin
.x
= clips_ptr
->x1
- move_x
;
885 blits
[hit_num
].body
.srcOrigin
.y
= clips_ptr
->y1
- move_y
;
886 blits
[hit_num
].body
.destRect
.left
= clip_x1
- move_x
;
887 blits
[hit_num
].body
.destRect
.top
= clip_y1
- move_y
;
888 blits
[hit_num
].body
.destRect
.right
= clip_x2
;
889 blits
[hit_num
].body
.destRect
.bottom
= clip_y2
;
893 /* no clips hit the crtc */
897 fifo_size
= sizeof(*blits
) * hit_num
;
898 ret
= vmw_execbuf_process(file_priv
, dev_priv
, NULL
, blits
,
901 if (unlikely(ret
!= 0))
910 int vmw_framebuffer_dmabuf_dirty(struct drm_framebuffer
*framebuffer
,
911 struct drm_file
*file_priv
,
912 unsigned flags
, unsigned color
,
913 struct drm_clip_rect
*clips
,
916 struct vmw_private
*dev_priv
= vmw_priv(framebuffer
->dev
);
917 struct vmw_master
*vmaster
= vmw_master(file_priv
->master
);
918 struct vmw_framebuffer_dmabuf
*vfbd
=
919 vmw_framebuffer_to_vfbd(framebuffer
);
920 struct drm_clip_rect norect
;
921 int ret
, increment
= 1;
923 ret
= ttm_read_lock(&vmaster
->lock
, true);
924 if (unlikely(ret
!= 0))
930 norect
.x1
= norect
.y1
= 0;
931 norect
.x2
= framebuffer
->width
;
932 norect
.y2
= framebuffer
->height
;
933 } else if (flags
& DRM_MODE_FB_DIRTY_ANNOTATE_COPY
) {
938 if (dev_priv
->ldu_priv
) {
939 ret
= do_dmabuf_dirty_ldu(dev_priv
, &vfbd
->base
,
941 clips
, num_clips
, increment
);
943 ret
= do_dmabuf_dirty_sou(file_priv
, dev_priv
, &vfbd
->base
,
945 clips
, num_clips
, increment
);
948 ttm_read_unlock(&vmaster
->lock
);
952 static struct drm_framebuffer_funcs vmw_framebuffer_dmabuf_funcs
= {
953 .destroy
= vmw_framebuffer_dmabuf_destroy
,
954 .dirty
= vmw_framebuffer_dmabuf_dirty
,
955 .create_handle
= vmw_framebuffer_create_handle
,
959 * Pin the dmabuffer to the start of vram.
961 static int vmw_framebuffer_dmabuf_pin(struct vmw_framebuffer
*vfb
)
963 struct vmw_private
*dev_priv
= vmw_priv(vfb
->base
.dev
);
964 struct vmw_framebuffer_dmabuf
*vfbd
=
965 vmw_framebuffer_to_vfbd(&vfb
->base
);
968 /* This code should not be used with screen objects */
969 BUG_ON(dev_priv
->sou_priv
);
971 vmw_overlay_pause_all(dev_priv
);
973 ret
= vmw_dmabuf_to_start_of_vram(dev_priv
, vfbd
->buffer
, true, false);
975 vmw_overlay_resume_all(dev_priv
);
982 static int vmw_framebuffer_dmabuf_unpin(struct vmw_framebuffer
*vfb
)
984 struct vmw_private
*dev_priv
= vmw_priv(vfb
->base
.dev
);
985 struct vmw_framebuffer_dmabuf
*vfbd
=
986 vmw_framebuffer_to_vfbd(&vfb
->base
);
989 WARN_ON(!vfbd
->buffer
);
993 return vmw_dmabuf_unpin(dev_priv
, vfbd
->buffer
, false);
996 static int vmw_kms_new_framebuffer_dmabuf(struct vmw_private
*dev_priv
,
997 struct vmw_dma_buffer
*dmabuf
,
998 struct vmw_framebuffer
**out
,
999 const struct drm_mode_fb_cmd
1003 struct drm_device
*dev
= dev_priv
->dev
;
1004 struct vmw_framebuffer_dmabuf
*vfbd
;
1005 unsigned int requested_size
;
1008 requested_size
= mode_cmd
->height
* mode_cmd
->pitch
;
1009 if (unlikely(requested_size
> dmabuf
->base
.num_pages
* PAGE_SIZE
)) {
1010 DRM_ERROR("Screen buffer object size is too small "
1011 "for requested mode.\n");
1015 /* Limited framebuffer color depth support for screen objects */
1016 if (dev_priv
->sou_priv
) {
1017 switch (mode_cmd
->depth
) {
1020 /* Only support 32 bpp for 32 and 24 depth fbs */
1021 if (mode_cmd
->bpp
== 32)
1024 DRM_ERROR("Invalid color depth/bbp: %d %d\n",
1025 mode_cmd
->depth
, mode_cmd
->bpp
);
1029 /* Only support 16 bpp for 16 and 15 depth fbs */
1030 if (mode_cmd
->bpp
== 16)
1033 DRM_ERROR("Invalid color depth/bbp: %d %d\n",
1034 mode_cmd
->depth
, mode_cmd
->bpp
);
1037 DRM_ERROR("Invalid color depth: %d\n", mode_cmd
->depth
);
1042 vfbd
= kzalloc(sizeof(*vfbd
), GFP_KERNEL
);
1048 ret
= drm_framebuffer_init(dev
, &vfbd
->base
.base
,
1049 &vmw_framebuffer_dmabuf_funcs
);
1053 if (!vmw_dmabuf_reference(dmabuf
)) {
1054 DRM_ERROR("failed to reference dmabuf %p\n", dmabuf
);
1058 vfbd
->base
.base
.bits_per_pixel
= mode_cmd
->bpp
;
1059 vfbd
->base
.base
.pitches
[0] = mode_cmd
->pitch
;
1060 vfbd
->base
.base
.depth
= mode_cmd
->depth
;
1061 vfbd
->base
.base
.width
= mode_cmd
->width
;
1062 vfbd
->base
.base
.height
= mode_cmd
->height
;
1063 if (!dev_priv
->sou_priv
) {
1064 vfbd
->base
.pin
= vmw_framebuffer_dmabuf_pin
;
1065 vfbd
->base
.unpin
= vmw_framebuffer_dmabuf_unpin
;
1067 vfbd
->base
.dmabuf
= true;
1068 vfbd
->buffer
= dmabuf
;
1069 vfbd
->base
.user_handle
= mode_cmd
->handle
;
1075 drm_framebuffer_cleanup(&vfbd
->base
.base
);
1083 * Generic Kernel modesetting functions
1086 static struct drm_framebuffer
*vmw_kms_fb_create(struct drm_device
*dev
,
1087 struct drm_file
*file_priv
,
1088 struct drm_mode_fb_cmd2
*mode_cmd2
)
1090 struct vmw_private
*dev_priv
= vmw_priv(dev
);
1091 struct ttm_object_file
*tfile
= vmw_fpriv(file_priv
)->tfile
;
1092 struct vmw_framebuffer
*vfb
= NULL
;
1093 struct vmw_surface
*surface
= NULL
;
1094 struct vmw_dma_buffer
*bo
= NULL
;
1095 struct ttm_base_object
*user_obj
;
1096 struct drm_mode_fb_cmd mode_cmd
;
1099 mode_cmd
.width
= mode_cmd2
->width
;
1100 mode_cmd
.height
= mode_cmd2
->height
;
1101 mode_cmd
.pitch
= mode_cmd2
->pitches
[0];
1102 mode_cmd
.handle
= mode_cmd2
->handles
[0];
1103 drm_fb_get_bpp_depth(mode_cmd2
->pixel_format
, &mode_cmd
.depth
,
1107 * This code should be conditioned on Screen Objects not being used.
1108 * If screen objects are used, we can allocate a GMR to hold the
1109 * requested framebuffer.
1112 if (!vmw_kms_validate_mode_vram(dev_priv
,
1115 DRM_ERROR("VRAM size is too small for requested mode.\n");
1116 return ERR_PTR(-ENOMEM
);
1120 * Take a reference on the user object of the resource
1121 * backing the kms fb. This ensures that user-space handle
1122 * lookups on that resource will always work as long as
1123 * it's registered with a kms framebuffer. This is important,
1124 * since vmw_execbuf_process identifies resources in the
1125 * command stream using user-space handles.
1128 user_obj
= ttm_base_object_lookup(tfile
, mode_cmd
.handle
);
1129 if (unlikely(user_obj
== NULL
)) {
1130 DRM_ERROR("Could not locate requested kms frame buffer.\n");
1131 return ERR_PTR(-ENOENT
);
1135 * End conditioned code.
1138 /* returns either a dmabuf or surface */
1139 ret
= vmw_user_lookup_handle(dev_priv
, tfile
,
1145 /* Create the new framebuffer depending one what we got back */
1147 ret
= vmw_kms_new_framebuffer_dmabuf(dev_priv
, bo
, &vfb
,
1150 ret
= vmw_kms_new_framebuffer_surface(dev_priv
, file_priv
,
1151 surface
, &vfb
, &mode_cmd
);
1156 /* vmw_user_lookup_handle takes one ref so does new_fb */
1158 vmw_dmabuf_unreference(&bo
);
1160 vmw_surface_unreference(&surface
);
1163 DRM_ERROR("failed to create vmw_framebuffer: %i\n", ret
);
1164 ttm_base_object_unref(&user_obj
);
1165 return ERR_PTR(ret
);
1167 vfb
->user_obj
= user_obj
;
1172 static struct drm_mode_config_funcs vmw_kms_funcs
= {
1173 .fb_create
= vmw_kms_fb_create
,
1176 int vmw_kms_present(struct vmw_private
*dev_priv
,
1177 struct drm_file
*file_priv
,
1178 struct vmw_framebuffer
*vfb
,
1179 struct vmw_surface
*surface
,
1181 int32_t destX
, int32_t destY
,
1182 struct drm_vmw_rect
*clips
,
1185 struct vmw_display_unit
*units
[VMWGFX_NUM_DISPLAY_UNITS
];
1186 struct drm_clip_rect
*tmp
;
1187 struct drm_crtc
*crtc
;
1189 int i
, k
, num_units
;
1190 int ret
= 0; /* silence warning */
1191 int left
, right
, top
, bottom
;
1194 SVGA3dCmdHeader header
;
1195 SVGA3dCmdBlitSurfaceToScreen body
;
1197 SVGASignedRect
*blits
;
1200 list_for_each_entry(crtc
, &dev_priv
->dev
->mode_config
.crtc_list
, head
) {
1201 if (crtc
->fb
!= &vfb
->base
)
1203 units
[num_units
++] = vmw_crtc_to_du(crtc
);
1206 BUG_ON(surface
== NULL
);
1207 BUG_ON(!clips
|| !num_clips
);
1209 tmp
= kzalloc(sizeof(*tmp
) * num_clips
, GFP_KERNEL
);
1210 if (unlikely(tmp
== NULL
)) {
1211 DRM_ERROR("Temporary cliprect memory alloc failed.\n");
1215 fifo_size
= sizeof(*cmd
) + sizeof(SVGASignedRect
) * num_clips
;
1216 cmd
= kmalloc(fifo_size
, GFP_KERNEL
);
1217 if (unlikely(cmd
== NULL
)) {
1218 DRM_ERROR("Failed to allocate temporary fifo memory.\n");
1224 right
= clips
->x
+ clips
->w
;
1226 bottom
= clips
->y
+ clips
->h
;
1228 for (i
= 1; i
< num_clips
; i
++) {
1229 left
= min_t(int, left
, (int)clips
[i
].x
);
1230 right
= max_t(int, right
, (int)clips
[i
].x
+ clips
[i
].w
);
1231 top
= min_t(int, top
, (int)clips
[i
].y
);
1232 bottom
= max_t(int, bottom
, (int)clips
[i
].y
+ clips
[i
].h
);
1235 /* only need to do this once */
1236 memset(cmd
, 0, fifo_size
);
1237 cmd
->header
.id
= cpu_to_le32(SVGA_3D_CMD_BLIT_SURFACE_TO_SCREEN
);
1239 blits
= (SVGASignedRect
*)&cmd
[1];
1241 cmd
->body
.srcRect
.left
= left
;
1242 cmd
->body
.srcRect
.right
= right
;
1243 cmd
->body
.srcRect
.top
= top
;
1244 cmd
->body
.srcRect
.bottom
= bottom
;
1246 for (i
= 0; i
< num_clips
; i
++) {
1247 tmp
[i
].x1
= clips
[i
].x
- left
;
1248 tmp
[i
].x2
= clips
[i
].x
+ clips
[i
].w
- left
;
1249 tmp
[i
].y1
= clips
[i
].y
- top
;
1250 tmp
[i
].y2
= clips
[i
].y
+ clips
[i
].h
- top
;
1253 for (k
= 0; k
< num_units
; k
++) {
1254 struct vmw_display_unit
*unit
= units
[k
];
1255 struct vmw_clip_rect clip
;
1258 clip
.x1
= left
+ destX
- unit
->crtc
.x
;
1259 clip
.y1
= top
+ destY
- unit
->crtc
.y
;
1260 clip
.x2
= right
+ destX
- unit
->crtc
.x
;
1261 clip
.y2
= bottom
+ destY
- unit
->crtc
.y
;
1263 /* skip any crtcs that misses the clip region */
1264 if (clip
.x1
>= unit
->crtc
.mode
.hdisplay
||
1265 clip
.y1
>= unit
->crtc
.mode
.vdisplay
||
1266 clip
.x2
<= 0 || clip
.y2
<= 0)
1270 * In order for the clip rects to be correctly scaled
1271 * the src and dest rects needs to be the same size.
1273 cmd
->body
.destRect
.left
= clip
.x1
;
1274 cmd
->body
.destRect
.right
= clip
.x2
;
1275 cmd
->body
.destRect
.top
= clip
.y1
;
1276 cmd
->body
.destRect
.bottom
= clip
.y2
;
1278 /* create a clip rect of the crtc in dest coords */
1279 clip
.x2
= unit
->crtc
.mode
.hdisplay
- clip
.x1
;
1280 clip
.y2
= unit
->crtc
.mode
.vdisplay
- clip
.y1
;
1281 clip
.x1
= 0 - clip
.x1
;
1282 clip
.y1
= 0 - clip
.y1
;
1284 /* need to reset sid as it is changed by execbuf */
1285 cmd
->body
.srcImage
.sid
= sid
;
1286 cmd
->body
.destScreenId
= unit
->unit
;
1288 /* clip and write blits to cmd stream */
1289 vmw_clip_cliprects(tmp
, num_clips
, clip
, blits
, &num
);
1291 /* if no cliprects hit skip this */
1295 /* recalculate package length */
1296 fifo_size
= sizeof(*cmd
) + sizeof(SVGASignedRect
) * num
;
1297 cmd
->header
.size
= cpu_to_le32(fifo_size
- sizeof(cmd
->header
));
1298 ret
= vmw_execbuf_process(file_priv
, dev_priv
, NULL
, cmd
,
1299 fifo_size
, 0, NULL
);
1301 if (unlikely(ret
!= 0))
1312 int vmw_kms_readback(struct vmw_private
*dev_priv
,
1313 struct drm_file
*file_priv
,
1314 struct vmw_framebuffer
*vfb
,
1315 struct drm_vmw_fence_rep __user
*user_fence_rep
,
1316 struct drm_vmw_rect
*clips
,
1319 struct vmw_framebuffer_dmabuf
*vfbd
=
1320 vmw_framebuffer_to_vfbd(&vfb
->base
);
1321 struct vmw_dma_buffer
*dmabuf
= vfbd
->buffer
;
1322 struct vmw_display_unit
*units
[VMWGFX_NUM_DISPLAY_UNITS
];
1323 struct drm_crtc
*crtc
;
1325 int i
, k
, ret
, num_units
, blits_pos
;
1329 SVGAFifoCmdDefineGMRFB body
;
1333 SVGAFifoCmdBlitScreenToGMRFB body
;
1337 list_for_each_entry(crtc
, &dev_priv
->dev
->mode_config
.crtc_list
, head
) {
1338 if (crtc
->fb
!= &vfb
->base
)
1340 units
[num_units
++] = vmw_crtc_to_du(crtc
);
1343 BUG_ON(dmabuf
== NULL
);
1344 BUG_ON(!clips
|| !num_clips
);
1346 /* take a safe guess at fifo size */
1347 fifo_size
= sizeof(*cmd
) + sizeof(*blits
) * num_clips
* num_units
;
1348 cmd
= kmalloc(fifo_size
, GFP_KERNEL
);
1349 if (unlikely(cmd
== NULL
)) {
1350 DRM_ERROR("Failed to allocate temporary fifo memory.\n");
1354 memset(cmd
, 0, fifo_size
);
1355 cmd
->header
= SVGA_CMD_DEFINE_GMRFB
;
1356 cmd
->body
.format
.bitsPerPixel
= vfb
->base
.bits_per_pixel
;
1357 cmd
->body
.format
.colorDepth
= vfb
->base
.depth
;
1358 cmd
->body
.format
.reserved
= 0;
1359 cmd
->body
.bytesPerLine
= vfb
->base
.pitches
[0];
1360 cmd
->body
.ptr
.gmrId
= vfb
->user_handle
;
1361 cmd
->body
.ptr
.offset
= 0;
1363 blits
= (void *)&cmd
[1];
1365 for (i
= 0; i
< num_units
; i
++) {
1366 struct drm_vmw_rect
*c
= clips
;
1367 for (k
= 0; k
< num_clips
; k
++, c
++) {
1368 /* transform clip coords to crtc origin based coords */
1369 int clip_x1
= c
->x
- units
[i
]->crtc
.x
;
1370 int clip_x2
= c
->x
- units
[i
]->crtc
.x
+ c
->w
;
1371 int clip_y1
= c
->y
- units
[i
]->crtc
.y
;
1372 int clip_y2
= c
->y
- units
[i
]->crtc
.y
+ c
->h
;
1376 /* compensate for clipping, we negate
1377 * a negative number and add that.
1385 clip_x1
= max(clip_x1
, 0);
1386 clip_y1
= max(clip_y1
, 0);
1387 clip_x2
= min(clip_x2
, units
[i
]->crtc
.mode
.hdisplay
);
1388 clip_y2
= min(clip_y2
, units
[i
]->crtc
.mode
.vdisplay
);
1390 /* and cull any rects that misses the crtc */
1391 if (clip_x1
>= units
[i
]->crtc
.mode
.hdisplay
||
1392 clip_y1
>= units
[i
]->crtc
.mode
.vdisplay
||
1393 clip_x2
<= 0 || clip_y2
<= 0)
1396 blits
[blits_pos
].header
= SVGA_CMD_BLIT_SCREEN_TO_GMRFB
;
1397 blits
[blits_pos
].body
.srcScreenId
= units
[i
]->unit
;
1398 blits
[blits_pos
].body
.destOrigin
.x
= dest_x
;
1399 blits
[blits_pos
].body
.destOrigin
.y
= dest_y
;
1401 blits
[blits_pos
].body
.srcRect
.left
= clip_x1
;
1402 blits
[blits_pos
].body
.srcRect
.top
= clip_y1
;
1403 blits
[blits_pos
].body
.srcRect
.right
= clip_x2
;
1404 blits
[blits_pos
].body
.srcRect
.bottom
= clip_y2
;
1408 /* reset size here and use calculated exact size from loops */
1409 fifo_size
= sizeof(*cmd
) + sizeof(*blits
) * blits_pos
;
1411 ret
= vmw_execbuf_process(file_priv
, dev_priv
, NULL
, cmd
, fifo_size
,
1419 int vmw_kms_init(struct vmw_private
*dev_priv
)
1421 struct drm_device
*dev
= dev_priv
->dev
;
1424 drm_mode_config_init(dev
);
1425 dev
->mode_config
.funcs
= &vmw_kms_funcs
;
1426 dev
->mode_config
.min_width
= 1;
1427 dev
->mode_config
.min_height
= 1;
1428 /* assumed largest fb size */
1429 dev
->mode_config
.max_width
= 8192;
1430 dev
->mode_config
.max_height
= 8192;
1432 ret
= vmw_kms_init_screen_object_display(dev_priv
);
1433 if (ret
) /* Fallback */
1434 (void)vmw_kms_init_legacy_display_system(dev_priv
);
1439 int vmw_kms_close(struct vmw_private
*dev_priv
)
1442 * Docs says we should take the lock before calling this function
1443 * but since it destroys encoders and our destructor calls
1444 * drm_encoder_cleanup which takes the lock we deadlock.
1446 drm_mode_config_cleanup(dev_priv
->dev
);
1447 if (dev_priv
->sou_priv
)
1448 vmw_kms_close_screen_object_display(dev_priv
);
1450 vmw_kms_close_legacy_display_system(dev_priv
);
1454 int vmw_kms_cursor_bypass_ioctl(struct drm_device
*dev
, void *data
,
1455 struct drm_file
*file_priv
)
1457 struct drm_vmw_cursor_bypass_arg
*arg
= data
;
1458 struct vmw_display_unit
*du
;
1459 struct drm_mode_object
*obj
;
1460 struct drm_crtc
*crtc
;
1464 mutex_lock(&dev
->mode_config
.mutex
);
1465 if (arg
->flags
& DRM_VMW_CURSOR_BYPASS_ALL
) {
1467 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
, head
) {
1468 du
= vmw_crtc_to_du(crtc
);
1469 du
->hotspot_x
= arg
->xhot
;
1470 du
->hotspot_y
= arg
->yhot
;
1473 mutex_unlock(&dev
->mode_config
.mutex
);
1477 obj
= drm_mode_object_find(dev
, arg
->crtc_id
, DRM_MODE_OBJECT_CRTC
);
1483 crtc
= obj_to_crtc(obj
);
1484 du
= vmw_crtc_to_du(crtc
);
1486 du
->hotspot_x
= arg
->xhot
;
1487 du
->hotspot_y
= arg
->yhot
;
1490 mutex_unlock(&dev
->mode_config
.mutex
);
1495 int vmw_kms_write_svga(struct vmw_private
*vmw_priv
,
1496 unsigned width
, unsigned height
, unsigned pitch
,
1497 unsigned bpp
, unsigned depth
)
1499 if (vmw_priv
->capabilities
& SVGA_CAP_PITCHLOCK
)
1500 vmw_write(vmw_priv
, SVGA_REG_PITCHLOCK
, pitch
);
1501 else if (vmw_fifo_have_pitchlock(vmw_priv
))
1502 iowrite32(pitch
, vmw_priv
->mmio_virt
+ SVGA_FIFO_PITCHLOCK
);
1503 vmw_write(vmw_priv
, SVGA_REG_WIDTH
, width
);
1504 vmw_write(vmw_priv
, SVGA_REG_HEIGHT
, height
);
1505 vmw_write(vmw_priv
, SVGA_REG_BITS_PER_PIXEL
, bpp
);
1507 if (vmw_read(vmw_priv
, SVGA_REG_DEPTH
) != depth
) {
1508 DRM_ERROR("Invalid depth %u for %u bpp, host expects %u\n",
1509 depth
, bpp
, vmw_read(vmw_priv
, SVGA_REG_DEPTH
));
1516 int vmw_kms_save_vga(struct vmw_private
*vmw_priv
)
1518 struct vmw_vga_topology_state
*save
;
1521 vmw_priv
->vga_width
= vmw_read(vmw_priv
, SVGA_REG_WIDTH
);
1522 vmw_priv
->vga_height
= vmw_read(vmw_priv
, SVGA_REG_HEIGHT
);
1523 vmw_priv
->vga_bpp
= vmw_read(vmw_priv
, SVGA_REG_BITS_PER_PIXEL
);
1524 if (vmw_priv
->capabilities
& SVGA_CAP_PITCHLOCK
)
1525 vmw_priv
->vga_pitchlock
=
1526 vmw_read(vmw_priv
, SVGA_REG_PITCHLOCK
);
1527 else if (vmw_fifo_have_pitchlock(vmw_priv
))
1528 vmw_priv
->vga_pitchlock
= ioread32(vmw_priv
->mmio_virt
+
1529 SVGA_FIFO_PITCHLOCK
);
1531 if (!(vmw_priv
->capabilities
& SVGA_CAP_DISPLAY_TOPOLOGY
))
1534 vmw_priv
->num_displays
= vmw_read(vmw_priv
,
1535 SVGA_REG_NUM_GUEST_DISPLAYS
);
1537 if (vmw_priv
->num_displays
== 0)
1538 vmw_priv
->num_displays
= 1;
1540 for (i
= 0; i
< vmw_priv
->num_displays
; ++i
) {
1541 save
= &vmw_priv
->vga_save
[i
];
1542 vmw_write(vmw_priv
, SVGA_REG_DISPLAY_ID
, i
);
1543 save
->primary
= vmw_read(vmw_priv
, SVGA_REG_DISPLAY_IS_PRIMARY
);
1544 save
->pos_x
= vmw_read(vmw_priv
, SVGA_REG_DISPLAY_POSITION_X
);
1545 save
->pos_y
= vmw_read(vmw_priv
, SVGA_REG_DISPLAY_POSITION_Y
);
1546 save
->width
= vmw_read(vmw_priv
, SVGA_REG_DISPLAY_WIDTH
);
1547 save
->height
= vmw_read(vmw_priv
, SVGA_REG_DISPLAY_HEIGHT
);
1548 vmw_write(vmw_priv
, SVGA_REG_DISPLAY_ID
, SVGA_ID_INVALID
);
1549 if (i
== 0 && vmw_priv
->num_displays
== 1 &&
1550 save
->width
== 0 && save
->height
== 0) {
1553 * It should be fairly safe to assume that these
1554 * values are uninitialized.
1557 save
->width
= vmw_priv
->vga_width
- save
->pos_x
;
1558 save
->height
= vmw_priv
->vga_height
- save
->pos_y
;
1565 int vmw_kms_restore_vga(struct vmw_private
*vmw_priv
)
1567 struct vmw_vga_topology_state
*save
;
1570 vmw_write(vmw_priv
, SVGA_REG_WIDTH
, vmw_priv
->vga_width
);
1571 vmw_write(vmw_priv
, SVGA_REG_HEIGHT
, vmw_priv
->vga_height
);
1572 vmw_write(vmw_priv
, SVGA_REG_BITS_PER_PIXEL
, vmw_priv
->vga_bpp
);
1573 if (vmw_priv
->capabilities
& SVGA_CAP_PITCHLOCK
)
1574 vmw_write(vmw_priv
, SVGA_REG_PITCHLOCK
,
1575 vmw_priv
->vga_pitchlock
);
1576 else if (vmw_fifo_have_pitchlock(vmw_priv
))
1577 iowrite32(vmw_priv
->vga_pitchlock
,
1578 vmw_priv
->mmio_virt
+ SVGA_FIFO_PITCHLOCK
);
1580 if (!(vmw_priv
->capabilities
& SVGA_CAP_DISPLAY_TOPOLOGY
))
1583 for (i
= 0; i
< vmw_priv
->num_displays
; ++i
) {
1584 save
= &vmw_priv
->vga_save
[i
];
1585 vmw_write(vmw_priv
, SVGA_REG_DISPLAY_ID
, i
);
1586 vmw_write(vmw_priv
, SVGA_REG_DISPLAY_IS_PRIMARY
, save
->primary
);
1587 vmw_write(vmw_priv
, SVGA_REG_DISPLAY_POSITION_X
, save
->pos_x
);
1588 vmw_write(vmw_priv
, SVGA_REG_DISPLAY_POSITION_Y
, save
->pos_y
);
1589 vmw_write(vmw_priv
, SVGA_REG_DISPLAY_WIDTH
, save
->width
);
1590 vmw_write(vmw_priv
, SVGA_REG_DISPLAY_HEIGHT
, save
->height
);
1591 vmw_write(vmw_priv
, SVGA_REG_DISPLAY_ID
, SVGA_ID_INVALID
);
1597 bool vmw_kms_validate_mode_vram(struct vmw_private
*dev_priv
,
1601 return ((u64
) pitch
* (u64
) height
) < (u64
) dev_priv
->vram_size
;
1606 * Function called by DRM code called with vbl_lock held.
1608 u32
vmw_get_vblank_counter(struct drm_device
*dev
, int crtc
)
1614 * Function called by DRM code called with vbl_lock held.
1616 int vmw_enable_vblank(struct drm_device
*dev
, int crtc
)
1622 * Function called by DRM code called with vbl_lock held.
1624 void vmw_disable_vblank(struct drm_device
*dev
, int crtc
)
1630 * Small shared kms functions.
1633 int vmw_du_update_layout(struct vmw_private
*dev_priv
, unsigned num
,
1634 struct drm_vmw_rect
*rects
)
1636 struct drm_device
*dev
= dev_priv
->dev
;
1637 struct vmw_display_unit
*du
;
1638 struct drm_connector
*con
;
1640 mutex_lock(&dev
->mode_config
.mutex
);
1646 DRM_INFO("%s: new layout ", __func__
);
1647 for (i
= 0; i
< num
; i
++)
1648 DRM_INFO("(%i, %i %ux%u) ", rects
[i
].x
, rects
[i
].y
,
1649 rects
[i
].w
, rects
[i
].h
);
1654 list_for_each_entry(con
, &dev
->mode_config
.connector_list
, head
) {
1655 du
= vmw_connector_to_du(con
);
1656 if (num
> du
->unit
) {
1657 du
->pref_width
= rects
[du
->unit
].w
;
1658 du
->pref_height
= rects
[du
->unit
].h
;
1659 du
->pref_active
= true;
1660 du
->gui_x
= rects
[du
->unit
].x
;
1661 du
->gui_y
= rects
[du
->unit
].y
;
1663 du
->pref_width
= 800;
1664 du
->pref_height
= 600;
1665 du
->pref_active
= false;
1667 con
->status
= vmw_du_connector_detect(con
, true);
1670 mutex_unlock(&dev
->mode_config
.mutex
);
1675 void vmw_du_crtc_save(struct drm_crtc
*crtc
)
1679 void vmw_du_crtc_restore(struct drm_crtc
*crtc
)
1683 void vmw_du_crtc_gamma_set(struct drm_crtc
*crtc
,
1684 u16
*r
, u16
*g
, u16
*b
,
1685 uint32_t start
, uint32_t size
)
1687 struct vmw_private
*dev_priv
= vmw_priv(crtc
->dev
);
1690 for (i
= 0; i
< size
; i
++) {
1691 DRM_DEBUG("%d r/g/b = 0x%04x / 0x%04x / 0x%04x\n", i
,
1693 vmw_write(dev_priv
, SVGA_PALETTE_BASE
+ i
* 3 + 0, r
[i
] >> 8);
1694 vmw_write(dev_priv
, SVGA_PALETTE_BASE
+ i
* 3 + 1, g
[i
] >> 8);
1695 vmw_write(dev_priv
, SVGA_PALETTE_BASE
+ i
* 3 + 2, b
[i
] >> 8);
1699 void vmw_du_connector_dpms(struct drm_connector
*connector
, int mode
)
1703 void vmw_du_connector_save(struct drm_connector
*connector
)
1707 void vmw_du_connector_restore(struct drm_connector
*connector
)
1711 enum drm_connector_status
1712 vmw_du_connector_detect(struct drm_connector
*connector
, bool force
)
1714 uint32_t num_displays
;
1715 struct drm_device
*dev
= connector
->dev
;
1716 struct vmw_private
*dev_priv
= vmw_priv(dev
);
1717 struct vmw_display_unit
*du
= vmw_connector_to_du(connector
);
1719 mutex_lock(&dev_priv
->hw_mutex
);
1720 num_displays
= vmw_read(dev_priv
, SVGA_REG_NUM_DISPLAYS
);
1721 mutex_unlock(&dev_priv
->hw_mutex
);
1723 return ((vmw_connector_to_du(connector
)->unit
< num_displays
&&
1725 connector_status_connected
: connector_status_disconnected
);
1728 static struct drm_display_mode vmw_kms_connector_builtin
[] = {
1730 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER
, 25175, 640, 656,
1731 752, 800, 0, 480, 489, 492, 525, 0,
1732 DRM_MODE_FLAG_NHSYNC
| DRM_MODE_FLAG_NVSYNC
) },
1734 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER
, 40000, 800, 840,
1735 968, 1056, 0, 600, 601, 605, 628, 0,
1736 DRM_MODE_FLAG_PHSYNC
| DRM_MODE_FLAG_PVSYNC
) },
1738 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER
, 65000, 1024, 1048,
1739 1184, 1344, 0, 768, 771, 777, 806, 0,
1740 DRM_MODE_FLAG_NHSYNC
| DRM_MODE_FLAG_NVSYNC
) },
1742 { DRM_MODE("1152x864", DRM_MODE_TYPE_DRIVER
, 108000, 1152, 1216,
1743 1344, 1600, 0, 864, 865, 868, 900, 0,
1744 DRM_MODE_FLAG_PHSYNC
| DRM_MODE_FLAG_PVSYNC
) },
1746 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER
, 79500, 1280, 1344,
1747 1472, 1664, 0, 768, 771, 778, 798, 0,
1748 DRM_MODE_FLAG_NHSYNC
| DRM_MODE_FLAG_PVSYNC
) },
1750 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER
, 83500, 1280, 1352,
1751 1480, 1680, 0, 800, 803, 809, 831, 0,
1752 DRM_MODE_FLAG_PHSYNC
| DRM_MODE_FLAG_NVSYNC
) },
1754 { DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER
, 108000, 1280, 1376,
1755 1488, 1800, 0, 960, 961, 964, 1000, 0,
1756 DRM_MODE_FLAG_PHSYNC
| DRM_MODE_FLAG_PVSYNC
) },
1757 /* 1280x1024@60Hz */
1758 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER
, 108000, 1280, 1328,
1759 1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
1760 DRM_MODE_FLAG_PHSYNC
| DRM_MODE_FLAG_PVSYNC
) },
1762 { DRM_MODE("1360x768", DRM_MODE_TYPE_DRIVER
, 85500, 1360, 1424,
1763 1536, 1792, 0, 768, 771, 777, 795, 0,
1764 DRM_MODE_FLAG_PHSYNC
| DRM_MODE_FLAG_PVSYNC
) },
1765 /* 1440x1050@60Hz */
1766 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER
, 121750, 1400, 1488,
1767 1632, 1864, 0, 1050, 1053, 1057, 1089, 0,
1768 DRM_MODE_FLAG_NHSYNC
| DRM_MODE_FLAG_PVSYNC
) },
1770 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER
, 106500, 1440, 1520,
1771 1672, 1904, 0, 900, 903, 909, 934, 0,
1772 DRM_MODE_FLAG_NHSYNC
| DRM_MODE_FLAG_PVSYNC
) },
1773 /* 1600x1200@60Hz */
1774 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER
, 162000, 1600, 1664,
1775 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
1776 DRM_MODE_FLAG_PHSYNC
| DRM_MODE_FLAG_PVSYNC
) },
1777 /* 1680x1050@60Hz */
1778 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER
, 146250, 1680, 1784,
1779 1960, 2240, 0, 1050, 1053, 1059, 1089, 0,
1780 DRM_MODE_FLAG_NHSYNC
| DRM_MODE_FLAG_PVSYNC
) },
1781 /* 1792x1344@60Hz */
1782 { DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER
, 204750, 1792, 1920,
1783 2120, 2448, 0, 1344, 1345, 1348, 1394, 0,
1784 DRM_MODE_FLAG_NHSYNC
| DRM_MODE_FLAG_PVSYNC
) },
1785 /* 1853x1392@60Hz */
1786 { DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER
, 218250, 1856, 1952,
1787 2176, 2528, 0, 1392, 1393, 1396, 1439, 0,
1788 DRM_MODE_FLAG_NHSYNC
| DRM_MODE_FLAG_PVSYNC
) },
1789 /* 1920x1200@60Hz */
1790 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER
, 193250, 1920, 2056,
1791 2256, 2592, 0, 1200, 1203, 1209, 1245, 0,
1792 DRM_MODE_FLAG_NHSYNC
| DRM_MODE_FLAG_PVSYNC
) },
1793 /* 1920x1440@60Hz */
1794 { DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER
, 234000, 1920, 2048,
1795 2256, 2600, 0, 1440, 1441, 1444, 1500, 0,
1796 DRM_MODE_FLAG_NHSYNC
| DRM_MODE_FLAG_PVSYNC
) },
1797 /* 2560x1600@60Hz */
1798 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER
, 348500, 2560, 2752,
1799 3032, 3504, 0, 1600, 1603, 1609, 1658, 0,
1800 DRM_MODE_FLAG_NHSYNC
| DRM_MODE_FLAG_PVSYNC
) },
1802 { DRM_MODE("", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) },
1806 * vmw_guess_mode_timing - Provide fake timings for a
1807 * 60Hz vrefresh mode.
1809 * @mode - Pointer to a struct drm_display_mode with hdisplay and vdisplay
1810 * members filled in.
1812 static void vmw_guess_mode_timing(struct drm_display_mode
*mode
)
1814 mode
->hsync_start
= mode
->hdisplay
+ 50;
1815 mode
->hsync_end
= mode
->hsync_start
+ 50;
1816 mode
->htotal
= mode
->hsync_end
+ 50;
1818 mode
->vsync_start
= mode
->vdisplay
+ 50;
1819 mode
->vsync_end
= mode
->vsync_start
+ 50;
1820 mode
->vtotal
= mode
->vsync_end
+ 50;
1822 mode
->clock
= (u32
)mode
->htotal
* (u32
)mode
->vtotal
/ 100 * 6;
1823 mode
->vrefresh
= drm_mode_vrefresh(mode
);
1827 int vmw_du_connector_fill_modes(struct drm_connector
*connector
,
1828 uint32_t max_width
, uint32_t max_height
)
1830 struct vmw_display_unit
*du
= vmw_connector_to_du(connector
);
1831 struct drm_device
*dev
= connector
->dev
;
1832 struct vmw_private
*dev_priv
= vmw_priv(dev
);
1833 struct drm_display_mode
*mode
= NULL
;
1834 struct drm_display_mode
*bmode
;
1835 struct drm_display_mode prefmode
= { DRM_MODE("preferred",
1836 DRM_MODE_TYPE_DRIVER
| DRM_MODE_TYPE_PREFERRED
,
1837 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1838 DRM_MODE_FLAG_NHSYNC
| DRM_MODE_FLAG_PVSYNC
)
1842 /* Add preferred mode */
1844 mode
= drm_mode_duplicate(dev
, &prefmode
);
1847 mode
->hdisplay
= du
->pref_width
;
1848 mode
->vdisplay
= du
->pref_height
;
1849 vmw_guess_mode_timing(mode
);
1851 if (vmw_kms_validate_mode_vram(dev_priv
, mode
->hdisplay
* 2,
1853 drm_mode_probed_add(connector
, mode
);
1855 drm_mode_destroy(dev
, mode
);
1859 if (du
->pref_mode
) {
1860 list_del_init(&du
->pref_mode
->head
);
1861 drm_mode_destroy(dev
, du
->pref_mode
);
1864 /* mode might be null here, this is intended */
1865 du
->pref_mode
= mode
;
1868 for (i
= 0; vmw_kms_connector_builtin
[i
].type
!= 0; i
++) {
1869 bmode
= &vmw_kms_connector_builtin
[i
];
1870 if (bmode
->hdisplay
> max_width
||
1871 bmode
->vdisplay
> max_height
)
1874 if (!vmw_kms_validate_mode_vram(dev_priv
, bmode
->hdisplay
* 2,
1878 mode
= drm_mode_duplicate(dev
, bmode
);
1881 mode
->vrefresh
= drm_mode_vrefresh(mode
);
1883 drm_mode_probed_add(connector
, mode
);
1886 /* Move the prefered mode first, help apps pick the right mode. */
1888 list_move(&du
->pref_mode
->head
, &connector
->probed_modes
);
1890 drm_mode_connector_list_update(connector
);
1895 int vmw_du_connector_set_property(struct drm_connector
*connector
,
1896 struct drm_property
*property
,
1903 int vmw_kms_update_layout_ioctl(struct drm_device
*dev
, void *data
,
1904 struct drm_file
*file_priv
)
1906 struct vmw_private
*dev_priv
= vmw_priv(dev
);
1907 struct drm_vmw_update_layout_arg
*arg
=
1908 (struct drm_vmw_update_layout_arg
*)data
;
1909 struct vmw_master
*vmaster
= vmw_master(file_priv
->master
);
1910 void __user
*user_rects
;
1911 struct drm_vmw_rect
*rects
;
1912 unsigned rects_size
;
1915 struct drm_mode_config
*mode_config
= &dev
->mode_config
;
1917 ret
= ttm_read_lock(&vmaster
->lock
, true);
1918 if (unlikely(ret
!= 0))
1921 if (!arg
->num_outputs
) {
1922 struct drm_vmw_rect def_rect
= {0, 0, 800, 600};
1923 vmw_du_update_layout(dev_priv
, 1, &def_rect
);
1927 rects_size
= arg
->num_outputs
* sizeof(struct drm_vmw_rect
);
1928 rects
= kcalloc(arg
->num_outputs
, sizeof(struct drm_vmw_rect
),
1930 if (unlikely(!rects
)) {
1935 user_rects
= (void __user
*)(unsigned long)arg
->rects
;
1936 ret
= copy_from_user(rects
, user_rects
, rects_size
);
1937 if (unlikely(ret
!= 0)) {
1938 DRM_ERROR("Failed to get rects.\n");
1943 for (i
= 0; i
< arg
->num_outputs
; ++i
) {
1944 if (rects
[i
].x
< 0 ||
1946 rects
[i
].x
+ rects
[i
].w
> mode_config
->max_width
||
1947 rects
[i
].y
+ rects
[i
].h
> mode_config
->max_height
) {
1948 DRM_ERROR("Invalid GUI layout.\n");
1954 vmw_du_update_layout(dev_priv
, arg
->num_outputs
, rects
);
1959 ttm_read_unlock(&vmaster
->lock
);