blob: 0f2c29166f7cf4836f1ae81e657aeadfaee6ad22 [file] [log] [blame]
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001/**************************************************************************
2 *
Sinclair Yehc8261a92015-06-26 01:23:42 -07003 * Copyright © 2009-2014 VMware, Inc., Palo Alto, CA., USA
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00004 * All Rights Reserved.
5 *
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:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
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.
25 *
26 **************************************************************************/
27
28#ifndef VMWGFX_KMS_H_
29#define VMWGFX_KMS_H_
30
David Howells760285e2012-10-02 18:01:07 +010031#include <drm/drmP.h>
32#include <drm/drm_crtc_helper.h>
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000033#include "vmwgfx_drv.h"
34
Sinclair Yehc8261a92015-06-26 01:23:42 -070035
36
Jakob Bornecrantz56d1c782011-10-04 20:13:22 +020037#define VMWGFX_NUM_DISPLAY_UNITS 8
38
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000039
40#define vmw_framebuffer_to_vfb(x) \
41 container_of(x, struct vmw_framebuffer, base)
Sinclair Yehc8261a92015-06-26 01:23:42 -070042#define vmw_framebuffer_to_vfbs(x) \
43 container_of(x, struct vmw_framebuffer_surface, base.base)
44#define vmw_framebuffer_to_vfbd(x) \
45 container_of(x, struct vmw_framebuffer_dmabuf, base.base)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000046
47/**
48 * Base class for framebuffers
49 *
50 * @pin is called the when ever a crtc uses this framebuffer
51 * @unpin is called
52 */
53struct vmw_framebuffer {
54 struct drm_framebuffer base;
55 int (*pin)(struct vmw_framebuffer *fb);
56 int (*unpin)(struct vmw_framebuffer *fb);
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +020057 bool dmabuf;
Thomas Hellstrom90ff18b2011-10-04 20:13:32 +020058 struct ttm_base_object *user_obj;
59 uint32_t user_handle;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000060};
61
Sinclair Yehc8261a92015-06-26 01:23:42 -070062/*
63 * Clip rectangle
64 */
65struct vmw_clip_rect {
66 int x1, x2, y1, y2;
67};
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000068
Sinclair Yehc8261a92015-06-26 01:23:42 -070069struct vmw_framebuffer_surface {
70 struct vmw_framebuffer base;
71 struct vmw_surface *surface;
72 struct vmw_dma_buffer *buffer;
73 struct list_head head;
74 struct drm_master *master;
75};
76
77
78struct vmw_framebuffer_dmabuf {
79 struct vmw_framebuffer base;
80 struct vmw_dma_buffer *buffer;
81};
82
83
84/*
85 * Basic clip rect manipulation
86 */
87void vmw_clip_cliprects(struct drm_clip_rect *rects,
88 int num_rects,
89 struct vmw_clip_rect clip,
90 SVGASignedRect *out_rects,
91 int *out_num);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000092
93/*
94 * Basic cursor manipulation
95 */
96int vmw_cursor_update_image(struct vmw_private *dev_priv,
97 u32 *image, u32 width, u32 height,
98 u32 hotspotX, u32 hotspotY);
Jakob Bornecrantzbfc26382011-11-28 13:19:14 +010099int vmw_cursor_update_dmabuf(struct vmw_private *dev_priv,
100 struct vmw_dma_buffer *dmabuf,
101 u32 width, u32 height,
102 u32 hotspotX, u32 hotspotY);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000103void vmw_cursor_update_position(struct vmw_private *dev_priv,
104 bool show, int x, int y);
105
Jakob Bornecrantzbfc26382011-11-28 13:19:14 +0100106
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000107/**
108 * Base class display unit.
109 *
110 * Since the SVGA hw doesn't have a concept of a crtc, encoder or connector
111 * so the display unit is all of them at the same time. This is true for both
112 * legacy multimon and screen objects.
113 */
114struct vmw_display_unit {
115 struct drm_crtc crtc;
116 struct drm_encoder encoder;
117 struct drm_connector connector;
118
119 struct vmw_surface *cursor_surface;
120 struct vmw_dma_buffer *cursor_dmabuf;
121 size_t cursor_age;
122
123 int cursor_x;
124 int cursor_y;
125
126 int hotspot_x;
127 int hotspot_y;
128
129 unsigned unit;
Jakob Bornecrantz626ab772011-10-04 20:13:20 +0200130
131 /*
132 * Prefered mode tracking.
133 */
134 unsigned pref_width;
135 unsigned pref_height;
136 bool pref_active;
137 struct drm_display_mode *pref_mode;
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +0200138
139 /*
140 * Gui positioning
141 */
142 int gui_x;
143 int gui_y;
Thomas Hellstrom69874272011-11-02 09:43:11 +0100144 bool is_implicit;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000145};
146
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +0200147#define vmw_crtc_to_du(x) \
148 container_of(x, struct vmw_display_unit, crtc)
Jakob Bornecrantz626ab772011-10-04 20:13:20 +0200149#define vmw_connector_to_du(x) \
150 container_of(x, struct vmw_display_unit, connector)
151
152
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000153/*
154 * Shared display unit functions - vmwgfx_kms.c
155 */
Sinclair Yehc8261a92015-06-26 01:23:42 -0700156void vmw_du_cleanup(struct vmw_display_unit *du);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +0200157void vmw_du_crtc_save(struct drm_crtc *crtc);
158void vmw_du_crtc_restore(struct drm_crtc *crtc);
159void vmw_du_crtc_gamma_set(struct drm_crtc *crtc,
160 u16 *r, u16 *g, u16 *b,
161 uint32_t start, uint32_t size);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000162int vmw_du_crtc_cursor_set(struct drm_crtc *crtc, struct drm_file *file_priv,
163 uint32_t handle, uint32_t width, uint32_t height);
164int vmw_du_crtc_cursor_move(struct drm_crtc *crtc, int x, int y);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +0200165void vmw_du_connector_dpms(struct drm_connector *connector, int mode);
166void vmw_du_connector_save(struct drm_connector *connector);
167void vmw_du_connector_restore(struct drm_connector *connector);
168enum drm_connector_status
169vmw_du_connector_detect(struct drm_connector *connector, bool force);
170int vmw_du_connector_fill_modes(struct drm_connector *connector,
171 uint32_t max_width, uint32_t max_height);
172int vmw_du_connector_set_property(struct drm_connector *connector,
173 struct drm_property *property,
174 uint64_t val);
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +0200175
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000176
177/*
Jakob Bornecrantzd8bd19d2010-06-01 11:54:20 +0200178 * Legacy display unit functions - vmwgfx_ldu.c
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000179 */
Sinclair Yehc8261a92015-06-26 01:23:42 -0700180int vmw_kms_ldu_init_display(struct vmw_private *dev_priv);
181int vmw_kms_ldu_close_display(struct vmw_private *dev_priv);
182int vmw_kms_ldu_do_dmabuf_dirty(struct vmw_private *dev_priv,
183 struct vmw_framebuffer *framebuffer,
184 unsigned flags, unsigned color,
185 struct drm_clip_rect *clips,
186 unsigned num_clips, int increment);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000187
Jakob Bornecrantz56d1c782011-10-04 20:13:22 +0200188/*
189 * Screen Objects display functions - vmwgfx_scrn.c
190 */
Sinclair Yehc8261a92015-06-26 01:23:42 -0700191int vmw_kms_sou_init_display(struct vmw_private *dev_priv);
192int vmw_kms_sou_close_display(struct vmw_private *dev_priv);
193int vmw_kms_sou_do_surface_dirty(struct vmw_private *dev_priv,
194 struct drm_file *file_priv,
195 struct vmw_framebuffer *framebuffer,
196 unsigned flags, unsigned color,
197 struct drm_clip_rect *clips,
198 unsigned num_clips, int inc,
199 struct vmw_fence_obj **out_fence);
200int vmw_kms_sou_do_dmabuf_dirty(struct drm_file *file_priv,
201 struct vmw_private *dev_priv,
202 struct vmw_framebuffer *framebuffer,
203 unsigned flags, unsigned color,
204 struct drm_clip_rect *clips,
205 unsigned num_clips, int increment,
206 struct vmw_fence_obj **out_fence);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000207#endif