1 /******************************************************************************
3 * COPYRIGHT © 2014-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 "device_include/svga3d_surfacedefs.h"
30 #include <drm/drm_plane_helper.h>
31 #include <drm/drm_atomic.h>
32 #include <drm/drm_atomic_helper.h>
35 #define vmw_crtc_to_stdu(x) \
36 container_of(x, struct vmw_screen_target_display_unit, base.crtc)
37 #define vmw_encoder_to_stdu(x) \
38 container_of(x, struct vmw_screen_target_display_unit, base.encoder)
39 #define vmw_connector_to_stdu(x) \
40 container_of(x, struct vmw_screen_target_display_unit, base.connector)
44 enum stdu_content_type
{
51 * struct vmw_stdu_dirty - closure structure for the update functions
53 * @base: The base type we derive from. Used by vmw_kms_helper_dirty().
54 * @transfer: Transfer direction for DMA command.
55 * @left: Left side of bounding box.
56 * @right: Right side of bounding box.
57 * @top: Top side of bounding box.
58 * @bottom: Bottom side of bounding box.
59 * @fb_left: Left side of the framebuffer/content bounding box
60 * @fb_top: Top of the framebuffer/content bounding box
61 * @buf: DMA buffer when DMA-ing between buffer and screen targets.
62 * @sid: Surface ID when copying between surface and screen targets.
64 struct vmw_stdu_dirty
{
65 struct vmw_kms_dirty base
;
66 SVGA3dTransferType transfer
;
67 s32 left
, right
, top
, bottom
;
71 struct vmw_dma_buffer
*buf
;
77 * SVGA commands that are used by this code. Please see the device headers
80 struct vmw_stdu_update
{
81 SVGA3dCmdHeader header
;
82 SVGA3dCmdUpdateGBScreenTarget body
;
86 SVGA3dCmdHeader header
;
87 SVGA3dCmdSurfaceDMA body
;
90 struct vmw_stdu_surface_copy
{
91 SVGA3dCmdHeader header
;
92 SVGA3dCmdSurfaceCopy body
;
97 * struct vmw_screen_target_display_unit
99 * @base: VMW specific DU structure
100 * @display_srf: surface to be displayed. The dimension of this will always
101 * match the display mode. If the display mode matches
102 * content_vfbs dimensions, then this is a pointer into the
103 * corresponding field in content_vfbs. If not, then this
104 * is a separate buffer to which content_vfbs will blit to.
105 * @content_type: content_fb type
106 * @defined: true if the current display unit has been initialized
108 struct vmw_screen_target_display_unit
{
109 struct vmw_display_unit base
;
110 const struct vmw_surface
*display_srf
;
111 enum stdu_content_type content_fb_type
;
112 s32 display_width
, display_height
;
117 struct ttm_bo_kmap_obj host_map
;
123 static void vmw_stdu_destroy(struct vmw_screen_target_display_unit
*stdu
);
127 /******************************************************************************
128 * Screen Target Display Unit CRTC Functions
129 *****************************************************************************/
133 * vmw_stdu_crtc_destroy - cleans up the STDU
135 * @crtc: used to get a reference to the containing STDU
137 static void vmw_stdu_crtc_destroy(struct drm_crtc
*crtc
)
139 vmw_stdu_destroy(vmw_crtc_to_stdu(crtc
));
143 * vmw_stdu_define_st - Defines a Screen Target
145 * @dev_priv: VMW DRM device
146 * @stdu: display unit to create a Screen Target for
147 * @mode: The mode to set.
148 * @crtc_x: X coordinate of screen target relative to framebuffer origin.
149 * @crtc_y: Y coordinate of screen target relative to framebuffer origin.
151 * Creates a STDU that we can used later. This function is called whenever the
152 * framebuffer size changes.
155 * 0 on success, error code on failure
157 static int vmw_stdu_define_st(struct vmw_private
*dev_priv
,
158 struct vmw_screen_target_display_unit
*stdu
,
159 struct drm_display_mode
*mode
,
160 int crtc_x
, int crtc_y
)
163 SVGA3dCmdHeader header
;
164 SVGA3dCmdDefineGBScreenTarget body
;
167 cmd
= vmw_fifo_reserve(dev_priv
, sizeof(*cmd
));
169 if (unlikely(cmd
== NULL
)) {
170 DRM_ERROR("Out of FIFO space defining Screen Target\n");
174 cmd
->header
.id
= SVGA_3D_CMD_DEFINE_GB_SCREENTARGET
;
175 cmd
->header
.size
= sizeof(cmd
->body
);
177 cmd
->body
.stid
= stdu
->base
.unit
;
178 cmd
->body
.width
= mode
->hdisplay
;
179 cmd
->body
.height
= mode
->vdisplay
;
180 cmd
->body
.flags
= (0 == cmd
->body
.stid
) ? SVGA_STFLAG_PRIMARY
: 0;
182 if (stdu
->base
.is_implicit
) {
183 cmd
->body
.xRoot
= crtc_x
;
184 cmd
->body
.yRoot
= crtc_y
;
186 cmd
->body
.xRoot
= stdu
->base
.gui_x
;
187 cmd
->body
.yRoot
= stdu
->base
.gui_y
;
189 stdu
->base
.set_gui_x
= cmd
->body
.xRoot
;
190 stdu
->base
.set_gui_y
= cmd
->body
.yRoot
;
192 vmw_fifo_commit(dev_priv
, sizeof(*cmd
));
194 stdu
->defined
= true;
195 stdu
->display_width
= mode
->hdisplay
;
196 stdu
->display_height
= mode
->vdisplay
;
204 * vmw_stdu_bind_st - Binds a surface to a Screen Target
206 * @dev_priv: VMW DRM device
207 * @stdu: display unit affected
208 * @res: Buffer to bind to the screen target. Set to NULL to blank screen.
210 * Binding a surface to a Screen Target the same as flipping
212 static int vmw_stdu_bind_st(struct vmw_private
*dev_priv
,
213 struct vmw_screen_target_display_unit
*stdu
,
214 const struct vmw_resource
*res
)
216 SVGA3dSurfaceImageId image
;
219 SVGA3dCmdHeader header
;
220 SVGA3dCmdBindGBScreenTarget body
;
224 if (!stdu
->defined
) {
225 DRM_ERROR("No screen target defined\n");
229 /* Set up image using information in vfb */
230 memset(&image
, 0, sizeof(image
));
231 image
.sid
= res
? res
->id
: SVGA3D_INVALID_ID
;
233 cmd
= vmw_fifo_reserve(dev_priv
, sizeof(*cmd
));
235 if (unlikely(cmd
== NULL
)) {
236 DRM_ERROR("Out of FIFO space binding a screen target\n");
240 cmd
->header
.id
= SVGA_3D_CMD_BIND_GB_SCREENTARGET
;
241 cmd
->header
.size
= sizeof(cmd
->body
);
243 cmd
->body
.stid
= stdu
->base
.unit
;
244 cmd
->body
.image
= image
;
246 vmw_fifo_commit(dev_priv
, sizeof(*cmd
));
252 * vmw_stdu_populate_update - populate an UPDATE_GB_SCREENTARGET command with a
255 * @cmd: Pointer to command stream.
256 * @unit: Screen target unit.
257 * @left: Left side of bounding box.
258 * @right: Right side of bounding box.
259 * @top: Top side of bounding box.
260 * @bottom: Bottom side of bounding box.
262 static void vmw_stdu_populate_update(void *cmd
, int unit
,
263 s32 left
, s32 right
, s32 top
, s32 bottom
)
265 struct vmw_stdu_update
*update
= cmd
;
267 update
->header
.id
= SVGA_3D_CMD_UPDATE_GB_SCREENTARGET
;
268 update
->header
.size
= sizeof(update
->body
);
270 update
->body
.stid
= unit
;
271 update
->body
.rect
.x
= left
;
272 update
->body
.rect
.y
= top
;
273 update
->body
.rect
.w
= right
- left
;
274 update
->body
.rect
.h
= bottom
- top
;
278 * vmw_stdu_update_st - Full update of a Screen Target
280 * @dev_priv: VMW DRM device
281 * @stdu: display unit affected
283 * This function needs to be called whenever the content of a screen
284 * target has changed completely. Typically as a result of a backing
288 * 0 on success, error code on failure
290 static int vmw_stdu_update_st(struct vmw_private
*dev_priv
,
291 struct vmw_screen_target_display_unit
*stdu
)
293 struct vmw_stdu_update
*cmd
;
295 if (!stdu
->defined
) {
296 DRM_ERROR("No screen target defined");
300 cmd
= vmw_fifo_reserve(dev_priv
, sizeof(*cmd
));
302 if (unlikely(cmd
== NULL
)) {
303 DRM_ERROR("Out of FIFO space updating a Screen Target\n");
307 vmw_stdu_populate_update(cmd
, stdu
->base
.unit
,
308 0, stdu
->display_width
,
309 0, stdu
->display_height
);
311 vmw_fifo_commit(dev_priv
, sizeof(*cmd
));
319 * vmw_stdu_destroy_st - Destroy a Screen Target
321 * @dev_priv: VMW DRM device
322 * @stdu: display unit to destroy
324 static int vmw_stdu_destroy_st(struct vmw_private
*dev_priv
,
325 struct vmw_screen_target_display_unit
*stdu
)
330 SVGA3dCmdHeader header
;
331 SVGA3dCmdDestroyGBScreenTarget body
;
335 /* Nothing to do if not successfully defined */
336 if (unlikely(!stdu
->defined
))
339 cmd
= vmw_fifo_reserve(dev_priv
, sizeof(*cmd
));
341 if (unlikely(cmd
== NULL
)) {
342 DRM_ERROR("Out of FIFO space, screen target not destroyed\n");
346 cmd
->header
.id
= SVGA_3D_CMD_DESTROY_GB_SCREENTARGET
;
347 cmd
->header
.size
= sizeof(cmd
->body
);
349 cmd
->body
.stid
= stdu
->base
.unit
;
351 vmw_fifo_commit(dev_priv
, sizeof(*cmd
));
354 ret
= vmw_fallback_wait(dev_priv
, false, true, 0, false, 3*HZ
);
355 if (unlikely(ret
!= 0))
356 DRM_ERROR("Failed to sync with HW");
358 stdu
->defined
= false;
359 stdu
->display_width
= 0;
360 stdu
->display_height
= 0;
367 * vmw_stdu_crtc_mode_set_nofb - Updates screen target size
369 * @crtc: CRTC associated with the screen target
371 * This function defines/destroys a screen target
374 static void vmw_stdu_crtc_mode_set_nofb(struct drm_crtc
*crtc
)
376 struct vmw_private
*dev_priv
;
377 struct vmw_screen_target_display_unit
*stdu
;
381 stdu
= vmw_crtc_to_stdu(crtc
);
382 dev_priv
= vmw_priv(crtc
->dev
);
385 ret
= vmw_stdu_bind_st(dev_priv
, stdu
, NULL
);
387 DRM_ERROR("Failed to blank CRTC\n");
389 (void) vmw_stdu_update_st(dev_priv
, stdu
);
391 ret
= vmw_stdu_destroy_st(dev_priv
, stdu
);
393 DRM_ERROR("Failed to destroy Screen Target\n");
395 stdu
->content_fb_type
= SAME_AS_DISPLAY
;
398 if (!crtc
->state
->enable
)
401 vmw_svga_enable(dev_priv
);
402 ret
= vmw_stdu_define_st(dev_priv
, stdu
, &crtc
->mode
, crtc
->x
, crtc
->y
);
405 DRM_ERROR("Failed to define Screen Target of size %dx%d\n",
410 static void vmw_stdu_crtc_helper_prepare(struct drm_crtc
*crtc
)
415 static void vmw_stdu_crtc_atomic_enable(struct drm_crtc
*crtc
,
416 struct drm_crtc_state
*old_state
)
418 struct vmw_private
*dev_priv
;
419 struct vmw_screen_target_display_unit
*stdu
;
420 struct vmw_framebuffer
*vfb
;
421 struct drm_framebuffer
*fb
;
424 stdu
= vmw_crtc_to_stdu(crtc
);
425 dev_priv
= vmw_priv(crtc
->dev
);
426 fb
= crtc
->primary
->fb
;
428 vfb
= (fb
) ? vmw_framebuffer_to_vfb(fb
) : NULL
;
431 vmw_kms_add_active(dev_priv
, &stdu
->base
, vfb
);
433 vmw_kms_del_active(dev_priv
, &stdu
->base
);
436 static void vmw_stdu_crtc_atomic_disable(struct drm_crtc
*crtc
,
437 struct drm_crtc_state
*old_state
)
439 struct vmw_private
*dev_priv
;
440 struct vmw_screen_target_display_unit
*stdu
;
445 DRM_ERROR("CRTC is NULL\n");
449 stdu
= vmw_crtc_to_stdu(crtc
);
450 dev_priv
= vmw_priv(crtc
->dev
);
453 ret
= vmw_stdu_bind_st(dev_priv
, stdu
, NULL
);
455 DRM_ERROR("Failed to blank CRTC\n");
457 (void) vmw_stdu_update_st(dev_priv
, stdu
);
459 ret
= vmw_stdu_destroy_st(dev_priv
, stdu
);
461 DRM_ERROR("Failed to destroy Screen Target\n");
463 stdu
->content_fb_type
= SAME_AS_DISPLAY
;
468 * vmw_stdu_crtc_page_flip - Binds a buffer to a screen target
470 * @crtc: CRTC to attach FB to
472 * @event: Event to be posted. This event should've been alloced
473 * using k[mz]alloc, and should've been completely initialized.
474 * @page_flip_flags: Input flags.
476 * If the STDU uses the same display and content buffers, i.e. a true flip,
477 * this function will replace the existing display buffer with the new content
480 * If the STDU uses different display and content buffers, i.e. a blit, then
481 * only the content buffer will be updated.
484 * 0 on success, error code on failure
486 static int vmw_stdu_crtc_page_flip(struct drm_crtc
*crtc
,
487 struct drm_framebuffer
*new_fb
,
488 struct drm_pending_vblank_event
*event
,
490 struct drm_modeset_acquire_ctx
*ctx
)
493 struct vmw_private
*dev_priv
= vmw_priv(crtc
->dev
);
494 struct vmw_screen_target_display_unit
*stdu
= vmw_crtc_to_stdu(crtc
);
495 struct vmw_framebuffer
*vfb
= vmw_framebuffer_to_vfb(new_fb
);
496 struct drm_vmw_rect vclips
;
499 dev_priv
= vmw_priv(crtc
->dev
);
500 stdu
= vmw_crtc_to_stdu(crtc
);
502 if (!stdu
->defined
|| !vmw_kms_crtc_flippable(dev_priv
, crtc
))
506 * We're always async, but the helper doesn't know how to set async
507 * so lie to the helper. Also, the helper expects someone
508 * to pick the event up from the crtc state, and if nobody does,
509 * it will free it. Since we handle the event in this function,
510 * don't hand it to the helper.
512 flags
&= ~DRM_MODE_PAGE_FLIP_ASYNC
;
513 ret
= drm_atomic_helper_page_flip(crtc
, new_fb
, NULL
, flags
, ctx
);
515 DRM_ERROR("Page flip error %d.\n", ret
);
519 if (stdu
->base
.is_implicit
)
520 vmw_kms_update_implicit_fb(dev_priv
, crtc
);
523 * Now that we've bound a new surface to the screen target,
524 * update the contents.
528 vclips
.w
= crtc
->mode
.hdisplay
;
529 vclips
.h
= crtc
->mode
.vdisplay
;
532 ret
= vmw_kms_stdu_dma(dev_priv
, NULL
, vfb
, NULL
, NULL
, &vclips
,
535 ret
= vmw_kms_stdu_surface_dirty(dev_priv
, vfb
, NULL
, &vclips
,
536 NULL
, 0, 0, 1, 1, NULL
);
538 DRM_ERROR("Page flip update error %d.\n", ret
);
543 struct vmw_fence_obj
*fence
= NULL
;
544 struct drm_file
*file_priv
= event
->base
.file_priv
;
546 vmw_execbuf_fence_commands(NULL
, dev_priv
, &fence
, NULL
);
550 ret
= vmw_event_fence_action_queue(file_priv
, fence
,
552 &event
->event
.vbl
.tv_sec
,
553 &event
->event
.vbl
.tv_usec
,
555 vmw_fence_obj_unreference(&fence
);
557 (void) vmw_fifo_flush(dev_priv
, false);
565 * vmw_stdu_dmabuf_clip - Callback to encode a suface DMA command cliprect
567 * @dirty: The closure structure.
569 * Encodes a surface DMA command cliprect and updates the bounding box
572 static void vmw_stdu_dmabuf_clip(struct vmw_kms_dirty
*dirty
)
574 struct vmw_stdu_dirty
*ddirty
=
575 container_of(dirty
, struct vmw_stdu_dirty
, base
);
576 struct vmw_stdu_dma
*cmd
= dirty
->cmd
;
577 struct SVGA3dCopyBox
*blit
= (struct SVGA3dCopyBox
*) &cmd
[1];
579 blit
+= dirty
->num_hits
;
580 blit
->srcx
= dirty
->fb_x
;
581 blit
->srcy
= dirty
->fb_y
;
582 blit
->x
= dirty
->unit_x1
;
583 blit
->y
= dirty
->unit_y1
;
585 blit
->w
= dirty
->unit_x2
- dirty
->unit_x1
;
586 blit
->h
= dirty
->unit_y2
- dirty
->unit_y1
;
589 if (ddirty
->transfer
!= SVGA3D_WRITE_HOST_VRAM
)
592 /* Destination bounding box */
593 ddirty
->left
= min_t(s32
, ddirty
->left
, dirty
->unit_x1
);
594 ddirty
->top
= min_t(s32
, ddirty
->top
, dirty
->unit_y1
);
595 ddirty
->right
= max_t(s32
, ddirty
->right
, dirty
->unit_x2
);
596 ddirty
->bottom
= max_t(s32
, ddirty
->bottom
, dirty
->unit_y2
);
600 * vmw_stdu_dmabuf_fifo_commit - Callback to fill in and submit a DMA command.
602 * @dirty: The closure structure.
604 * Fills in the missing fields in a DMA command, and optionally encodes
605 * a screen target update command, depending on transfer direction.
607 static void vmw_stdu_dmabuf_fifo_commit(struct vmw_kms_dirty
*dirty
)
609 struct vmw_stdu_dirty
*ddirty
=
610 container_of(dirty
, struct vmw_stdu_dirty
, base
);
611 struct vmw_screen_target_display_unit
*stdu
=
612 container_of(dirty
->unit
, typeof(*stdu
), base
);
613 struct vmw_stdu_dma
*cmd
= dirty
->cmd
;
614 struct SVGA3dCopyBox
*blit
= (struct SVGA3dCopyBox
*) &cmd
[1];
615 SVGA3dCmdSurfaceDMASuffix
*suffix
=
616 (SVGA3dCmdSurfaceDMASuffix
*) &blit
[dirty
->num_hits
];
617 size_t blit_size
= sizeof(*blit
) * dirty
->num_hits
+ sizeof(*suffix
);
619 if (!dirty
->num_hits
) {
620 vmw_fifo_commit(dirty
->dev_priv
, 0);
624 cmd
->header
.id
= SVGA_3D_CMD_SURFACE_DMA
;
625 cmd
->header
.size
= sizeof(cmd
->body
) + blit_size
;
626 vmw_bo_get_guest_ptr(&ddirty
->buf
->base
, &cmd
->body
.guest
.ptr
);
627 cmd
->body
.guest
.pitch
= ddirty
->pitch
;
628 cmd
->body
.host
.sid
= stdu
->display_srf
->res
.id
;
629 cmd
->body
.host
.face
= 0;
630 cmd
->body
.host
.mipmap
= 0;
631 cmd
->body
.transfer
= ddirty
->transfer
;
632 suffix
->suffixSize
= sizeof(*suffix
);
633 suffix
->maximumOffset
= ddirty
->buf
->base
.num_pages
* PAGE_SIZE
;
635 if (ddirty
->transfer
== SVGA3D_WRITE_HOST_VRAM
) {
636 blit_size
+= sizeof(struct vmw_stdu_update
);
638 vmw_stdu_populate_update(&suffix
[1], stdu
->base
.unit
,
639 ddirty
->left
, ddirty
->right
,
640 ddirty
->top
, ddirty
->bottom
);
643 vmw_fifo_commit(dirty
->dev_priv
, sizeof(*cmd
) + blit_size
);
645 ddirty
->left
= ddirty
->top
= S32_MAX
;
646 ddirty
->right
= ddirty
->bottom
= S32_MIN
;
651 * vmw_stdu_dmabuf_cpu_clip - Callback to encode a CPU blit
653 * @dirty: The closure structure.
655 * This function calculates the bounding box for all the incoming clips.
657 static void vmw_stdu_dmabuf_cpu_clip(struct vmw_kms_dirty
*dirty
)
659 struct vmw_stdu_dirty
*ddirty
=
660 container_of(dirty
, struct vmw_stdu_dirty
, base
);
664 /* Calculate destination bounding box */
665 ddirty
->left
= min_t(s32
, ddirty
->left
, dirty
->unit_x1
);
666 ddirty
->top
= min_t(s32
, ddirty
->top
, dirty
->unit_y1
);
667 ddirty
->right
= max_t(s32
, ddirty
->right
, dirty
->unit_x2
);
668 ddirty
->bottom
= max_t(s32
, ddirty
->bottom
, dirty
->unit_y2
);
671 * Calculate content bounding box. We only need the top-left
672 * coordinate because width and height will be the same as the
673 * destination bounding box above
675 ddirty
->fb_left
= min_t(s32
, ddirty
->fb_left
, dirty
->fb_x
);
676 ddirty
->fb_top
= min_t(s32
, ddirty
->fb_top
, dirty
->fb_y
);
681 * vmw_stdu_dmabuf_cpu_commit - Callback to do a CPU blit from DMAbuf
683 * @dirty: The closure structure.
685 * For the special case when we cannot create a proxy surface in a
686 * 2D VM, we have to do a CPU blit ourselves.
688 static void vmw_stdu_dmabuf_cpu_commit(struct vmw_kms_dirty
*dirty
)
690 struct vmw_stdu_dirty
*ddirty
=
691 container_of(dirty
, struct vmw_stdu_dirty
, base
);
692 struct vmw_screen_target_display_unit
*stdu
=
693 container_of(dirty
->unit
, typeof(*stdu
), base
);
695 s32 src_pitch
, dst_pitch
;
698 struct ttm_bo_kmap_obj guest_map
;
701 if (!dirty
->num_hits
)
704 width
= ddirty
->right
- ddirty
->left
;
705 height
= ddirty
->bottom
- ddirty
->top
;
707 if (width
== 0 || height
== 0)
710 ret
= ttm_bo_kmap(&ddirty
->buf
->base
, 0, ddirty
->buf
->base
.num_pages
,
713 DRM_ERROR("Failed mapping framebuffer for blit: %d\n",
718 /* Assume we are blitting from Host (display_srf) to Guest (dmabuf) */
719 src_pitch
= stdu
->display_srf
->base_size
.width
* stdu
->cpp
;
720 src
= ttm_kmap_obj_virtual(&stdu
->host_map
, ¬_used
);
721 src
+= ddirty
->top
* src_pitch
+ ddirty
->left
* stdu
->cpp
;
723 dst_pitch
= ddirty
->pitch
;
724 dst
= ttm_kmap_obj_virtual(&guest_map
, ¬_used
);
725 dst
+= ddirty
->fb_top
* dst_pitch
+ ddirty
->fb_left
* stdu
->cpp
;
728 /* Figure out the real direction */
729 if (ddirty
->transfer
== SVGA3D_WRITE_HOST_VRAM
) {
734 tmp_pitch
= src_pitch
;
737 src_pitch
= dst_pitch
;
740 dst_pitch
= tmp_pitch
;
744 while (height
-- > 0) {
745 memcpy(dst
, src
, width
* stdu
->cpp
);
750 if (ddirty
->transfer
== SVGA3D_WRITE_HOST_VRAM
) {
751 struct vmw_private
*dev_priv
;
752 struct vmw_stdu_update
*cmd
;
753 struct drm_clip_rect region
;
756 /* We are updating the actual surface, not a proxy */
757 region
.x1
= ddirty
->left
;
758 region
.x2
= ddirty
->right
;
759 region
.y1
= ddirty
->top
;
760 region
.y2
= ddirty
->bottom
;
761 ret
= vmw_kms_update_proxy(
762 (struct vmw_resource
*) &stdu
->display_srf
->res
,
763 (const struct drm_clip_rect
*) ®ion
, 1, 1);
768 dev_priv
= vmw_priv(stdu
->base
.crtc
.dev
);
769 cmd
= vmw_fifo_reserve(dev_priv
, sizeof(*cmd
));
772 DRM_ERROR("Cannot reserve FIFO space to update STDU");
776 vmw_stdu_populate_update(cmd
, stdu
->base
.unit
,
777 ddirty
->left
, ddirty
->right
,
778 ddirty
->top
, ddirty
->bottom
);
780 vmw_fifo_commit(dev_priv
, sizeof(*cmd
));
783 ttm_bo_kunmap(&guest_map
);
785 ddirty
->left
= ddirty
->top
= ddirty
->fb_left
= ddirty
->fb_top
= S32_MAX
;
786 ddirty
->right
= ddirty
->bottom
= S32_MIN
;
790 * vmw_kms_stdu_dma - Perform a DMA transfer between a dma-buffer backed
791 * framebuffer and the screen target system.
793 * @dev_priv: Pointer to the device private structure.
794 * @file_priv: Pointer to a struct drm-file identifying the caller. May be
795 * set to NULL, but then @user_fence_rep must also be set to NULL.
796 * @vfb: Pointer to the dma-buffer backed framebuffer.
797 * @clips: Array of clip rects. Either @clips or @vclips must be NULL.
798 * @vclips: Alternate array of clip rects. Either @clips or @vclips must
800 * @num_clips: Number of clip rects in @clips or @vclips.
801 * @increment: Increment to use when looping over @clips or @vclips.
802 * @to_surface: Whether to DMA to the screen target system as opposed to
803 * from the screen target system.
804 * @interruptible: Whether to perform waits interruptible if possible.
806 * If DMA-ing till the screen target system, the function will also notify
807 * the screen target system that a bounding box of the cliprects has been
809 * Returns 0 on success, negative error code on failure. -ERESTARTSYS if
812 int vmw_kms_stdu_dma(struct vmw_private
*dev_priv
,
813 struct drm_file
*file_priv
,
814 struct vmw_framebuffer
*vfb
,
815 struct drm_vmw_fence_rep __user
*user_fence_rep
,
816 struct drm_clip_rect
*clips
,
817 struct drm_vmw_rect
*vclips
,
823 struct vmw_dma_buffer
*buf
=
824 container_of(vfb
, struct vmw_framebuffer_dmabuf
, base
)->buffer
;
825 struct vmw_stdu_dirty ddirty
;
828 ret
= vmw_kms_helper_buffer_prepare(dev_priv
, buf
, interruptible
,
833 ddirty
.transfer
= (to_surface
) ? SVGA3D_WRITE_HOST_VRAM
:
834 SVGA3D_READ_HOST_VRAM
;
835 ddirty
.left
= ddirty
.top
= S32_MAX
;
836 ddirty
.right
= ddirty
.bottom
= S32_MIN
;
837 ddirty
.fb_left
= ddirty
.fb_top
= S32_MAX
;
838 ddirty
.pitch
= vfb
->base
.pitches
[0];
840 ddirty
.base
.fifo_commit
= vmw_stdu_dmabuf_fifo_commit
;
841 ddirty
.base
.clip
= vmw_stdu_dmabuf_clip
;
842 ddirty
.base
.fifo_reserve_size
= sizeof(struct vmw_stdu_dma
) +
843 num_clips
* sizeof(SVGA3dCopyBox
) +
844 sizeof(SVGA3dCmdSurfaceDMASuffix
);
846 ddirty
.base
.fifo_reserve_size
+= sizeof(struct vmw_stdu_update
);
848 /* 2D VMs cannot use SVGA_3D_CMD_SURFACE_DMA so do CPU blit instead */
849 if (!(dev_priv
->capabilities
& SVGA_CAP_3D
)) {
850 ddirty
.base
.fifo_commit
= vmw_stdu_dmabuf_cpu_commit
;
851 ddirty
.base
.clip
= vmw_stdu_dmabuf_cpu_clip
;
852 ddirty
.base
.fifo_reserve_size
= 0;
855 ret
= vmw_kms_helper_dirty(dev_priv
, vfb
, clips
, vclips
,
856 0, 0, num_clips
, increment
, &ddirty
.base
);
857 vmw_kms_helper_buffer_finish(dev_priv
, file_priv
, buf
, NULL
,
864 * vmw_stdu_surface_clip - Callback to encode a surface copy command cliprect
866 * @dirty: The closure structure.
868 * Encodes a surface copy command cliprect and updates the bounding box
871 static void vmw_kms_stdu_surface_clip(struct vmw_kms_dirty
*dirty
)
873 struct vmw_stdu_dirty
*sdirty
=
874 container_of(dirty
, struct vmw_stdu_dirty
, base
);
875 struct vmw_stdu_surface_copy
*cmd
= dirty
->cmd
;
876 struct vmw_screen_target_display_unit
*stdu
=
877 container_of(dirty
->unit
, typeof(*stdu
), base
);
879 if (sdirty
->sid
!= stdu
->display_srf
->res
.id
) {
880 struct SVGA3dCopyBox
*blit
= (struct SVGA3dCopyBox
*) &cmd
[1];
882 blit
+= dirty
->num_hits
;
883 blit
->srcx
= dirty
->fb_x
;
884 blit
->srcy
= dirty
->fb_y
;
885 blit
->x
= dirty
->unit_x1
;
886 blit
->y
= dirty
->unit_y1
;
888 blit
->w
= dirty
->unit_x2
- dirty
->unit_x1
;
889 blit
->h
= dirty
->unit_y2
- dirty
->unit_y1
;
894 /* Destination bounding box */
895 sdirty
->left
= min_t(s32
, sdirty
->left
, dirty
->unit_x1
);
896 sdirty
->top
= min_t(s32
, sdirty
->top
, dirty
->unit_y1
);
897 sdirty
->right
= max_t(s32
, sdirty
->right
, dirty
->unit_x2
);
898 sdirty
->bottom
= max_t(s32
, sdirty
->bottom
, dirty
->unit_y2
);
902 * vmw_stdu_surface_fifo_commit - Callback to fill in and submit a surface
905 * @dirty: The closure structure.
907 * Fills in the missing fields in a surface copy command, and encodes a screen
908 * target update command.
910 static void vmw_kms_stdu_surface_fifo_commit(struct vmw_kms_dirty
*dirty
)
912 struct vmw_stdu_dirty
*sdirty
=
913 container_of(dirty
, struct vmw_stdu_dirty
, base
);
914 struct vmw_screen_target_display_unit
*stdu
=
915 container_of(dirty
->unit
, typeof(*stdu
), base
);
916 struct vmw_stdu_surface_copy
*cmd
= dirty
->cmd
;
917 struct vmw_stdu_update
*update
;
918 size_t blit_size
= sizeof(SVGA3dCopyBox
) * dirty
->num_hits
;
921 if (!dirty
->num_hits
) {
922 vmw_fifo_commit(dirty
->dev_priv
, 0);
926 if (sdirty
->sid
!= stdu
->display_srf
->res
.id
) {
927 struct SVGA3dCopyBox
*blit
= (struct SVGA3dCopyBox
*) &cmd
[1];
929 cmd
->header
.id
= SVGA_3D_CMD_SURFACE_COPY
;
930 cmd
->header
.size
= sizeof(cmd
->body
) + blit_size
;
931 cmd
->body
.src
.sid
= sdirty
->sid
;
932 cmd
->body
.dest
.sid
= stdu
->display_srf
->res
.id
;
933 update
= (struct vmw_stdu_update
*) &blit
[dirty
->num_hits
];
934 commit_size
= sizeof(*cmd
) + blit_size
+ sizeof(*update
);
937 commit_size
= sizeof(*update
);
940 vmw_stdu_populate_update(update
, stdu
->base
.unit
, sdirty
->left
,
941 sdirty
->right
, sdirty
->top
, sdirty
->bottom
);
943 vmw_fifo_commit(dirty
->dev_priv
, commit_size
);
945 sdirty
->left
= sdirty
->top
= S32_MAX
;
946 sdirty
->right
= sdirty
->bottom
= S32_MIN
;
950 * vmw_kms_stdu_surface_dirty - Dirty part of a surface backed framebuffer
952 * @dev_priv: Pointer to the device private structure.
953 * @framebuffer: Pointer to the surface-buffer backed framebuffer.
954 * @clips: Array of clip rects. Either @clips or @vclips must be NULL.
955 * @vclips: Alternate array of clip rects. Either @clips or @vclips must
957 * @srf: Pointer to surface to blit from. If NULL, the surface attached
958 * to @framebuffer will be used.
959 * @dest_x: X coordinate offset to align @srf with framebuffer coordinates.
960 * @dest_y: Y coordinate offset to align @srf with framebuffer coordinates.
961 * @num_clips: Number of clip rects in @clips.
962 * @inc: Increment to use when looping over @clips.
963 * @out_fence: If non-NULL, will return a ref-counted pointer to a
964 * struct vmw_fence_obj. The returned fence pointer may be NULL in which
965 * case the device has already synchronized.
967 * Returns 0 on success, negative error code on failure. -ERESTARTSYS if
970 int vmw_kms_stdu_surface_dirty(struct vmw_private
*dev_priv
,
971 struct vmw_framebuffer
*framebuffer
,
972 struct drm_clip_rect
*clips
,
973 struct drm_vmw_rect
*vclips
,
974 struct vmw_resource
*srf
,
977 unsigned num_clips
, int inc
,
978 struct vmw_fence_obj
**out_fence
)
980 struct vmw_framebuffer_surface
*vfbs
=
981 container_of(framebuffer
, typeof(*vfbs
), base
);
982 struct vmw_stdu_dirty sdirty
;
983 struct vmw_validation_ctx ctx
;
987 srf
= &vfbs
->surface
->res
;
989 ret
= vmw_kms_helper_resource_prepare(srf
, true, &ctx
);
993 if (vfbs
->is_dmabuf_proxy
) {
994 ret
= vmw_kms_update_proxy(srf
, clips
, num_clips
, inc
);
999 sdirty
.base
.fifo_commit
= vmw_kms_stdu_surface_fifo_commit
;
1000 sdirty
.base
.clip
= vmw_kms_stdu_surface_clip
;
1001 sdirty
.base
.fifo_reserve_size
= sizeof(struct vmw_stdu_surface_copy
) +
1002 sizeof(SVGA3dCopyBox
) * num_clips
+
1003 sizeof(struct vmw_stdu_update
);
1004 sdirty
.sid
= srf
->id
;
1005 sdirty
.left
= sdirty
.top
= S32_MAX
;
1006 sdirty
.right
= sdirty
.bottom
= S32_MIN
;
1008 ret
= vmw_kms_helper_dirty(dev_priv
, framebuffer
, clips
, vclips
,
1009 dest_x
, dest_y
, num_clips
, inc
,
1012 vmw_kms_helper_resource_finish(&ctx
, out_fence
);
1019 * Screen Target CRTC dispatch table
1021 static const struct drm_crtc_funcs vmw_stdu_crtc_funcs
= {
1022 .gamma_set
= vmw_du_crtc_gamma_set
,
1023 .destroy
= vmw_stdu_crtc_destroy
,
1024 .reset
= vmw_du_crtc_reset
,
1025 .atomic_duplicate_state
= vmw_du_crtc_duplicate_state
,
1026 .atomic_destroy_state
= vmw_du_crtc_destroy_state
,
1027 .set_config
= vmw_kms_set_config
,
1028 .page_flip
= vmw_stdu_crtc_page_flip
,
1033 /******************************************************************************
1034 * Screen Target Display Unit Encoder Functions
1035 *****************************************************************************/
1038 * vmw_stdu_encoder_destroy - cleans up the STDU
1040 * @encoder: used the get the containing STDU
1042 * vmwgfx cleans up crtc/encoder/connector all at the same time so technically
1043 * this can be a no-op. Nevertheless, it doesn't hurt of have this in case
1044 * the common KMS code changes and somehow vmw_stdu_crtc_destroy() doesn't
1047 static void vmw_stdu_encoder_destroy(struct drm_encoder
*encoder
)
1049 vmw_stdu_destroy(vmw_encoder_to_stdu(encoder
));
1052 static const struct drm_encoder_funcs vmw_stdu_encoder_funcs
= {
1053 .destroy
= vmw_stdu_encoder_destroy
,
1058 /******************************************************************************
1059 * Screen Target Display Unit Connector Functions
1060 *****************************************************************************/
1063 * vmw_stdu_connector_destroy - cleans up the STDU
1065 * @connector: used to get the containing STDU
1067 * vmwgfx cleans up crtc/encoder/connector all at the same time so technically
1068 * this can be a no-op. Nevertheless, it doesn't hurt of have this in case
1069 * the common KMS code changes and somehow vmw_stdu_crtc_destroy() doesn't
1072 static void vmw_stdu_connector_destroy(struct drm_connector
*connector
)
1074 vmw_stdu_destroy(vmw_connector_to_stdu(connector
));
1079 static const struct drm_connector_funcs vmw_stdu_connector_funcs
= {
1080 .dpms
= vmw_du_connector_dpms
,
1081 .detect
= vmw_du_connector_detect
,
1082 .fill_modes
= vmw_du_connector_fill_modes
,
1083 .set_property
= vmw_du_connector_set_property
,
1084 .destroy
= vmw_stdu_connector_destroy
,
1085 .reset
= vmw_du_connector_reset
,
1086 .atomic_duplicate_state
= vmw_du_connector_duplicate_state
,
1087 .atomic_destroy_state
= vmw_du_connector_destroy_state
,
1088 .atomic_set_property
= vmw_du_connector_atomic_set_property
,
1089 .atomic_get_property
= vmw_du_connector_atomic_get_property
,
1094 drm_connector_helper_funcs vmw_stdu_connector_helper_funcs
= {
1095 .best_encoder
= drm_atomic_helper_best_encoder
,
1100 /******************************************************************************
1101 * Screen Target Display Plane Functions
1102 *****************************************************************************/
1107 * vmw_stdu_primary_plane_cleanup_fb - Unpins the display surface
1109 * @plane: display plane
1110 * @old_state: Contains the FB to clean up
1112 * Unpins the display surface
1114 * Returns 0 on success
1117 vmw_stdu_primary_plane_cleanup_fb(struct drm_plane
*plane
,
1118 struct drm_plane_state
*old_state
)
1120 struct vmw_plane_state
*vps
= vmw_plane_state_to_vps(old_state
);
1122 if (vps
->host_map
.virtual)
1123 ttm_bo_kunmap(&vps
->host_map
);
1126 WARN_ON(!vps
->pinned
);
1128 vmw_du_plane_cleanup_fb(plane
, old_state
);
1130 vps
->content_fb_type
= SAME_AS_DISPLAY
;
1137 * vmw_stdu_primary_plane_prepare_fb - Readies the display surface
1139 * @plane: display plane
1140 * @new_state: info on the new plane state, including the FB
1142 * This function allocates a new display surface if the content is
1143 * backed by a DMA. The display surface is pinned here, and it'll
1144 * be unpinned in .cleanup_fb()
1146 * Returns 0 on success
1149 vmw_stdu_primary_plane_prepare_fb(struct drm_plane
*plane
,
1150 struct drm_plane_state
*new_state
)
1152 struct vmw_private
*dev_priv
= vmw_priv(plane
->dev
);
1153 struct drm_framebuffer
*new_fb
= new_state
->fb
;
1154 struct vmw_framebuffer
*vfb
;
1155 struct vmw_plane_state
*vps
= vmw_plane_state_to_vps(new_state
);
1156 enum stdu_content_type new_content_type
;
1157 struct vmw_framebuffer_surface
*new_vfbs
;
1158 struct drm_crtc
*crtc
= new_state
->crtc
;
1159 uint32_t hdisplay
= new_state
->crtc_w
, vdisplay
= new_state
->crtc_h
;
1162 /* No FB to prepare */
1165 WARN_ON(vps
->pinned
!= 0);
1166 vmw_surface_unreference(&vps
->surf
);
1172 vfb
= vmw_framebuffer_to_vfb(new_fb
);
1173 new_vfbs
= (vfb
->dmabuf
) ? NULL
: vmw_framebuffer_to_vfbs(new_fb
);
1175 if (new_vfbs
&& new_vfbs
->surface
->base_size
.width
== hdisplay
&&
1176 new_vfbs
->surface
->base_size
.height
== vdisplay
)
1177 new_content_type
= SAME_AS_DISPLAY
;
1178 else if (vfb
->dmabuf
)
1179 new_content_type
= SEPARATE_DMA
;
1181 new_content_type
= SEPARATE_SURFACE
;
1183 if (new_content_type
!= SAME_AS_DISPLAY
) {
1184 struct vmw_surface content_srf
;
1185 struct drm_vmw_size display_base_size
= {0};
1187 display_base_size
.width
= hdisplay
;
1188 display_base_size
.height
= vdisplay
;
1189 display_base_size
.depth
= 1;
1192 * If content buffer is a DMA buf, then we have to construct
1195 if (new_content_type
== SEPARATE_DMA
) {
1197 switch (new_fb
->format
->cpp
[0]*8) {
1199 content_srf
.format
= SVGA3D_X8R8G8B8
;
1203 content_srf
.format
= SVGA3D_R5G6B5
;
1207 content_srf
.format
= SVGA3D_P8
;
1211 DRM_ERROR("Invalid format\n");
1215 content_srf
.flags
= 0;
1216 content_srf
.mip_levels
[0] = 1;
1217 content_srf
.multisample_count
= 0;
1219 content_srf
= *new_vfbs
->surface
;
1223 struct drm_vmw_size cur_base_size
= vps
->surf
->base_size
;
1225 if (cur_base_size
.width
!= display_base_size
.width
||
1226 cur_base_size
.height
!= display_base_size
.height
||
1227 vps
->surf
->format
!= content_srf
.format
) {
1228 WARN_ON(vps
->pinned
!= 0);
1229 vmw_surface_unreference(&vps
->surf
);
1235 ret
= vmw_surface_gb_priv_define
1237 /* Kernel visible only */
1241 true, /* a scanout buffer */
1242 content_srf
.mip_levels
[0],
1243 content_srf
.multisample_count
,
1248 DRM_ERROR("Couldn't allocate STDU surface.\n");
1254 * prepare_fb and clean_fb should only take care of pinning
1255 * and unpinning. References are tracked by state objects.
1256 * The only time we add a reference in prepare_fb is if the
1257 * state object doesn't have a reference to begin with
1260 WARN_ON(vps
->pinned
!= 0);
1261 vmw_surface_unreference(&vps
->surf
);
1264 vps
->surf
= vmw_surface_reference(new_vfbs
->surface
);
1269 /* Pin new surface before flipping */
1270 ret
= vmw_resource_pin(&vps
->surf
->res
, false);
1277 vps
->content_fb_type
= new_content_type
;
1280 * This should only happen if the DMA buf is too large to create a
1281 * proxy surface for.
1282 * If we are a 2D VM with a DMA buffer then we have to use CPU blit
1283 * so cache these mappings
1285 if (vps
->content_fb_type
== SEPARATE_DMA
&&
1286 !(dev_priv
->capabilities
& SVGA_CAP_3D
)) {
1287 ret
= ttm_bo_kmap(&vps
->surf
->res
.backup
->base
, 0,
1288 vps
->surf
->res
.backup
->base
.num_pages
,
1291 DRM_ERROR("Failed to map display buffer to CPU\n");
1295 vps
->cpp
= new_fb
->pitches
[0] / new_fb
->width
;
1301 vmw_resource_unpin(&vps
->surf
->res
);
1305 vmw_surface_unreference(&vps
->surf
);
1312 * vmw_stdu_primary_plane_atomic_update - formally switches STDU to new plane
1314 * @plane: display plane
1315 * @old_state: Only used to get crtc info
1317 * Formally update stdu->display_srf to the new plane, and bind the new
1318 * plane STDU. This function is called during the commit phase when
1319 * all the preparation have been done and all the configurations have
1323 vmw_stdu_primary_plane_atomic_update(struct drm_plane
*plane
,
1324 struct drm_plane_state
*old_state
)
1326 struct vmw_private
*dev_priv
;
1327 struct vmw_screen_target_display_unit
*stdu
;
1328 struct vmw_plane_state
*vps
= vmw_plane_state_to_vps(plane
->state
);
1329 struct drm_crtc
*crtc
= plane
->state
->crtc
?: old_state
->crtc
;
1332 stdu
= vmw_crtc_to_stdu(crtc
);
1333 dev_priv
= vmw_priv(crtc
->dev
);
1335 stdu
->display_srf
= vps
->surf
;
1336 stdu
->content_fb_type
= vps
->content_fb_type
;
1337 stdu
->cpp
= vps
->cpp
;
1338 memcpy(&stdu
->host_map
, &vps
->host_map
, sizeof(vps
->host_map
));
1343 if (plane
->state
->fb
)
1344 ret
= vmw_stdu_bind_st(dev_priv
, stdu
, &stdu
->display_srf
->res
);
1346 ret
= vmw_stdu_bind_st(dev_priv
, stdu
, NULL
);
1349 * We cannot really fail this function, so if we do, then output an
1353 DRM_ERROR("Failed to bind surface to STDU.\n");
1355 crtc
->primary
->fb
= plane
->state
->fb
;
1357 ret
= vmw_stdu_update_st(dev_priv
, stdu
);
1360 DRM_ERROR("Failed to update STDU.\n");
1364 static const struct drm_plane_funcs vmw_stdu_plane_funcs
= {
1365 .update_plane
= drm_atomic_helper_update_plane
,
1366 .disable_plane
= drm_atomic_helper_disable_plane
,
1367 .destroy
= vmw_du_primary_plane_destroy
,
1368 .reset
= vmw_du_plane_reset
,
1369 .atomic_duplicate_state
= vmw_du_plane_duplicate_state
,
1370 .atomic_destroy_state
= vmw_du_plane_destroy_state
,
1373 static const struct drm_plane_funcs vmw_stdu_cursor_funcs
= {
1374 .update_plane
= drm_atomic_helper_update_plane
,
1375 .disable_plane
= drm_atomic_helper_disable_plane
,
1376 .destroy
= vmw_du_cursor_plane_destroy
,
1377 .reset
= vmw_du_plane_reset
,
1378 .atomic_duplicate_state
= vmw_du_plane_duplicate_state
,
1379 .atomic_destroy_state
= vmw_du_plane_destroy_state
,
1387 drm_plane_helper_funcs vmw_stdu_cursor_plane_helper_funcs
= {
1388 .atomic_check
= vmw_du_cursor_plane_atomic_check
,
1389 .atomic_update
= vmw_du_cursor_plane_atomic_update
,
1390 .prepare_fb
= vmw_du_cursor_plane_prepare_fb
,
1391 .cleanup_fb
= vmw_du_plane_cleanup_fb
,
1395 drm_plane_helper_funcs vmw_stdu_primary_plane_helper_funcs
= {
1396 .atomic_check
= vmw_du_primary_plane_atomic_check
,
1397 .atomic_update
= vmw_stdu_primary_plane_atomic_update
,
1398 .prepare_fb
= vmw_stdu_primary_plane_prepare_fb
,
1399 .cleanup_fb
= vmw_stdu_primary_plane_cleanup_fb
,
1402 static const struct drm_crtc_helper_funcs vmw_stdu_crtc_helper_funcs
= {
1403 .prepare
= vmw_stdu_crtc_helper_prepare
,
1404 .mode_set_nofb
= vmw_stdu_crtc_mode_set_nofb
,
1405 .atomic_check
= vmw_du_crtc_atomic_check
,
1406 .atomic_begin
= vmw_du_crtc_atomic_begin
,
1407 .atomic_flush
= vmw_du_crtc_atomic_flush
,
1408 .atomic_enable
= vmw_stdu_crtc_atomic_enable
,
1409 .atomic_disable
= vmw_stdu_crtc_atomic_disable
,
1414 * vmw_stdu_init - Sets up a Screen Target Display Unit
1416 * @dev_priv: VMW DRM device
1417 * @unit: unit number range from 0 to VMWGFX_NUM_DISPLAY_UNITS
1419 * This function is called once per CRTC, and allocates one Screen Target
1420 * display unit to represent that CRTC. Since the SVGA device does not separate
1421 * out encoder and connector, they are represented as part of the STDU as well.
1423 static int vmw_stdu_init(struct vmw_private
*dev_priv
, unsigned unit
)
1425 struct vmw_screen_target_display_unit
*stdu
;
1426 struct drm_device
*dev
= dev_priv
->dev
;
1427 struct drm_connector
*connector
;
1428 struct drm_encoder
*encoder
;
1429 struct drm_plane
*primary
, *cursor
;
1430 struct drm_crtc
*crtc
;
1434 stdu
= kzalloc(sizeof(*stdu
), GFP_KERNEL
);
1438 stdu
->base
.unit
= unit
;
1439 crtc
= &stdu
->base
.crtc
;
1440 encoder
= &stdu
->base
.encoder
;
1441 connector
= &stdu
->base
.connector
;
1442 primary
= &stdu
->base
.primary
;
1443 cursor
= &stdu
->base
.cursor
;
1445 stdu
->base
.pref_active
= (unit
== 0);
1446 stdu
->base
.pref_width
= dev_priv
->initial_width
;
1447 stdu
->base
.pref_height
= dev_priv
->initial_height
;
1450 * Remove this after enabling atomic because property values can
1451 * only exist in a state object
1453 stdu
->base
.is_implicit
= false;
1455 /* Initialize primary plane */
1456 vmw_du_plane_reset(primary
);
1458 ret
= drm_universal_plane_init(dev
, primary
,
1459 0, &vmw_stdu_plane_funcs
,
1460 vmw_primary_plane_formats
,
1461 ARRAY_SIZE(vmw_primary_plane_formats
),
1462 NULL
, DRM_PLANE_TYPE_PRIMARY
, NULL
);
1464 DRM_ERROR("Failed to initialize primary plane");
1468 drm_plane_helper_add(primary
, &vmw_stdu_primary_plane_helper_funcs
);
1470 /* Initialize cursor plane */
1471 vmw_du_plane_reset(cursor
);
1473 ret
= drm_universal_plane_init(dev
, cursor
,
1474 0, &vmw_stdu_cursor_funcs
,
1475 vmw_cursor_plane_formats
,
1476 ARRAY_SIZE(vmw_cursor_plane_formats
),
1477 NULL
, DRM_PLANE_TYPE_CURSOR
, NULL
);
1479 DRM_ERROR("Failed to initialize cursor plane");
1480 drm_plane_cleanup(&stdu
->base
.primary
);
1484 drm_plane_helper_add(cursor
, &vmw_stdu_cursor_plane_helper_funcs
);
1486 vmw_du_connector_reset(connector
);
1488 ret
= drm_connector_init(dev
, connector
, &vmw_stdu_connector_funcs
,
1489 DRM_MODE_CONNECTOR_VIRTUAL
);
1491 DRM_ERROR("Failed to initialize connector\n");
1495 drm_connector_helper_add(connector
, &vmw_stdu_connector_helper_funcs
);
1496 connector
->status
= vmw_du_connector_detect(connector
, false);
1497 vmw_connector_state_to_vcs(connector
->state
)->is_implicit
= false;
1499 ret
= drm_encoder_init(dev
, encoder
, &vmw_stdu_encoder_funcs
,
1500 DRM_MODE_ENCODER_VIRTUAL
, NULL
);
1502 DRM_ERROR("Failed to initialize encoder\n");
1503 goto err_free_connector
;
1506 (void) drm_mode_connector_attach_encoder(connector
, encoder
);
1507 encoder
->possible_crtcs
= (1 << unit
);
1508 encoder
->possible_clones
= 0;
1510 ret
= drm_connector_register(connector
);
1512 DRM_ERROR("Failed to register connector\n");
1513 goto err_free_encoder
;
1516 vmw_du_crtc_reset(crtc
);
1517 ret
= drm_crtc_init_with_planes(dev
, crtc
, &stdu
->base
.primary
,
1519 &vmw_stdu_crtc_funcs
, NULL
);
1521 DRM_ERROR("Failed to initialize CRTC\n");
1522 goto err_free_unregister
;
1525 drm_crtc_helper_add(crtc
, &vmw_stdu_crtc_helper_funcs
);
1527 drm_mode_crtc_set_gamma_size(crtc
, 256);
1529 drm_object_attach_property(&connector
->base
,
1530 dev_priv
->hotplug_mode_update_property
, 1);
1531 drm_object_attach_property(&connector
->base
,
1532 dev
->mode_config
.suggested_x_property
, 0);
1533 drm_object_attach_property(&connector
->base
,
1534 dev
->mode_config
.suggested_y_property
, 0);
1535 if (dev_priv
->implicit_placement_property
)
1536 drm_object_attach_property
1538 dev_priv
->implicit_placement_property
,
1539 stdu
->base
.is_implicit
);
1542 err_free_unregister
:
1543 drm_connector_unregister(connector
);
1545 drm_encoder_cleanup(encoder
);
1547 drm_connector_cleanup(connector
);
1556 * vmw_stdu_destroy - Cleans up a vmw_screen_target_display_unit
1558 * @stdu: Screen Target Display Unit to be destroyed
1560 * Clean up after vmw_stdu_init
1562 static void vmw_stdu_destroy(struct vmw_screen_target_display_unit
*stdu
)
1564 vmw_du_cleanup(&stdu
->base
);
1570 /******************************************************************************
1571 * Screen Target Display KMS Functions
1573 * These functions are called by the common KMS code in vmwgfx_kms.c
1574 *****************************************************************************/
1577 * vmw_kms_stdu_init_display - Initializes a Screen Target based display
1579 * @dev_priv: VMW DRM device
1581 * This function initialize a Screen Target based display device. It checks
1582 * the capability bits to make sure the underlying hardware can support
1583 * screen targets, and then creates the maximum number of CRTCs, a.k.a Display
1584 * Units, as supported by the display hardware.
1587 * 0 on success, error code otherwise
1589 int vmw_kms_stdu_init_display(struct vmw_private
*dev_priv
)
1591 struct drm_device
*dev
= dev_priv
->dev
;
1595 /* Do nothing if Screen Target support is turned off */
1596 if (!VMWGFX_ENABLE_SCREEN_TARGET_OTABLE
)
1599 if (!(dev_priv
->capabilities
& SVGA_CAP_GBOBJECTS
))
1602 ret
= drm_vblank_init(dev
, VMWGFX_NUM_DISPLAY_UNITS
);
1603 if (unlikely(ret
!= 0))
1606 dev_priv
->active_display_unit
= vmw_du_screen_target
;
1608 if (dev_priv
->capabilities
& SVGA_CAP_3D
) {
1610 * For 3D VMs, display (scanout) buffer size is the smaller of
1611 * max texture and max STDU
1613 uint32_t max_width
, max_height
;
1615 max_width
= min(dev_priv
->texture_max_width
,
1616 dev_priv
->stdu_max_width
);
1617 max_height
= min(dev_priv
->texture_max_height
,
1618 dev_priv
->stdu_max_height
);
1620 dev
->mode_config
.max_width
= max_width
;
1621 dev
->mode_config
.max_height
= max_height
;
1624 * Given various display aspect ratios, there's no way to
1625 * estimate these using prim_bb_mem. So just set these to
1626 * something arbitrarily large and we will reject any layout
1627 * that doesn't fit prim_bb_mem later
1629 dev
->mode_config
.max_width
= 8192;
1630 dev
->mode_config
.max_height
= 8192;
1633 vmw_kms_create_implicit_placement_property(dev_priv
, false);
1635 for (i
= 0; i
< VMWGFX_NUM_DISPLAY_UNITS
; ++i
) {
1636 ret
= vmw_stdu_init(dev_priv
, i
);
1638 if (unlikely(ret
!= 0)) {
1639 DRM_ERROR("Failed to initialize STDU %d", i
);
1644 DRM_INFO("Screen Target Display device initialized\n");