1 /**************************************************************************
3 * 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 "vmwgfx_drv.h"
36 * struct vmw_kms_dirty - closure structure for the vmw_kms_helper_dirty
39 * @fifo_commit: Callback that is called once for each display unit after
40 * all clip rects. This function must commit the fifo space reserved by the
41 * helper. Set up by the caller.
42 * @clip: Callback that is called for each cliprect on each display unit.
43 * Set up by the caller.
44 * @fifo_reserve_size: Fifo size that the helper should try to allocat for
45 * each display unit. Set up by the caller.
46 * @dev_priv: Pointer to the device private. Set up by the helper.
47 * @unit: The current display unit. Set up by the helper before a call to @clip.
48 * @cmd: The allocated fifo space. Set up by the helper before the first @clip
50 * @num_hits: Number of clip rect commands for this display unit.
51 * Cleared by the helper before the first @clip call. Updated by the @clip
53 * @fb_x: Clip rect left side in framebuffer coordinates.
54 * @fb_y: Clip rect right side in framebuffer coordinates.
55 * @unit_x1: Clip rect left side in crtc coordinates.
56 * @unit_y1: Clip rect top side in crtc coordinates.
57 * @unit_x2: Clip rect right side in crtc coordinates.
58 * @unit_y2: Clip rect bottom side in crtc coordinates.
60 * The clip rect coordinates are updated by the helper for each @clip call.
61 * Note that this may be derived from if more info needs to be passed between
62 * helper caller and helper callbacks.
64 struct vmw_kms_dirty
{
65 void (*fifo_commit
)(struct vmw_kms_dirty
*);
66 void (*clip
)(struct vmw_kms_dirty
*);
67 size_t fifo_reserve_size
;
68 struct vmw_private
*dev_priv
;
69 struct vmw_display_unit
*unit
;
80 #define VMWGFX_NUM_DISPLAY_UNITS 8
83 #define vmw_framebuffer_to_vfb(x) \
84 container_of(x, struct vmw_framebuffer, base)
85 #define vmw_framebuffer_to_vfbs(x) \
86 container_of(x, struct vmw_framebuffer_surface, base.base)
87 #define vmw_framebuffer_to_vfbd(x) \
88 container_of(x, struct vmw_framebuffer_dmabuf, base.base)
91 * Base class for framebuffers
93 * @pin is called the when ever a crtc uses this framebuffer
96 struct vmw_framebuffer
{
97 struct drm_framebuffer base
;
98 int (*pin
)(struct vmw_framebuffer
*fb
);
99 int (*unpin
)(struct vmw_framebuffer
*fb
);
101 struct ttm_base_object
*user_obj
;
102 uint32_t user_handle
;
108 struct vmw_clip_rect
{
112 struct vmw_framebuffer_surface
{
113 struct vmw_framebuffer base
;
114 struct vmw_surface
*surface
;
115 struct vmw_dma_buffer
*buffer
;
116 struct list_head head
;
117 bool is_dmabuf_proxy
; /* true if this is proxy surface for DMA buf */
121 struct vmw_framebuffer_dmabuf
{
122 struct vmw_framebuffer base
;
123 struct vmw_dma_buffer
*buffer
;
128 * Basic cursor manipulation
130 int vmw_cursor_update_image(struct vmw_private
*dev_priv
,
131 u32
*image
, u32 width
, u32 height
,
132 u32 hotspotX
, u32 hotspotY
);
133 int vmw_cursor_update_dmabuf(struct vmw_private
*dev_priv
,
134 struct vmw_dma_buffer
*dmabuf
,
135 u32 width
, u32 height
,
136 u32 hotspotX
, u32 hotspotY
);
137 void vmw_cursor_update_position(struct vmw_private
*dev_priv
,
138 bool show
, int x
, int y
);
142 * Base class display unit.
144 * Since the SVGA hw doesn't have a concept of a crtc, encoder or connector
145 * so the display unit is all of them at the same time. This is true for both
146 * legacy multimon and screen objects.
148 struct vmw_display_unit
{
149 struct drm_crtc crtc
;
150 struct drm_encoder encoder
;
151 struct drm_connector connector
;
153 struct vmw_surface
*cursor_surface
;
154 struct vmw_dma_buffer
*cursor_dmabuf
;
168 * Prefered mode tracking.
171 unsigned pref_height
;
173 struct drm_display_mode
*pref_mode
;
181 bool active_implicit
;
186 struct vmw_validation_ctx
{
187 struct vmw_resource
*res
;
188 struct vmw_dma_buffer
*buf
;
191 #define vmw_crtc_to_du(x) \
192 container_of(x, struct vmw_display_unit, crtc)
193 #define vmw_connector_to_du(x) \
194 container_of(x, struct vmw_display_unit, connector)
198 * Shared display unit functions - vmwgfx_kms.c
200 void vmw_du_cleanup(struct vmw_display_unit
*du
);
201 void vmw_du_crtc_save(struct drm_crtc
*crtc
);
202 void vmw_du_crtc_restore(struct drm_crtc
*crtc
);
203 int vmw_du_crtc_gamma_set(struct drm_crtc
*crtc
,
204 u16
*r
, u16
*g
, u16
*b
,
206 int vmw_du_crtc_cursor_set2(struct drm_crtc
*crtc
, struct drm_file
*file_priv
,
207 uint32_t handle
, uint32_t width
, uint32_t height
,
208 int32_t hot_x
, int32_t hot_y
);
209 int vmw_du_crtc_cursor_move(struct drm_crtc
*crtc
, int x
, int y
);
210 int vmw_du_connector_dpms(struct drm_connector
*connector
, int mode
);
211 void vmw_du_connector_save(struct drm_connector
*connector
);
212 void vmw_du_connector_restore(struct drm_connector
*connector
);
213 enum drm_connector_status
214 vmw_du_connector_detect(struct drm_connector
*connector
, bool force
);
215 int vmw_du_connector_fill_modes(struct drm_connector
*connector
,
216 uint32_t max_width
, uint32_t max_height
);
217 int vmw_du_connector_set_property(struct drm_connector
*connector
,
218 struct drm_property
*property
,
220 int vmw_kms_helper_dirty(struct vmw_private
*dev_priv
,
221 struct vmw_framebuffer
*framebuffer
,
222 const struct drm_clip_rect
*clips
,
223 const struct drm_vmw_rect
*vclips
,
224 s32 dest_x
, s32 dest_y
,
227 struct vmw_kms_dirty
*dirty
);
229 int vmw_kms_helper_buffer_prepare(struct vmw_private
*dev_priv
,
230 struct vmw_dma_buffer
*buf
,
232 bool validate_as_mob
);
233 void vmw_kms_helper_buffer_revert(struct vmw_dma_buffer
*buf
);
234 void vmw_kms_helper_buffer_finish(struct vmw_private
*dev_priv
,
235 struct drm_file
*file_priv
,
236 struct vmw_dma_buffer
*buf
,
237 struct vmw_fence_obj
**out_fence
,
238 struct drm_vmw_fence_rep __user
*
240 int vmw_kms_helper_resource_prepare(struct vmw_resource
*res
,
242 struct vmw_validation_ctx
*ctx
);
243 void vmw_kms_helper_resource_revert(struct vmw_validation_ctx
*ctx
);
244 void vmw_kms_helper_resource_finish(struct vmw_validation_ctx
*ctx
,
245 struct vmw_fence_obj
**out_fence
);
246 int vmw_kms_readback(struct vmw_private
*dev_priv
,
247 struct drm_file
*file_priv
,
248 struct vmw_framebuffer
*vfb
,
249 struct drm_vmw_fence_rep __user
*user_fence_rep
,
250 struct drm_vmw_rect
*vclips
,
252 struct vmw_framebuffer
*
253 vmw_kms_new_framebuffer(struct vmw_private
*dev_priv
,
254 struct vmw_dma_buffer
*dmabuf
,
255 struct vmw_surface
*surface
,
257 const struct drm_mode_fb_cmd
*mode_cmd
);
258 int vmw_kms_fbdev_init_data(struct vmw_private
*dev_priv
,
262 struct drm_connector
**p_con
,
263 struct drm_crtc
**p_crtc
,
264 struct drm_display_mode
**p_mode
);
265 void vmw_guess_mode_timing(struct drm_display_mode
*mode
);
266 void vmw_kms_del_active(struct vmw_private
*dev_priv
,
267 struct vmw_display_unit
*du
);
268 void vmw_kms_add_active(struct vmw_private
*dev_priv
,
269 struct vmw_display_unit
*du
,
270 struct vmw_framebuffer
*vfb
);
271 bool vmw_kms_crtc_flippable(struct vmw_private
*dev_priv
,
272 struct drm_crtc
*crtc
);
273 void vmw_kms_update_implicit_fb(struct vmw_private
*dev_priv
,
274 struct drm_crtc
*crtc
);
275 void vmw_kms_create_implicit_placement_property(struct vmw_private
*dev_priv
,
280 * Legacy display unit functions - vmwgfx_ldu.c
282 int vmw_kms_ldu_init_display(struct vmw_private
*dev_priv
);
283 int vmw_kms_ldu_close_display(struct vmw_private
*dev_priv
);
284 int vmw_kms_ldu_do_dmabuf_dirty(struct vmw_private
*dev_priv
,
285 struct vmw_framebuffer
*framebuffer
,
286 unsigned flags
, unsigned color
,
287 struct drm_clip_rect
*clips
,
288 unsigned num_clips
, int increment
);
289 int vmw_kms_update_proxy(struct vmw_resource
*res
,
290 const struct drm_clip_rect
*clips
,
295 * Screen Objects display functions - vmwgfx_scrn.c
297 int vmw_kms_sou_init_display(struct vmw_private
*dev_priv
);
298 int vmw_kms_sou_close_display(struct vmw_private
*dev_priv
);
299 int vmw_kms_sou_do_surface_dirty(struct vmw_private
*dev_priv
,
300 struct vmw_framebuffer
*framebuffer
,
301 struct drm_clip_rect
*clips
,
302 struct drm_vmw_rect
*vclips
,
303 struct vmw_resource
*srf
,
306 unsigned num_clips
, int inc
,
307 struct vmw_fence_obj
**out_fence
);
308 int vmw_kms_sou_do_dmabuf_dirty(struct vmw_private
*dev_priv
,
309 struct vmw_framebuffer
*framebuffer
,
310 struct drm_clip_rect
*clips
,
311 struct drm_vmw_rect
*vclips
,
312 unsigned num_clips
, int increment
,
314 struct vmw_fence_obj
**out_fence
);
315 int vmw_kms_sou_readback(struct vmw_private
*dev_priv
,
316 struct drm_file
*file_priv
,
317 struct vmw_framebuffer
*vfb
,
318 struct drm_vmw_fence_rep __user
*user_fence_rep
,
319 struct drm_vmw_rect
*vclips
,
323 * Screen Target Display Unit functions - vmwgfx_stdu.c
325 int vmw_kms_stdu_init_display(struct vmw_private
*dev_priv
);
326 int vmw_kms_stdu_close_display(struct vmw_private
*dev_priv
);
327 int vmw_kms_stdu_surface_dirty(struct vmw_private
*dev_priv
,
328 struct vmw_framebuffer
*framebuffer
,
329 struct drm_clip_rect
*clips
,
330 struct drm_vmw_rect
*vclips
,
331 struct vmw_resource
*srf
,
334 unsigned num_clips
, int inc
,
335 struct vmw_fence_obj
**out_fence
);
336 int vmw_kms_stdu_dma(struct vmw_private
*dev_priv
,
337 struct drm_file
*file_priv
,
338 struct vmw_framebuffer
*vfb
,
339 struct drm_vmw_fence_rep __user
*user_fence_rep
,
340 struct drm_clip_rect
*clips
,
341 struct drm_vmw_rect
*vclips
,