1 /**************************************************************************
3 * Copyright © 2011-2015 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"
29 #include <drm/drm_plane_helper.h>
32 #define vmw_crtc_to_sou(x) \
33 container_of(x, struct vmw_screen_object_unit, base.crtc)
34 #define vmw_encoder_to_sou(x) \
35 container_of(x, struct vmw_screen_object_unit, base.encoder)
36 #define vmw_connector_to_sou(x) \
37 container_of(x, struct vmw_screen_object_unit, base.connector)
40 * struct vmw_kms_sou_surface_dirty - Closure structure for
41 * blit surface to screen command.
42 * @base: The base type we derive from. Used by vmw_kms_helper_dirty().
43 * @left: Left side of bounding box.
44 * @right: Right side of bounding box.
45 * @top: Top side of bounding box.
46 * @bottom: Bottom side of bounding box.
47 * @dst_x: Difference between source clip rects and framebuffer coordinates.
48 * @dst_y: Difference between source clip rects and framebuffer coordinates.
49 * @sid: Surface id of surface to copy from.
51 struct vmw_kms_sou_surface_dirty
{
52 struct vmw_kms_dirty base
;
53 s32 left
, right
, top
, bottom
;
59 * SVGA commands that are used by this code. Please see the device headers
62 struct vmw_kms_sou_readback_blit
{
64 SVGAFifoCmdBlitScreenToGMRFB body
;
67 struct vmw_kms_sou_dmabuf_blit
{
69 SVGAFifoCmdBlitGMRFBToScreen body
;
72 struct vmw_kms_sou_dirty_cmd
{
73 SVGA3dCmdHeader header
;
74 SVGA3dCmdBlitSurfaceToScreen body
;
78 * Display unit using screen objects.
80 struct vmw_screen_object_unit
{
81 struct vmw_display_unit base
;
83 unsigned long buffer_size
; /**< Size of allocated buffer */
84 struct vmw_dma_buffer
*buffer
; /**< Backing store buffer */
89 static void vmw_sou_destroy(struct vmw_screen_object_unit
*sou
)
91 vmw_du_cleanup(&sou
->base
);
97 * Screen Object Display Unit CRTC functions
100 static void vmw_sou_crtc_destroy(struct drm_crtc
*crtc
)
102 vmw_sou_destroy(vmw_crtc_to_sou(crtc
));
106 * Send the fifo command to create a screen.
108 static int vmw_sou_fifo_create(struct vmw_private
*dev_priv
,
109 struct vmw_screen_object_unit
*sou
,
110 uint32_t x
, uint32_t y
,
111 struct drm_display_mode
*mode
)
119 SVGAScreenObject obj
;
122 BUG_ON(!sou
->buffer
);
124 fifo_size
= sizeof(*cmd
);
125 cmd
= vmw_fifo_reserve(dev_priv
, fifo_size
);
126 /* The hardware has hung, nothing we can do about it here. */
127 if (unlikely(cmd
== NULL
)) {
128 DRM_ERROR("Fifo reserve failed.\n");
132 memset(cmd
, 0, fifo_size
);
133 cmd
->header
.cmdType
= SVGA_CMD_DEFINE_SCREEN
;
134 cmd
->obj
.structSize
= sizeof(SVGAScreenObject
);
135 cmd
->obj
.id
= sou
->base
.unit
;
136 cmd
->obj
.flags
= SVGA_SCREEN_HAS_ROOT
|
137 (sou
->base
.unit
== 0 ? SVGA_SCREEN_IS_PRIMARY
: 0);
138 cmd
->obj
.size
.width
= mode
->hdisplay
;
139 cmd
->obj
.size
.height
= mode
->vdisplay
;
140 if (sou
->base
.is_implicit
) {
144 cmd
->obj
.root
.x
= sou
->base
.gui_x
;
145 cmd
->obj
.root
.y
= sou
->base
.gui_y
;
147 sou
->base
.set_gui_x
= cmd
->obj
.root
.x
;
148 sou
->base
.set_gui_y
= cmd
->obj
.root
.y
;
150 /* Ok to assume that buffer is pinned in vram */
151 vmw_bo_get_guest_ptr(&sou
->buffer
->base
, &cmd
->obj
.backingStore
.ptr
);
152 cmd
->obj
.backingStore
.pitch
= mode
->hdisplay
* 4;
154 vmw_fifo_commit(dev_priv
, fifo_size
);
162 * Send the fifo command to destroy a screen.
164 static int vmw_sou_fifo_destroy(struct vmw_private
*dev_priv
,
165 struct vmw_screen_object_unit
*sou
)
174 SVGAFifoCmdDestroyScreen body
;
177 /* no need to do anything */
178 if (unlikely(!sou
->defined
))
181 fifo_size
= sizeof(*cmd
);
182 cmd
= vmw_fifo_reserve(dev_priv
, fifo_size
);
183 /* the hardware has hung, nothing we can do about it here */
184 if (unlikely(cmd
== NULL
)) {
185 DRM_ERROR("Fifo reserve failed.\n");
189 memset(cmd
, 0, fifo_size
);
190 cmd
->header
.cmdType
= SVGA_CMD_DESTROY_SCREEN
;
191 cmd
->body
.screenId
= sou
->base
.unit
;
193 vmw_fifo_commit(dev_priv
, fifo_size
);
196 ret
= vmw_fallback_wait(dev_priv
, false, true, 0, false, 3*HZ
);
197 if (unlikely(ret
!= 0))
198 DRM_ERROR("Failed to sync with HW");
200 sou
->defined
= false;
206 * Free the backing store.
208 static void vmw_sou_backing_free(struct vmw_private
*dev_priv
,
209 struct vmw_screen_object_unit
*sou
)
211 vmw_dmabuf_unreference(&sou
->buffer
);
212 sou
->buffer_size
= 0;
216 * Allocate the backing store for the buffer.
218 static int vmw_sou_backing_alloc(struct vmw_private
*dev_priv
,
219 struct vmw_screen_object_unit
*sou
,
224 if (sou
->buffer_size
== size
)
228 vmw_sou_backing_free(dev_priv
, sou
);
230 sou
->buffer
= kzalloc(sizeof(*sou
->buffer
), GFP_KERNEL
);
231 if (unlikely(sou
->buffer
== NULL
))
234 /* After we have alloced the backing store might not be able to
235 * resume the overlays, this is preferred to failing to alloc.
237 vmw_overlay_pause_all(dev_priv
);
238 ret
= vmw_dmabuf_init(dev_priv
, sou
->buffer
, size
,
239 &vmw_vram_ne_placement
,
240 false, &vmw_dmabuf_bo_free
);
241 vmw_overlay_resume_all(dev_priv
);
243 if (unlikely(ret
!= 0))
244 sou
->buffer
= NULL
; /* vmw_dmabuf_init frees on error */
246 sou
->buffer_size
= size
;
251 static int vmw_sou_crtc_set_config(struct drm_mode_set
*set
)
253 struct vmw_private
*dev_priv
;
254 struct vmw_screen_object_unit
*sou
;
255 struct drm_connector
*connector
;
256 struct drm_display_mode
*mode
;
257 struct drm_encoder
*encoder
;
258 struct vmw_framebuffer
*vfb
;
259 struct drm_framebuffer
*fb
;
260 struct drm_crtc
*crtc
;
271 sou
= vmw_crtc_to_sou(crtc
);
272 vfb
= set
->fb
? vmw_framebuffer_to_vfb(set
->fb
) : NULL
;
273 dev_priv
= vmw_priv(crtc
->dev
);
275 if (set
->num_connectors
> 1) {
276 DRM_ERROR("Too many connectors\n");
280 if (set
->num_connectors
== 1 &&
281 set
->connectors
[0] != &sou
->base
.connector
) {
282 DRM_ERROR("Connector doesn't match %p %p\n",
283 set
->connectors
[0], &sou
->base
.connector
);
287 /* Only one active implicit frame-buffer at a time. */
288 mutex_lock(&dev_priv
->global_kms_state_mutex
);
289 if (sou
->base
.is_implicit
&&
290 dev_priv
->implicit_fb
&& vfb
&&
291 !(dev_priv
->num_implicit
== 1 &&
292 sou
->base
.active_implicit
) &&
293 dev_priv
->implicit_fb
!= vfb
) {
294 mutex_unlock(&dev_priv
->global_kms_state_mutex
);
295 DRM_ERROR("Multiple implicit framebuffers not supported.\n");
298 mutex_unlock(&dev_priv
->global_kms_state_mutex
);
300 /* since they always map one to one these are safe */
301 connector
= &sou
->base
.connector
;
302 encoder
= &sou
->base
.encoder
;
304 /* should we turn the crtc off */
305 if (set
->num_connectors
== 0 || !set
->mode
|| !set
->fb
) {
306 ret
= vmw_sou_fifo_destroy(dev_priv
, sou
);
307 /* the hardware has hung don't do anything more */
308 if (unlikely(ret
!= 0))
311 connector
->encoder
= NULL
;
312 encoder
->crtc
= NULL
;
313 crtc
->primary
->fb
= NULL
;
316 crtc
->enabled
= false;
318 vmw_kms_del_active(dev_priv
, &sou
->base
);
320 vmw_sou_backing_free(dev_priv
, sou
);
326 /* we now know we want to set a mode */
330 if (set
->x
+ mode
->hdisplay
> fb
->width
||
331 set
->y
+ mode
->vdisplay
> fb
->height
) {
332 DRM_ERROR("set outside of framebuffer\n");
336 vmw_svga_enable(dev_priv
);
338 if (mode
->hdisplay
!= crtc
->mode
.hdisplay
||
339 mode
->vdisplay
!= crtc
->mode
.vdisplay
) {
340 /* no need to check if depth is different, because backing
341 * store depth is forced to 4 by the device.
344 ret
= vmw_sou_fifo_destroy(dev_priv
, sou
);
345 /* the hardware has hung don't do anything more */
346 if (unlikely(ret
!= 0))
349 vmw_sou_backing_free(dev_priv
, sou
);
353 /* forced to depth 4 by the device */
354 size_t size
= mode
->hdisplay
* mode
->vdisplay
* 4;
355 ret
= vmw_sou_backing_alloc(dev_priv
, sou
, size
);
356 if (unlikely(ret
!= 0))
360 ret
= vmw_sou_fifo_create(dev_priv
, sou
, set
->x
, set
->y
, mode
);
361 if (unlikely(ret
!= 0)) {
363 * We are in a bit of a situation here, the hardware has
364 * hung and we may or may not have a buffer hanging of
365 * the screen object, best thing to do is not do anything
366 * if we where defined, if not just turn the crtc of.
367 * Not what userspace wants but it needs to htfu.
372 connector
->encoder
= NULL
;
373 encoder
->crtc
= NULL
;
374 crtc
->primary
->fb
= NULL
;
377 crtc
->enabled
= false;
382 vmw_kms_add_active(dev_priv
, &sou
->base
, vfb
);
384 connector
->encoder
= encoder
;
385 encoder
->crtc
= crtc
;
387 crtc
->primary
->fb
= fb
;
390 crtc
->enabled
= true;
395 static int vmw_sou_crtc_page_flip(struct drm_crtc
*crtc
,
396 struct drm_framebuffer
*fb
,
397 struct drm_pending_vblank_event
*event
,
400 struct vmw_private
*dev_priv
= vmw_priv(crtc
->dev
);
401 struct drm_framebuffer
*old_fb
= crtc
->primary
->fb
;
402 struct vmw_framebuffer
*vfb
= vmw_framebuffer_to_vfb(fb
);
403 struct vmw_fence_obj
*fence
= NULL
;
404 struct drm_vmw_rect vclips
;
407 if (!vmw_kms_crtc_flippable(dev_priv
, crtc
))
410 crtc
->primary
->fb
= fb
;
412 /* do a full screen dirty update */
415 vclips
.w
= crtc
->mode
.hdisplay
;
416 vclips
.h
= crtc
->mode
.vdisplay
;
419 ret
= vmw_kms_sou_do_dmabuf_dirty(dev_priv
, vfb
,
423 ret
= vmw_kms_sou_do_surface_dirty(dev_priv
, vfb
,
436 struct drm_file
*file_priv
= event
->base
.file_priv
;
438 ret
= vmw_event_fence_action_queue(file_priv
, fence
,
440 &event
->event
.tv_sec
,
441 &event
->event
.tv_usec
,
446 * No need to hold on to this now. The only cleanup
447 * we need to do if we fail is unref the fence.
449 vmw_fence_obj_unreference(&fence
);
451 if (vmw_crtc_to_du(crtc
)->is_implicit
)
452 vmw_kms_update_implicit_fb(dev_priv
, crtc
);
457 crtc
->primary
->fb
= old_fb
;
461 static const struct drm_crtc_funcs vmw_screen_object_crtc_funcs
= {
462 .cursor_set2
= vmw_du_crtc_cursor_set2
,
463 .cursor_move
= vmw_du_crtc_cursor_move
,
464 .gamma_set
= vmw_du_crtc_gamma_set
,
465 .destroy
= vmw_sou_crtc_destroy
,
466 .set_config
= vmw_sou_crtc_set_config
,
467 .page_flip
= vmw_sou_crtc_page_flip
,
471 * Screen Object Display Unit encoder functions
474 static void vmw_sou_encoder_destroy(struct drm_encoder
*encoder
)
476 vmw_sou_destroy(vmw_encoder_to_sou(encoder
));
479 static const struct drm_encoder_funcs vmw_screen_object_encoder_funcs
= {
480 .destroy
= vmw_sou_encoder_destroy
,
484 * Screen Object Display Unit connector functions
487 static void vmw_sou_connector_destroy(struct drm_connector
*connector
)
489 vmw_sou_destroy(vmw_connector_to_sou(connector
));
492 static const struct drm_connector_funcs vmw_sou_connector_funcs
= {
493 .dpms
= vmw_du_connector_dpms
,
494 .detect
= vmw_du_connector_detect
,
495 .fill_modes
= vmw_du_connector_fill_modes
,
496 .set_property
= vmw_du_connector_set_property
,
497 .destroy
= vmw_sou_connector_destroy
,
500 static int vmw_sou_init(struct vmw_private
*dev_priv
, unsigned unit
)
502 struct vmw_screen_object_unit
*sou
;
503 struct drm_device
*dev
= dev_priv
->dev
;
504 struct drm_connector
*connector
;
505 struct drm_encoder
*encoder
;
506 struct drm_crtc
*crtc
;
508 sou
= kzalloc(sizeof(*sou
), GFP_KERNEL
);
512 sou
->base
.unit
= unit
;
513 crtc
= &sou
->base
.crtc
;
514 encoder
= &sou
->base
.encoder
;
515 connector
= &sou
->base
.connector
;
517 sou
->base
.active_implicit
= false;
518 sou
->base
.pref_active
= (unit
== 0);
519 sou
->base
.pref_width
= dev_priv
->initial_width
;
520 sou
->base
.pref_height
= dev_priv
->initial_height
;
521 sou
->base
.pref_mode
= NULL
;
522 sou
->base
.is_implicit
= false;
524 drm_connector_init(dev
, connector
, &vmw_sou_connector_funcs
,
525 DRM_MODE_CONNECTOR_VIRTUAL
);
526 connector
->status
= vmw_du_connector_detect(connector
, true);
528 drm_encoder_init(dev
, encoder
, &vmw_screen_object_encoder_funcs
,
529 DRM_MODE_ENCODER_VIRTUAL
, NULL
);
530 drm_mode_connector_attach_encoder(connector
, encoder
);
531 encoder
->possible_crtcs
= (1 << unit
);
532 encoder
->possible_clones
= 0;
534 (void) drm_connector_register(connector
);
536 drm_crtc_init(dev
, crtc
, &vmw_screen_object_crtc_funcs
);
538 drm_mode_crtc_set_gamma_size(crtc
, 256);
540 drm_object_attach_property(&connector
->base
,
541 dev_priv
->hotplug_mode_update_property
, 1);
542 drm_object_attach_property(&connector
->base
,
543 dev
->mode_config
.suggested_x_property
, 0);
544 drm_object_attach_property(&connector
->base
,
545 dev
->mode_config
.suggested_y_property
, 0);
546 if (dev_priv
->implicit_placement_property
)
547 drm_object_attach_property
549 dev_priv
->implicit_placement_property
,
550 sou
->base
.is_implicit
);
555 int vmw_kms_sou_init_display(struct vmw_private
*dev_priv
)
557 struct drm_device
*dev
= dev_priv
->dev
;
560 if (!(dev_priv
->capabilities
& SVGA_CAP_SCREEN_OBJECT_2
)) {
561 DRM_INFO("Not using screen objects,"
562 " missing cap SCREEN_OBJECT_2\n");
567 dev_priv
->num_implicit
= 0;
568 dev_priv
->implicit_fb
= NULL
;
570 ret
= drm_vblank_init(dev
, VMWGFX_NUM_DISPLAY_UNITS
);
571 if (unlikely(ret
!= 0))
574 vmw_kms_create_implicit_placement_property(dev_priv
, false);
576 for (i
= 0; i
< VMWGFX_NUM_DISPLAY_UNITS
; ++i
)
577 vmw_sou_init(dev_priv
, i
);
579 dev_priv
->active_display_unit
= vmw_du_screen_object
;
581 DRM_INFO("Screen Objects Display Unit initialized\n");
586 int vmw_kms_sou_close_display(struct vmw_private
*dev_priv
)
588 struct drm_device
*dev
= dev_priv
->dev
;
590 drm_vblank_cleanup(dev
);
595 static int do_dmabuf_define_gmrfb(struct vmw_private
*dev_priv
,
596 struct vmw_framebuffer
*framebuffer
)
598 struct vmw_dma_buffer
*buf
=
599 container_of(framebuffer
, struct vmw_framebuffer_dmabuf
,
601 int depth
= framebuffer
->base
.depth
;
604 SVGAFifoCmdDefineGMRFB body
;
607 /* Emulate RGBA support, contrary to svga_reg.h this is not
608 * supported by hosts. This is only a problem if we are reading
609 * this value later and expecting what we uploaded back.
614 cmd
= vmw_fifo_reserve(dev_priv
, sizeof(*cmd
));
616 DRM_ERROR("Out of fifo space for dirty framebuffer command.\n");
620 cmd
->header
= SVGA_CMD_DEFINE_GMRFB
;
621 cmd
->body
.format
.bitsPerPixel
= framebuffer
->base
.bits_per_pixel
;
622 cmd
->body
.format
.colorDepth
= depth
;
623 cmd
->body
.format
.reserved
= 0;
624 cmd
->body
.bytesPerLine
= framebuffer
->base
.pitches
[0];
625 /* Buffer is reserved in vram or GMR */
626 vmw_bo_get_guest_ptr(&buf
->base
, &cmd
->body
.ptr
);
627 vmw_fifo_commit(dev_priv
, sizeof(*cmd
));
633 * vmw_sou_surface_fifo_commit - Callback to fill in and submit a
634 * blit surface to screen command.
636 * @dirty: The closure structure.
638 * Fills in the missing fields in the command, and translates the cliprects
639 * to match the destination bounding box encoded.
641 static void vmw_sou_surface_fifo_commit(struct vmw_kms_dirty
*dirty
)
643 struct vmw_kms_sou_surface_dirty
*sdirty
=
644 container_of(dirty
, typeof(*sdirty
), base
);
645 struct vmw_kms_sou_dirty_cmd
*cmd
= dirty
->cmd
;
646 s32 trans_x
= dirty
->unit
->crtc
.x
- sdirty
->dst_x
;
647 s32 trans_y
= dirty
->unit
->crtc
.y
- sdirty
->dst_y
;
648 size_t region_size
= dirty
->num_hits
* sizeof(SVGASignedRect
);
649 SVGASignedRect
*blit
= (SVGASignedRect
*) &cmd
[1];
652 if (!dirty
->num_hits
) {
653 vmw_fifo_commit(dirty
->dev_priv
, 0);
657 cmd
->header
.id
= SVGA_3D_CMD_BLIT_SURFACE_TO_SCREEN
;
658 cmd
->header
.size
= sizeof(cmd
->body
) + region_size
;
661 * Use the destination bounding box to specify destination - and
662 * source bounding regions.
664 cmd
->body
.destRect
.left
= sdirty
->left
;
665 cmd
->body
.destRect
.right
= sdirty
->right
;
666 cmd
->body
.destRect
.top
= sdirty
->top
;
667 cmd
->body
.destRect
.bottom
= sdirty
->bottom
;
669 cmd
->body
.srcRect
.left
= sdirty
->left
+ trans_x
;
670 cmd
->body
.srcRect
.right
= sdirty
->right
+ trans_x
;
671 cmd
->body
.srcRect
.top
= sdirty
->top
+ trans_y
;
672 cmd
->body
.srcRect
.bottom
= sdirty
->bottom
+ trans_y
;
674 cmd
->body
.srcImage
.sid
= sdirty
->sid
;
675 cmd
->body
.destScreenId
= dirty
->unit
->unit
;
677 /* Blits are relative to the destination rect. Translate. */
678 for (i
= 0; i
< dirty
->num_hits
; ++i
, ++blit
) {
679 blit
->left
-= sdirty
->left
;
680 blit
->right
-= sdirty
->left
;
681 blit
->top
-= sdirty
->top
;
682 blit
->bottom
-= sdirty
->top
;
685 vmw_fifo_commit(dirty
->dev_priv
, region_size
+ sizeof(*cmd
));
687 sdirty
->left
= sdirty
->top
= S32_MAX
;
688 sdirty
->right
= sdirty
->bottom
= S32_MIN
;
692 * vmw_sou_surface_clip - Callback to encode a blit surface to screen cliprect.
694 * @dirty: The closure structure
696 * Encodes a SVGASignedRect cliprect and updates the bounding box of the
697 * BLIT_SURFACE_TO_SCREEN command.
699 static void vmw_sou_surface_clip(struct vmw_kms_dirty
*dirty
)
701 struct vmw_kms_sou_surface_dirty
*sdirty
=
702 container_of(dirty
, typeof(*sdirty
), base
);
703 struct vmw_kms_sou_dirty_cmd
*cmd
= dirty
->cmd
;
704 SVGASignedRect
*blit
= (SVGASignedRect
*) &cmd
[1];
706 /* Destination rect. */
707 blit
+= dirty
->num_hits
;
708 blit
->left
= dirty
->unit_x1
;
709 blit
->top
= dirty
->unit_y1
;
710 blit
->right
= dirty
->unit_x2
;
711 blit
->bottom
= dirty
->unit_y2
;
713 /* Destination bounding box */
714 sdirty
->left
= min_t(s32
, sdirty
->left
, dirty
->unit_x1
);
715 sdirty
->top
= min_t(s32
, sdirty
->top
, dirty
->unit_y1
);
716 sdirty
->right
= max_t(s32
, sdirty
->right
, dirty
->unit_x2
);
717 sdirty
->bottom
= max_t(s32
, sdirty
->bottom
, dirty
->unit_y2
);
723 * vmw_kms_sou_do_surface_dirty - Dirty part of a surface backed framebuffer
725 * @dev_priv: Pointer to the device private structure.
726 * @framebuffer: Pointer to the surface-buffer backed framebuffer.
727 * @clips: Array of clip rects. Either @clips or @vclips must be NULL.
728 * @vclips: Alternate array of clip rects. Either @clips or @vclips must
730 * @srf: Pointer to surface to blit from. If NULL, the surface attached
731 * to @framebuffer will be used.
732 * @dest_x: X coordinate offset to align @srf with framebuffer coordinates.
733 * @dest_y: Y coordinate offset to align @srf with framebuffer coordinates.
734 * @num_clips: Number of clip rects in @clips.
735 * @inc: Increment to use when looping over @clips.
736 * @out_fence: If non-NULL, will return a ref-counted pointer to a
737 * struct vmw_fence_obj. The returned fence pointer may be NULL in which
738 * case the device has already synchronized.
740 * Returns 0 on success, negative error code on failure. -ERESTARTSYS if
743 int vmw_kms_sou_do_surface_dirty(struct vmw_private
*dev_priv
,
744 struct vmw_framebuffer
*framebuffer
,
745 struct drm_clip_rect
*clips
,
746 struct drm_vmw_rect
*vclips
,
747 struct vmw_resource
*srf
,
750 unsigned num_clips
, int inc
,
751 struct vmw_fence_obj
**out_fence
)
753 struct vmw_framebuffer_surface
*vfbs
=
754 container_of(framebuffer
, typeof(*vfbs
), base
);
755 struct vmw_kms_sou_surface_dirty sdirty
;
756 struct vmw_validation_ctx ctx
;
760 srf
= &vfbs
->surface
->res
;
762 ret
= vmw_kms_helper_resource_prepare(srf
, true, &ctx
);
766 sdirty
.base
.fifo_commit
= vmw_sou_surface_fifo_commit
;
767 sdirty
.base
.clip
= vmw_sou_surface_clip
;
768 sdirty
.base
.dev_priv
= dev_priv
;
769 sdirty
.base
.fifo_reserve_size
= sizeof(struct vmw_kms_sou_dirty_cmd
) +
770 sizeof(SVGASignedRect
) * num_clips
;
772 sdirty
.sid
= srf
->id
;
773 sdirty
.left
= sdirty
.top
= S32_MAX
;
774 sdirty
.right
= sdirty
.bottom
= S32_MIN
;
775 sdirty
.dst_x
= dest_x
;
776 sdirty
.dst_y
= dest_y
;
778 ret
= vmw_kms_helper_dirty(dev_priv
, framebuffer
, clips
, vclips
,
779 dest_x
, dest_y
, num_clips
, inc
,
781 vmw_kms_helper_resource_finish(&ctx
, out_fence
);
787 * vmw_sou_dmabuf_fifo_commit - Callback to submit a set of readback clips.
789 * @dirty: The closure structure.
791 * Commits a previously built command buffer of readback clips.
793 static void vmw_sou_dmabuf_fifo_commit(struct vmw_kms_dirty
*dirty
)
795 if (!dirty
->num_hits
) {
796 vmw_fifo_commit(dirty
->dev_priv
, 0);
800 vmw_fifo_commit(dirty
->dev_priv
,
801 sizeof(struct vmw_kms_sou_dmabuf_blit
) *
806 * vmw_sou_dmabuf_clip - Callback to encode a readback cliprect.
808 * @dirty: The closure structure
810 * Encodes a BLIT_GMRFB_TO_SCREEN cliprect.
812 static void vmw_sou_dmabuf_clip(struct vmw_kms_dirty
*dirty
)
814 struct vmw_kms_sou_dmabuf_blit
*blit
= dirty
->cmd
;
816 blit
+= dirty
->num_hits
;
817 blit
->header
= SVGA_CMD_BLIT_GMRFB_TO_SCREEN
;
818 blit
->body
.destScreenId
= dirty
->unit
->unit
;
819 blit
->body
.srcOrigin
.x
= dirty
->fb_x
;
820 blit
->body
.srcOrigin
.y
= dirty
->fb_y
;
821 blit
->body
.destRect
.left
= dirty
->unit_x1
;
822 blit
->body
.destRect
.top
= dirty
->unit_y1
;
823 blit
->body
.destRect
.right
= dirty
->unit_x2
;
824 blit
->body
.destRect
.bottom
= dirty
->unit_y2
;
829 * vmw_kms_do_dmabuf_dirty - Dirty part of a dma-buffer backed framebuffer
831 * @dev_priv: Pointer to the device private structure.
832 * @framebuffer: Pointer to the dma-buffer backed framebuffer.
833 * @clips: Array of clip rects.
834 * @vclips: Alternate array of clip rects. Either @clips or @vclips must
836 * @num_clips: Number of clip rects in @clips.
837 * @increment: Increment to use when looping over @clips.
838 * @interruptible: Whether to perform waits interruptible if possible.
839 * @out_fence: If non-NULL, will return a ref-counted pointer to a
840 * struct vmw_fence_obj. The returned fence pointer may be NULL in which
841 * case the device has already synchronized.
843 * Returns 0 on success, negative error code on failure. -ERESTARTSYS if
846 int vmw_kms_sou_do_dmabuf_dirty(struct vmw_private
*dev_priv
,
847 struct vmw_framebuffer
*framebuffer
,
848 struct drm_clip_rect
*clips
,
849 struct drm_vmw_rect
*vclips
,
850 unsigned num_clips
, int increment
,
852 struct vmw_fence_obj
**out_fence
)
854 struct vmw_dma_buffer
*buf
=
855 container_of(framebuffer
, struct vmw_framebuffer_dmabuf
,
857 struct vmw_kms_dirty dirty
;
860 ret
= vmw_kms_helper_buffer_prepare(dev_priv
, buf
, interruptible
,
865 ret
= do_dmabuf_define_gmrfb(dev_priv
, framebuffer
);
866 if (unlikely(ret
!= 0))
869 dirty
.fifo_commit
= vmw_sou_dmabuf_fifo_commit
;
870 dirty
.clip
= vmw_sou_dmabuf_clip
;
871 dirty
.fifo_reserve_size
= sizeof(struct vmw_kms_sou_dmabuf_blit
) *
873 ret
= vmw_kms_helper_dirty(dev_priv
, framebuffer
, clips
, vclips
,
874 0, 0, num_clips
, increment
, &dirty
);
875 vmw_kms_helper_buffer_finish(dev_priv
, NULL
, buf
, out_fence
, NULL
);
880 vmw_kms_helper_buffer_revert(buf
);
887 * vmw_sou_readback_fifo_commit - Callback to submit a set of readback clips.
889 * @dirty: The closure structure.
891 * Commits a previously built command buffer of readback clips.
893 static void vmw_sou_readback_fifo_commit(struct vmw_kms_dirty
*dirty
)
895 if (!dirty
->num_hits
) {
896 vmw_fifo_commit(dirty
->dev_priv
, 0);
900 vmw_fifo_commit(dirty
->dev_priv
,
901 sizeof(struct vmw_kms_sou_readback_blit
) *
906 * vmw_sou_readback_clip - Callback to encode a readback cliprect.
908 * @dirty: The closure structure
910 * Encodes a BLIT_SCREEN_TO_GMRFB cliprect.
912 static void vmw_sou_readback_clip(struct vmw_kms_dirty
*dirty
)
914 struct vmw_kms_sou_readback_blit
*blit
= dirty
->cmd
;
916 blit
+= dirty
->num_hits
;
917 blit
->header
= SVGA_CMD_BLIT_SCREEN_TO_GMRFB
;
918 blit
->body
.srcScreenId
= dirty
->unit
->unit
;
919 blit
->body
.destOrigin
.x
= dirty
->fb_x
;
920 blit
->body
.destOrigin
.y
= dirty
->fb_y
;
921 blit
->body
.srcRect
.left
= dirty
->unit_x1
;
922 blit
->body
.srcRect
.top
= dirty
->unit_y1
;
923 blit
->body
.srcRect
.right
= dirty
->unit_x2
;
924 blit
->body
.srcRect
.bottom
= dirty
->unit_y2
;
929 * vmw_kms_sou_readback - Perform a readback from the screen object system to
930 * a dma-buffer backed framebuffer.
932 * @dev_priv: Pointer to the device private structure.
933 * @file_priv: Pointer to a struct drm_file identifying the caller.
934 * Must be set to NULL if @user_fence_rep is NULL.
935 * @vfb: Pointer to the dma-buffer backed framebuffer.
936 * @user_fence_rep: User-space provided structure for fence information.
937 * Must be set to non-NULL if @file_priv is non-NULL.
938 * @vclips: Array of clip rects.
939 * @num_clips: Number of clip rects in @vclips.
941 * Returns 0 on success, negative error code on failure. -ERESTARTSYS if
944 int vmw_kms_sou_readback(struct vmw_private
*dev_priv
,
945 struct drm_file
*file_priv
,
946 struct vmw_framebuffer
*vfb
,
947 struct drm_vmw_fence_rep __user
*user_fence_rep
,
948 struct drm_vmw_rect
*vclips
,
951 struct vmw_dma_buffer
*buf
=
952 container_of(vfb
, struct vmw_framebuffer_dmabuf
, base
)->buffer
;
953 struct vmw_kms_dirty dirty
;
956 ret
= vmw_kms_helper_buffer_prepare(dev_priv
, buf
, true, false);
960 ret
= do_dmabuf_define_gmrfb(dev_priv
, vfb
);
961 if (unlikely(ret
!= 0))
964 dirty
.fifo_commit
= vmw_sou_readback_fifo_commit
;
965 dirty
.clip
= vmw_sou_readback_clip
;
966 dirty
.fifo_reserve_size
= sizeof(struct vmw_kms_sou_readback_blit
) *
968 ret
= vmw_kms_helper_dirty(dev_priv
, vfb
, NULL
, vclips
,
969 0, 0, num_clips
, 1, &dirty
);
970 vmw_kms_helper_buffer_finish(dev_priv
, file_priv
, buf
, NULL
,
976 vmw_kms_helper_buffer_revert(buf
);