blob: b2b9bd23aeee620fee8610c490e41a6ef297997e [file] [log] [blame]
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001/**************************************************************************
2 *
3 * Copyright © 2009 VMware, Inc., Palo Alto, CA., USA
4 * 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#include "vmwgfx_kms.h"
29
Thomas Hellstrom7a1c2f62010-10-01 10:21:49 +020030
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000031#define vmw_crtc_to_ldu(x) \
32 container_of(x, struct vmw_legacy_display_unit, base.crtc)
33#define vmw_encoder_to_ldu(x) \
34 container_of(x, struct vmw_legacy_display_unit, base.encoder)
35#define vmw_connector_to_ldu(x) \
36 container_of(x, struct vmw_legacy_display_unit, base.connector)
37
38struct vmw_legacy_display {
39 struct list_head active;
40
41 unsigned num_active;
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +020042 unsigned last_num_active;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000043
44 struct vmw_framebuffer *fb;
45};
46
47/**
48 * Display unit using the legacy register interface.
49 */
50struct vmw_legacy_display_unit {
51 struct vmw_display_unit base;
52
53 struct list_head active;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000054};
55
56static void vmw_ldu_destroy(struct vmw_legacy_display_unit *ldu)
57{
58 list_del_init(&ldu->active);
59 vmw_display_unit_cleanup(&ldu->base);
60 kfree(ldu);
61}
62
63
64/*
65 * Legacy Display Unit CRTC functions
66 */
67
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000068static void vmw_ldu_crtc_destroy(struct drm_crtc *crtc)
69{
70 vmw_ldu_destroy(vmw_crtc_to_ldu(crtc));
71}
72
73static int vmw_ldu_commit_list(struct vmw_private *dev_priv)
74{
75 struct vmw_legacy_display *lds = dev_priv->ldu_priv;
76 struct vmw_legacy_display_unit *entry;
Jakob Bornecrantzbfc26382011-11-28 13:19:14 +010077 struct vmw_display_unit *du = NULL;
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +020078 struct drm_framebuffer *fb = NULL;
79 struct drm_crtc *crtc = NULL;
Jakob Bornecrantzbfc26382011-11-28 13:19:14 +010080 int i = 0, ret;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000081
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +020082 /* If there is no display topology the host just assumes
83 * that the guest will set the same layout as the host.
84 */
85 if (!(dev_priv->capabilities & SVGA_CAP_DISPLAY_TOPOLOGY)) {
86 int w = 0, h = 0;
87 list_for_each_entry(entry, &lds->active, active) {
88 crtc = &entry->base.crtc;
89 w = max(w, crtc->x + crtc->mode.hdisplay);
90 h = max(h, crtc->y + crtc->mode.vdisplay);
91 i++;
92 }
93
94 if (crtc == NULL)
95 return 0;
Matt Roperf4510a22014-04-01 15:22:40 -070096 fb = entry->base.crtc.primary->fb;
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +020097
Ville Syrjälä01f2c772011-12-20 00:06:49 +020098 return vmw_kms_write_svga(dev_priv, w, h, fb->pitches[0],
Michel Dänzer0bef23f2011-08-31 07:42:50 +000099 fb->bits_per_pixel, fb->depth);
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +0200100 }
101
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +0200102 if (!list_empty(&lds->active)) {
103 entry = list_entry(lds->active.next, typeof(*entry), active);
Matt Roperf4510a22014-04-01 15:22:40 -0700104 fb = entry->base.crtc.primary->fb;
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +0200105
Ville Syrjälä01f2c772011-12-20 00:06:49 +0200106 vmw_kms_write_svga(dev_priv, fb->width, fb->height, fb->pitches[0],
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +0200107 fb->bits_per_pixel, fb->depth);
108 }
109
Jakob Bornecrantz259600d52010-05-28 11:22:03 +0200110 /* Make sure we always show something. */
111 vmw_write(dev_priv, SVGA_REG_NUM_GUEST_DISPLAYS,
112 lds->num_active ? lds->num_active : 1);
113
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000114 i = 0;
115 list_for_each_entry(entry, &lds->active, active) {
116 crtc = &entry->base.crtc;
117
118 vmw_write(dev_priv, SVGA_REG_DISPLAY_ID, i);
119 vmw_write(dev_priv, SVGA_REG_DISPLAY_IS_PRIMARY, !i);
120 vmw_write(dev_priv, SVGA_REG_DISPLAY_POSITION_X, crtc->x);
121 vmw_write(dev_priv, SVGA_REG_DISPLAY_POSITION_Y, crtc->y);
122 vmw_write(dev_priv, SVGA_REG_DISPLAY_WIDTH, crtc->mode.hdisplay);
123 vmw_write(dev_priv, SVGA_REG_DISPLAY_HEIGHT, crtc->mode.vdisplay);
124 vmw_write(dev_priv, SVGA_REG_DISPLAY_ID, SVGA_ID_INVALID);
125
126 i++;
127 }
128
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +0200129 BUG_ON(i != lds->num_active);
130
131 lds->last_num_active = lds->num_active;
132
Jakob Bornecrantzbfc26382011-11-28 13:19:14 +0100133
134 /* Find the first du with a cursor. */
135 list_for_each_entry(entry, &lds->active, active) {
136 du = &entry->base;
137
138 if (!du->cursor_dmabuf)
139 continue;
140
141 ret = vmw_cursor_update_dmabuf(dev_priv,
142 du->cursor_dmabuf,
143 64, 64,
144 du->hotspot_x,
145 du->hotspot_y);
146 if (ret == 0)
147 break;
148
149 DRM_ERROR("Could not update cursor image\n");
150 }
151
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000152 return 0;
153}
154
155static int vmw_ldu_del_active(struct vmw_private *vmw_priv,
156 struct vmw_legacy_display_unit *ldu)
157{
158 struct vmw_legacy_display *ld = vmw_priv->ldu_priv;
159 if (list_empty(&ldu->active))
160 return 0;
161
Jakob Bornecrantz6a591a92010-05-28 11:21:55 +0200162 /* Must init otherwise list_empty(&ldu->active) will not work. */
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000163 list_del_init(&ldu->active);
164 if (--(ld->num_active) == 0) {
165 BUG_ON(!ld->fb);
166 if (ld->fb->unpin)
167 ld->fb->unpin(ld->fb);
168 ld->fb = NULL;
169 }
170
171 return 0;
172}
173
174static int vmw_ldu_add_active(struct vmw_private *vmw_priv,
175 struct vmw_legacy_display_unit *ldu,
176 struct vmw_framebuffer *vfb)
177{
178 struct vmw_legacy_display *ld = vmw_priv->ldu_priv;
179 struct vmw_legacy_display_unit *entry;
180 struct list_head *at;
181
Jakob Bornecrantz04e9e942010-05-28 11:21:56 +0200182 BUG_ON(!ld->num_active && ld->fb);
183 if (vfb != ld->fb) {
184 if (ld->fb && ld->fb->unpin)
185 ld->fb->unpin(ld->fb);
186 if (vfb->pin)
187 vfb->pin(vfb);
188 ld->fb = vfb;
189 }
190
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000191 if (!list_empty(&ldu->active))
192 return 0;
193
194 at = &ld->active;
195 list_for_each_entry(entry, &ld->active, active) {
Jakob Bornecrantzbbfad332010-05-28 11:22:01 +0200196 if (entry->base.unit > ldu->base.unit)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000197 break;
198
199 at = &entry->active;
200 }
201
202 list_add(&ldu->active, at);
Jakob Bornecrantz04e9e942010-05-28 11:21:56 +0200203
204 ld->num_active++;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000205
206 return 0;
207}
208
209static int vmw_ldu_crtc_set_config(struct drm_mode_set *set)
210{
211 struct vmw_private *dev_priv;
212 struct vmw_legacy_display_unit *ldu;
213 struct drm_connector *connector;
214 struct drm_display_mode *mode;
215 struct drm_encoder *encoder;
216 struct vmw_framebuffer *vfb;
217 struct drm_framebuffer *fb;
218 struct drm_crtc *crtc;
219
220 if (!set)
221 return -EINVAL;
222
223 if (!set->crtc)
224 return -EINVAL;
225
226 /* get the ldu */
227 crtc = set->crtc;
228 ldu = vmw_crtc_to_ldu(crtc);
229 vfb = set->fb ? vmw_framebuffer_to_vfb(set->fb) : NULL;
230 dev_priv = vmw_priv(crtc->dev);
231
232 if (set->num_connectors > 1) {
233 DRM_ERROR("to many connectors\n");
234 return -EINVAL;
235 }
236
237 if (set->num_connectors == 1 &&
238 set->connectors[0] != &ldu->base.connector) {
239 DRM_ERROR("connector doesn't match %p %p\n",
240 set->connectors[0], &ldu->base.connector);
241 return -EINVAL;
242 }
243
244 /* ldu only supports one fb active at the time */
245 if (dev_priv->ldu_priv->fb && vfb &&
Jakob Bornecrantz6a591a92010-05-28 11:21:55 +0200246 !(dev_priv->ldu_priv->num_active == 1 &&
247 !list_empty(&ldu->active)) &&
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000248 dev_priv->ldu_priv->fb != vfb) {
249 DRM_ERROR("Multiple framebuffers not supported\n");
250 return -EINVAL;
251 }
252
253 /* since they always map one to one these are safe */
254 connector = &ldu->base.connector;
255 encoder = &ldu->base.encoder;
256
257 /* should we turn the crtc off? */
258 if (set->num_connectors == 0 || !set->mode || !set->fb) {
259
260 connector->encoder = NULL;
261 encoder->crtc = NULL;
Matt Roperf4510a22014-04-01 15:22:40 -0700262 crtc->primary->fb = NULL;
Thomas Hellstromc6c1f322013-11-14 03:11:10 -0800263 crtc->enabled = false;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000264
265 vmw_ldu_del_active(dev_priv, ldu);
266
Michel Dänzer0bef23f2011-08-31 07:42:50 +0000267 return vmw_ldu_commit_list(dev_priv);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000268 }
269
270
271 /* we now know we want to set a mode */
272 mode = set->mode;
273 fb = set->fb;
274
275 if (set->x + mode->hdisplay > fb->width ||
276 set->y + mode->vdisplay > fb->height) {
277 DRM_ERROR("set outside of framebuffer\n");
278 return -EINVAL;
279 }
280
281 vmw_fb_off(dev_priv);
282
Matt Roperf4510a22014-04-01 15:22:40 -0700283 crtc->primary->fb = fb;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000284 encoder->crtc = crtc;
285 connector->encoder = encoder;
286 crtc->x = set->x;
287 crtc->y = set->y;
288 crtc->mode = *mode;
Thomas Hellstromc6c1f322013-11-14 03:11:10 -0800289 crtc->enabled = true;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000290
291 vmw_ldu_add_active(dev_priv, ldu, vfb);
292
Michel Dänzer0bef23f2011-08-31 07:42:50 +0000293 return vmw_ldu_commit_list(dev_priv);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000294}
295
296static struct drm_crtc_funcs vmw_legacy_crtc_funcs = {
Jakob Bornecrantz626ab772011-10-04 20:13:20 +0200297 .save = vmw_du_crtc_save,
298 .restore = vmw_du_crtc_restore,
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000299 .cursor_set = vmw_du_crtc_cursor_set,
300 .cursor_move = vmw_du_crtc_cursor_move,
Jakob Bornecrantz626ab772011-10-04 20:13:20 +0200301 .gamma_set = vmw_du_crtc_gamma_set,
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000302 .destroy = vmw_ldu_crtc_destroy,
303 .set_config = vmw_ldu_crtc_set_config,
304};
305
Jakob Bornecrantz626ab772011-10-04 20:13:20 +0200306
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000307/*
308 * Legacy Display Unit encoder functions
309 */
310
311static void vmw_ldu_encoder_destroy(struct drm_encoder *encoder)
312{
313 vmw_ldu_destroy(vmw_encoder_to_ldu(encoder));
314}
315
316static struct drm_encoder_funcs vmw_legacy_encoder_funcs = {
317 .destroy = vmw_ldu_encoder_destroy,
318};
319
320/*
321 * Legacy Display Unit connector functions
322 */
323
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000324static void vmw_ldu_connector_destroy(struct drm_connector *connector)
325{
326 vmw_ldu_destroy(vmw_connector_to_ldu(connector));
327}
328
329static struct drm_connector_funcs vmw_legacy_connector_funcs = {
Jakob Bornecrantz626ab772011-10-04 20:13:20 +0200330 .dpms = vmw_du_connector_dpms,
331 .save = vmw_du_connector_save,
332 .restore = vmw_du_connector_restore,
333 .detect = vmw_du_connector_detect,
334 .fill_modes = vmw_du_connector_fill_modes,
335 .set_property = vmw_du_connector_set_property,
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000336 .destroy = vmw_ldu_connector_destroy,
337};
338
339static int vmw_ldu_init(struct vmw_private *dev_priv, unsigned unit)
340{
341 struct vmw_legacy_display_unit *ldu;
342 struct drm_device *dev = dev_priv->dev;
343 struct drm_connector *connector;
344 struct drm_encoder *encoder;
345 struct drm_crtc *crtc;
346
347 ldu = kzalloc(sizeof(*ldu), GFP_KERNEL);
348 if (!ldu)
349 return -ENOMEM;
350
Jakob Bornecrantzbbfad332010-05-28 11:22:01 +0200351 ldu->base.unit = unit;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000352 crtc = &ldu->base.crtc;
353 encoder = &ldu->base.encoder;
354 connector = &ldu->base.connector;
355
Jakob Bornecrantz1ae1ddd2010-05-28 11:21:58 +0200356 INIT_LIST_HEAD(&ldu->active);
357
Jakob Bornecrantz626ab772011-10-04 20:13:20 +0200358 ldu->base.pref_active = (unit == 0);
Jakob Bornecrantzeb4f9232012-02-09 16:56:46 +0100359 ldu->base.pref_width = dev_priv->initial_width;
360 ldu->base.pref_height = dev_priv->initial_height;
Jakob Bornecrantz626ab772011-10-04 20:13:20 +0200361 ldu->base.pref_mode = NULL;
Thomas Hellstrom69874272011-11-02 09:43:11 +0100362 ldu->base.is_implicit = true;
Jakob Bornecrantzd8bd19d2010-06-01 11:54:20 +0200363
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000364 drm_connector_init(dev, connector, &vmw_legacy_connector_funcs,
Thomas Hellstrom305151e2011-10-22 10:36:20 +0200365 DRM_MODE_CONNECTOR_VIRTUAL);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +0200366 connector->status = vmw_du_connector_detect(connector, true);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000367
368 drm_encoder_init(dev, encoder, &vmw_legacy_encoder_funcs,
Thomas Hellstrom305151e2011-10-22 10:36:20 +0200369 DRM_MODE_ENCODER_VIRTUAL);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000370 drm_mode_connector_attach_encoder(connector, encoder);
371 encoder->possible_crtcs = (1 << unit);
372 encoder->possible_clones = 0;
373
Thomas Hellstrom6a0a7a92013-12-02 06:04:38 -0800374 (void) drm_sysfs_connector_add(connector);
375
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000376 drm_crtc_init(dev, crtc, &vmw_legacy_crtc_funcs);
377
Michel Dänzerf01b7ba2011-08-31 07:42:47 +0000378 drm_mode_crtc_set_gamma_size(crtc, 256);
379
Rob Clarkb8b163b2012-10-11 20:47:14 -0500380 drm_object_attach_property(&connector->base,
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000381 dev->mode_config.dirty_info_property,
382 1);
383
384 return 0;
385}
386
387int vmw_kms_init_legacy_display_system(struct vmw_private *dev_priv)
388{
Thomas Hellstrom7a1c2f62010-10-01 10:21:49 +0200389 struct drm_device *dev = dev_priv->dev;
Jakob Bornecrantz74b5ea32011-10-17 11:59:44 +0200390 int i, ret;
Thomas Hellstrom7a1c2f62010-10-01 10:21:49 +0200391
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000392 if (dev_priv->ldu_priv) {
393 DRM_INFO("ldu system already on\n");
394 return -EINVAL;
395 }
396
Joe Perches85b54e02010-10-31 22:33:53 +0000397 dev_priv->ldu_priv = kmalloc(sizeof(*dev_priv->ldu_priv), GFP_KERNEL);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000398 if (!dev_priv->ldu_priv)
399 return -ENOMEM;
400
401 INIT_LIST_HEAD(&dev_priv->ldu_priv->active);
402 dev_priv->ldu_priv->num_active = 0;
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +0200403 dev_priv->ldu_priv->last_num_active = 0;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000404 dev_priv->ldu_priv->fb = NULL;
405
Jakob Bornecrantz60a16a32011-10-17 11:59:43 +0200406 /* for old hardware without multimon only enable one display */
407 if (dev_priv->capabilities & SVGA_CAP_MULTIMON)
408 ret = drm_vblank_init(dev, VMWGFX_NUM_DISPLAY_UNITS);
409 else
410 ret = drm_vblank_init(dev, 1);
411 if (ret != 0)
412 goto err_free;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000413
Jakob Bornecrantz60a16a32011-10-17 11:59:43 +0200414 ret = drm_mode_create_dirty_info_property(dev);
415 if (ret != 0)
416 goto err_vblank_cleanup;
417
418 if (dev_priv->capabilities & SVGA_CAP_MULTIMON)
Jakob Bornecrantz56d1c782011-10-04 20:13:22 +0200419 for (i = 0; i < VMWGFX_NUM_DISPLAY_UNITS; ++i)
Thomas Hellstrom7a1c2f62010-10-01 10:21:49 +0200420 vmw_ldu_init(dev_priv, i);
Jakob Bornecrantz60a16a32011-10-17 11:59:43 +0200421 else
Thomas Hellstrom7a1c2f62010-10-01 10:21:49 +0200422 vmw_ldu_init(dev_priv, 0);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000423
Jakob Bornecrantz60a16a32011-10-17 11:59:43 +0200424 return 0;
425
426err_vblank_cleanup:
427 drm_vblank_cleanup(dev);
428err_free:
429 kfree(dev_priv->ldu_priv);
430 dev_priv->ldu_priv = NULL;
Thomas Hellstrom7a1c2f62010-10-01 10:21:49 +0200431 return ret;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000432}
433
434int vmw_kms_close_legacy_display_system(struct vmw_private *dev_priv)
435{
Thomas Hellstrom7a1c2f62010-10-01 10:21:49 +0200436 struct drm_device *dev = dev_priv->dev;
437
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000438 if (!dev_priv->ldu_priv)
439 return -ENOSYS;
440
Jakob Bornecrantz60a16a32011-10-17 11:59:43 +0200441 drm_vblank_cleanup(dev);
442
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000443 BUG_ON(!list_empty(&dev_priv->ldu_priv->active));
444
445 kfree(dev_priv->ldu_priv);
446
447 return 0;
448}