1 /* SPDX-License-Identifier: GPL-2.0 OR MIT */
2 /**************************************************************************
4 * Copyright 2009-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 **************************************************************************/
32 #include <drm/drm_crtc_helper.h>
33 #include <drm/drm_encoder.h>
34 #include "vmwgfx_drv.h"
39 * struct vmw_kms_dirty - closure structure for the vmw_kms_helper_dirty
42 * @fifo_commit: Callback that is called once for each display unit after
43 * all clip rects. This function must commit the fifo space reserved by the
44 * helper. Set up by the caller.
45 * @clip: Callback that is called for each cliprect on each display unit.
46 * Set up by the caller.
47 * @fifo_reserve_size: Fifo size that the helper should try to allocat for
48 * each display unit. Set up by the caller.
49 * @dev_priv: Pointer to the device private. Set up by the helper.
50 * @unit: The current display unit. Set up by the helper before a call to @clip.
51 * @cmd: The allocated fifo space. Set up by the helper before the first @clip
53 * @crtc: The crtc for which to build dirty commands.
54 * @num_hits: Number of clip rect commands for this display unit.
55 * Cleared by the helper before the first @clip call. Updated by the @clip
57 * @fb_x: Clip rect left side in framebuffer coordinates.
58 * @fb_y: Clip rect right side in framebuffer coordinates.
59 * @unit_x1: Clip rect left side in crtc coordinates.
60 * @unit_y1: Clip rect top side in crtc coordinates.
61 * @unit_x2: Clip rect right side in crtc coordinates.
62 * @unit_y2: Clip rect bottom side in crtc coordinates.
64 * The clip rect coordinates are updated by the helper for each @clip call.
65 * Note that this may be derived from if more info needs to be passed between
66 * helper caller and helper callbacks.
68 struct vmw_kms_dirty
{
69 void (*fifo_commit
)(struct vmw_kms_dirty
*);
70 void (*clip
)(struct vmw_kms_dirty
*);
71 size_t fifo_reserve_size
;
72 struct vmw_private
*dev_priv
;
73 struct vmw_display_unit
*unit
;
75 struct drm_crtc
*crtc
;
85 #define VMWGFX_NUM_DISPLAY_UNITS 8
88 #define vmw_framebuffer_to_vfb(x) \
89 container_of(x, struct vmw_framebuffer, base)
90 #define vmw_framebuffer_to_vfbs(x) \
91 container_of(x, struct vmw_framebuffer_surface, base.base)
92 #define vmw_framebuffer_to_vfbd(x) \
93 container_of(x, struct vmw_framebuffer_bo, base.base)
96 * Base class for framebuffers
98 * @pin is called the when ever a crtc uses this framebuffer
101 struct vmw_framebuffer
{
102 struct drm_framebuffer base
;
103 int (*pin
)(struct vmw_framebuffer
*fb
);
104 int (*unpin
)(struct vmw_framebuffer
*fb
);
106 struct ttm_base_object
*user_obj
;
107 uint32_t user_handle
;
113 struct vmw_clip_rect
{
117 struct vmw_framebuffer_surface
{
118 struct vmw_framebuffer base
;
119 struct vmw_surface
*surface
;
120 struct vmw_buffer_object
*buffer
;
121 struct list_head head
;
122 bool is_bo_proxy
; /* true if this is proxy surface for DMA buf */
126 struct vmw_framebuffer_bo
{
127 struct vmw_framebuffer base
;
128 struct vmw_buffer_object
*buffer
;
132 static const uint32_t vmw_primary_plane_formats
[] = {
140 static const uint32_t vmw_cursor_plane_formats
[] = {
145 #define vmw_crtc_state_to_vcs(x) container_of(x, struct vmw_crtc_state, base)
146 #define vmw_plane_state_to_vps(x) container_of(x, struct vmw_plane_state, base)
147 #define vmw_connector_state_to_vcs(x) \
148 container_of(x, struct vmw_connector_state, base)
151 * Derived class for crtc state object
153 * @base DRM crtc object
155 struct vmw_crtc_state
{
156 struct drm_crtc_state base
;
160 * Derived class for plane state object
162 * @base DRM plane object
163 * @surf Display surface for STDU
164 * @bo display bo for SOU
165 * @content_fb_type Used by STDU.
166 * @bo_size Size of the bo, used by Screen Object Display Unit
167 * @pinned pin count for STDU display surface
169 struct vmw_plane_state
{
170 struct drm_plane_state base
;
171 struct vmw_surface
*surf
;
172 struct vmw_buffer_object
*bo
;
175 unsigned long bo_size
;
185 * Derived class for connector state object
187 * @base DRM connector object
188 * @is_implicit connector property
191 struct vmw_connector_state
{
192 struct drm_connector_state base
;
199 * vmwgfx connector property representing the x position of this display
200 * unit (connector is synonymous to display unit) in overall topology.
201 * This is what the device expect as xRoot while creating screen.
208 * vmwgfx connector property representing the y position of this display
209 * unit (connector is synonymous to display unit) in overall topology.
210 * This is what the device expect as yRoot while creating screen.
216 * Base class display unit.
218 * Since the SVGA hw doesn't have a concept of a crtc, encoder or connector
219 * so the display unit is all of them at the same time. This is true for both
220 * legacy multimon and screen objects.
222 struct vmw_display_unit
{
223 struct drm_crtc crtc
;
224 struct drm_encoder encoder
;
225 struct drm_connector connector
;
226 struct drm_plane primary
;
227 struct drm_plane cursor
;
229 struct vmw_surface
*cursor_surface
;
230 struct vmw_buffer_object
*cursor_bo
;
244 * Prefered mode tracking.
247 unsigned pref_height
;
249 struct drm_display_mode
*pref_mode
;
257 bool active_implicit
;
262 struct vmw_validation_ctx
{
263 struct vmw_resource
*res
;
264 struct vmw_buffer_object
*buf
;
267 #define vmw_crtc_to_du(x) \
268 container_of(x, struct vmw_display_unit, crtc)
269 #define vmw_connector_to_du(x) \
270 container_of(x, struct vmw_display_unit, connector)
274 * Shared display unit functions - vmwgfx_kms.c
276 void vmw_du_cleanup(struct vmw_display_unit
*du
);
277 void vmw_du_crtc_save(struct drm_crtc
*crtc
);
278 void vmw_du_crtc_restore(struct drm_crtc
*crtc
);
279 int vmw_du_crtc_gamma_set(struct drm_crtc
*crtc
,
280 u16
*r
, u16
*g
, u16
*b
,
282 struct drm_modeset_acquire_ctx
*ctx
);
283 int vmw_du_connector_set_property(struct drm_connector
*connector
,
284 struct drm_property
*property
,
286 int vmw_du_connector_atomic_set_property(struct drm_connector
*connector
,
287 struct drm_connector_state
*state
,
288 struct drm_property
*property
,
291 vmw_du_connector_atomic_get_property(struct drm_connector
*connector
,
292 const struct drm_connector_state
*state
,
293 struct drm_property
*property
,
295 int vmw_du_connector_dpms(struct drm_connector
*connector
, int mode
);
296 void vmw_du_connector_save(struct drm_connector
*connector
);
297 void vmw_du_connector_restore(struct drm_connector
*connector
);
298 enum drm_connector_status
299 vmw_du_connector_detect(struct drm_connector
*connector
, bool force
);
300 int vmw_du_connector_fill_modes(struct drm_connector
*connector
,
301 uint32_t max_width
, uint32_t max_height
);
302 int vmw_kms_helper_dirty(struct vmw_private
*dev_priv
,
303 struct vmw_framebuffer
*framebuffer
,
304 const struct drm_clip_rect
*clips
,
305 const struct drm_vmw_rect
*vclips
,
306 s32 dest_x
, s32 dest_y
,
309 struct vmw_kms_dirty
*dirty
);
311 int vmw_kms_helper_buffer_prepare(struct vmw_private
*dev_priv
,
312 struct vmw_buffer_object
*buf
,
314 bool validate_as_mob
,
316 void vmw_kms_helper_buffer_revert(struct vmw_buffer_object
*buf
);
317 void vmw_kms_helper_buffer_finish(struct vmw_private
*dev_priv
,
318 struct drm_file
*file_priv
,
319 struct vmw_buffer_object
*buf
,
320 struct vmw_fence_obj
**out_fence
,
321 struct drm_vmw_fence_rep __user
*
323 int vmw_kms_helper_resource_prepare(struct vmw_resource
*res
,
325 struct vmw_validation_ctx
*ctx
);
326 void vmw_kms_helper_resource_revert(struct vmw_validation_ctx
*ctx
);
327 void vmw_kms_helper_resource_finish(struct vmw_validation_ctx
*ctx
,
328 struct vmw_fence_obj
**out_fence
);
329 int vmw_kms_readback(struct vmw_private
*dev_priv
,
330 struct drm_file
*file_priv
,
331 struct vmw_framebuffer
*vfb
,
332 struct drm_vmw_fence_rep __user
*user_fence_rep
,
333 struct drm_vmw_rect
*vclips
,
335 struct vmw_framebuffer
*
336 vmw_kms_new_framebuffer(struct vmw_private
*dev_priv
,
337 struct vmw_buffer_object
*bo
,
338 struct vmw_surface
*surface
,
340 const struct drm_mode_fb_cmd2
*mode_cmd
);
341 int vmw_kms_fbdev_init_data(struct vmw_private
*dev_priv
,
345 struct drm_connector
**p_con
,
346 struct drm_crtc
**p_crtc
,
347 struct drm_display_mode
**p_mode
);
348 void vmw_guess_mode_timing(struct drm_display_mode
*mode
);
349 void vmw_kms_del_active(struct vmw_private
*dev_priv
,
350 struct vmw_display_unit
*du
);
351 void vmw_kms_add_active(struct vmw_private
*dev_priv
,
352 struct vmw_display_unit
*du
,
353 struct vmw_framebuffer
*vfb
);
354 bool vmw_kms_crtc_flippable(struct vmw_private
*dev_priv
,
355 struct drm_crtc
*crtc
);
356 void vmw_kms_update_implicit_fb(struct vmw_private
*dev_priv
,
357 struct drm_crtc
*crtc
);
358 void vmw_kms_create_implicit_placement_property(struct vmw_private
*dev_priv
,
361 /* Universal Plane Helpers */
362 void vmw_du_primary_plane_destroy(struct drm_plane
*plane
);
363 void vmw_du_cursor_plane_destroy(struct drm_plane
*plane
);
366 int vmw_du_primary_plane_atomic_check(struct drm_plane
*plane
,
367 struct drm_plane_state
*state
);
368 int vmw_du_cursor_plane_atomic_check(struct drm_plane
*plane
,
369 struct drm_plane_state
*state
);
370 void vmw_du_cursor_plane_atomic_update(struct drm_plane
*plane
,
371 struct drm_plane_state
*old_state
);
372 int vmw_du_cursor_plane_prepare_fb(struct drm_plane
*plane
,
373 struct drm_plane_state
*new_state
);
374 void vmw_du_plane_cleanup_fb(struct drm_plane
*plane
,
375 struct drm_plane_state
*old_state
);
376 void vmw_du_plane_reset(struct drm_plane
*plane
);
377 struct drm_plane_state
*vmw_du_plane_duplicate_state(struct drm_plane
*plane
);
378 void vmw_du_plane_destroy_state(struct drm_plane
*plane
,
379 struct drm_plane_state
*state
);
380 void vmw_du_plane_unpin_surf(struct vmw_plane_state
*vps
,
383 int vmw_du_crtc_atomic_check(struct drm_crtc
*crtc
,
384 struct drm_crtc_state
*state
);
385 void vmw_du_crtc_atomic_begin(struct drm_crtc
*crtc
,
386 struct drm_crtc_state
*old_crtc_state
);
387 void vmw_du_crtc_atomic_flush(struct drm_crtc
*crtc
,
388 struct drm_crtc_state
*old_crtc_state
);
389 void vmw_du_crtc_reset(struct drm_crtc
*crtc
);
390 struct drm_crtc_state
*vmw_du_crtc_duplicate_state(struct drm_crtc
*crtc
);
391 void vmw_du_crtc_destroy_state(struct drm_crtc
*crtc
,
392 struct drm_crtc_state
*state
);
393 void vmw_du_connector_reset(struct drm_connector
*connector
);
394 struct drm_connector_state
*
395 vmw_du_connector_duplicate_state(struct drm_connector
*connector
);
397 void vmw_du_connector_destroy_state(struct drm_connector
*connector
,
398 struct drm_connector_state
*state
);
401 * Legacy display unit functions - vmwgfx_ldu.c
403 int vmw_kms_ldu_init_display(struct vmw_private
*dev_priv
);
404 int vmw_kms_ldu_close_display(struct vmw_private
*dev_priv
);
405 int vmw_kms_ldu_do_bo_dirty(struct vmw_private
*dev_priv
,
406 struct vmw_framebuffer
*framebuffer
,
407 unsigned int flags
, unsigned int color
,
408 struct drm_clip_rect
*clips
,
409 unsigned int num_clips
, int increment
);
410 int vmw_kms_update_proxy(struct vmw_resource
*res
,
411 const struct drm_clip_rect
*clips
,
416 * Screen Objects display functions - vmwgfx_scrn.c
418 int vmw_kms_sou_init_display(struct vmw_private
*dev_priv
);
419 int vmw_kms_sou_do_surface_dirty(struct vmw_private
*dev_priv
,
420 struct vmw_framebuffer
*framebuffer
,
421 struct drm_clip_rect
*clips
,
422 struct drm_vmw_rect
*vclips
,
423 struct vmw_resource
*srf
,
426 unsigned num_clips
, int inc
,
427 struct vmw_fence_obj
**out_fence
,
428 struct drm_crtc
*crtc
);
429 int vmw_kms_sou_do_bo_dirty(struct vmw_private
*dev_priv
,
430 struct vmw_framebuffer
*framebuffer
,
431 struct drm_clip_rect
*clips
,
432 struct drm_vmw_rect
*vclips
,
433 unsigned int num_clips
, int increment
,
435 struct vmw_fence_obj
**out_fence
,
436 struct drm_crtc
*crtc
);
437 int vmw_kms_sou_readback(struct vmw_private
*dev_priv
,
438 struct drm_file
*file_priv
,
439 struct vmw_framebuffer
*vfb
,
440 struct drm_vmw_fence_rep __user
*user_fence_rep
,
441 struct drm_vmw_rect
*vclips
,
443 struct drm_crtc
*crtc
);
446 * Screen Target Display Unit functions - vmwgfx_stdu.c
448 int vmw_kms_stdu_init_display(struct vmw_private
*dev_priv
);
449 int vmw_kms_stdu_surface_dirty(struct vmw_private
*dev_priv
,
450 struct vmw_framebuffer
*framebuffer
,
451 struct drm_clip_rect
*clips
,
452 struct drm_vmw_rect
*vclips
,
453 struct vmw_resource
*srf
,
456 unsigned num_clips
, int inc
,
457 struct vmw_fence_obj
**out_fence
,
458 struct drm_crtc
*crtc
);
459 int vmw_kms_stdu_dma(struct vmw_private
*dev_priv
,
460 struct drm_file
*file_priv
,
461 struct vmw_framebuffer
*vfb
,
462 struct drm_vmw_fence_rep __user
*user_fence_rep
,
463 struct drm_clip_rect
*clips
,
464 struct drm_vmw_rect
*vclips
,
469 struct drm_crtc
*crtc
);
471 int vmw_kms_set_config(struct drm_mode_set
*set
,
472 struct drm_modeset_acquire_ctx
*ctx
);