vmwgfx: Let SVGA_REG_NUM_DISPLAYS determine output connectivity
[deliverable/linux.git] / drivers / gpu / drm / vmwgfx / vmwgfx_ldu.c
CommitLineData
fb1d9738
JB
1/**************************************************************************
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
7a1c2f6c
TH
30#define VMWGFX_LDU_NUM_DU 8
31
fb1d9738
JB
32#define vmw_crtc_to_ldu(x) \
33 container_of(x, struct vmw_legacy_display_unit, base.crtc)
34#define vmw_encoder_to_ldu(x) \
35 container_of(x, struct vmw_legacy_display_unit, base.encoder)
36#define vmw_connector_to_ldu(x) \
37 container_of(x, struct vmw_legacy_display_unit, base.connector)
38
39struct vmw_legacy_display {
40 struct list_head active;
41
42 unsigned num_active;
d7e1958d 43 unsigned last_num_active;
fb1d9738
JB
44
45 struct vmw_framebuffer *fb;
46};
47
48/**
49 * Display unit using the legacy register interface.
50 */
51struct vmw_legacy_display_unit {
52 struct vmw_display_unit base;
53
d8bd19d2
JB
54 unsigned pref_width;
55 unsigned pref_height;
56 bool pref_active;
57 struct drm_display_mode *pref_mode;
58
fb1d9738 59 struct list_head active;
fb1d9738
JB
60};
61
62static void vmw_ldu_destroy(struct vmw_legacy_display_unit *ldu)
63{
64 list_del_init(&ldu->active);
65 vmw_display_unit_cleanup(&ldu->base);
66 kfree(ldu);
67}
68
69
70/*
71 * Legacy Display Unit CRTC functions
72 */
73
74static void vmw_ldu_crtc_save(struct drm_crtc *crtc)
75{
76}
77
78static void vmw_ldu_crtc_restore(struct drm_crtc *crtc)
79{
80}
81
82static void vmw_ldu_crtc_gamma_set(struct drm_crtc *crtc,
83 u16 *r, u16 *g, u16 *b,
7203425a 84 uint32_t start, uint32_t size)
fb1d9738
JB
85{
86}
87
88static void vmw_ldu_crtc_destroy(struct drm_crtc *crtc)
89{
90 vmw_ldu_destroy(vmw_crtc_to_ldu(crtc));
91}
92
93static int vmw_ldu_commit_list(struct vmw_private *dev_priv)
94{
95 struct vmw_legacy_display *lds = dev_priv->ldu_priv;
96 struct vmw_legacy_display_unit *entry;
d7e1958d
JB
97 struct drm_framebuffer *fb = NULL;
98 struct drm_crtc *crtc = NULL;
fb1d9738
JB
99 int i = 0;
100
d7e1958d
JB
101 /* If there is no display topology the host just assumes
102 * that the guest will set the same layout as the host.
103 */
104 if (!(dev_priv->capabilities & SVGA_CAP_DISPLAY_TOPOLOGY)) {
105 int w = 0, h = 0;
106 list_for_each_entry(entry, &lds->active, active) {
107 crtc = &entry->base.crtc;
108 w = max(w, crtc->x + crtc->mode.hdisplay);
109 h = max(h, crtc->y + crtc->mode.vdisplay);
110 i++;
111 }
112
113 if (crtc == NULL)
114 return 0;
115 fb = entry->base.crtc.fb;
116
d7e1958d
JB
117 vmw_kms_write_svga(dev_priv, w, h, fb->pitch,
118 fb->bits_per_pixel, fb->depth);
d7e1958d
JB
119
120 return 0;
121 }
122
d7e1958d
JB
123 if (!list_empty(&lds->active)) {
124 entry = list_entry(lds->active.next, typeof(*entry), active);
125 fb = entry->base.crtc.fb;
126
127 vmw_kms_write_svga(dev_priv, fb->width, fb->height, fb->pitch,
128 fb->bits_per_pixel, fb->depth);
129 }
130
259600d5
JB
131 /* Make sure we always show something. */
132 vmw_write(dev_priv, SVGA_REG_NUM_GUEST_DISPLAYS,
133 lds->num_active ? lds->num_active : 1);
134
fb1d9738
JB
135 i = 0;
136 list_for_each_entry(entry, &lds->active, active) {
137 crtc = &entry->base.crtc;
138
139 vmw_write(dev_priv, SVGA_REG_DISPLAY_ID, i);
140 vmw_write(dev_priv, SVGA_REG_DISPLAY_IS_PRIMARY, !i);
141 vmw_write(dev_priv, SVGA_REG_DISPLAY_POSITION_X, crtc->x);
142 vmw_write(dev_priv, SVGA_REG_DISPLAY_POSITION_Y, crtc->y);
143 vmw_write(dev_priv, SVGA_REG_DISPLAY_WIDTH, crtc->mode.hdisplay);
144 vmw_write(dev_priv, SVGA_REG_DISPLAY_HEIGHT, crtc->mode.vdisplay);
145 vmw_write(dev_priv, SVGA_REG_DISPLAY_ID, SVGA_ID_INVALID);
146
147 i++;
148 }
149
d7e1958d
JB
150 BUG_ON(i != lds->num_active);
151
152 lds->last_num_active = lds->num_active;
153
fb1d9738
JB
154 return 0;
155}
156
157static int vmw_ldu_del_active(struct vmw_private *vmw_priv,
158 struct vmw_legacy_display_unit *ldu)
159{
160 struct vmw_legacy_display *ld = vmw_priv->ldu_priv;
161 if (list_empty(&ldu->active))
162 return 0;
163
6a591a96 164 /* Must init otherwise list_empty(&ldu->active) will not work. */
fb1d9738
JB
165 list_del_init(&ldu->active);
166 if (--(ld->num_active) == 0) {
167 BUG_ON(!ld->fb);
168 if (ld->fb->unpin)
169 ld->fb->unpin(ld->fb);
170 ld->fb = NULL;
171 }
172
173 return 0;
174}
175
176static int vmw_ldu_add_active(struct vmw_private *vmw_priv,
177 struct vmw_legacy_display_unit *ldu,
178 struct vmw_framebuffer *vfb)
179{
180 struct vmw_legacy_display *ld = vmw_priv->ldu_priv;
181 struct vmw_legacy_display_unit *entry;
182 struct list_head *at;
183
04e9e94d
JB
184 BUG_ON(!ld->num_active && ld->fb);
185 if (vfb != ld->fb) {
186 if (ld->fb && ld->fb->unpin)
187 ld->fb->unpin(ld->fb);
188 if (vfb->pin)
189 vfb->pin(vfb);
190 ld->fb = vfb;
191 }
192
fb1d9738
JB
193 if (!list_empty(&ldu->active))
194 return 0;
195
196 at = &ld->active;
197 list_for_each_entry(entry, &ld->active, active) {
bbfad336 198 if (entry->base.unit > ldu->base.unit)
fb1d9738
JB
199 break;
200
201 at = &entry->active;
202 }
203
204 list_add(&ldu->active, at);
04e9e94d
JB
205
206 ld->num_active++;
fb1d9738
JB
207
208 return 0;
209}
210
211static int vmw_ldu_crtc_set_config(struct drm_mode_set *set)
212{
213 struct vmw_private *dev_priv;
214 struct vmw_legacy_display_unit *ldu;
215 struct drm_connector *connector;
216 struct drm_display_mode *mode;
217 struct drm_encoder *encoder;
218 struct vmw_framebuffer *vfb;
219 struct drm_framebuffer *fb;
220 struct drm_crtc *crtc;
221
222 if (!set)
223 return -EINVAL;
224
225 if (!set->crtc)
226 return -EINVAL;
227
228 /* get the ldu */
229 crtc = set->crtc;
230 ldu = vmw_crtc_to_ldu(crtc);
231 vfb = set->fb ? vmw_framebuffer_to_vfb(set->fb) : NULL;
232 dev_priv = vmw_priv(crtc->dev);
233
234 if (set->num_connectors > 1) {
235 DRM_ERROR("to many connectors\n");
236 return -EINVAL;
237 }
238
239 if (set->num_connectors == 1 &&
240 set->connectors[0] != &ldu->base.connector) {
241 DRM_ERROR("connector doesn't match %p %p\n",
242 set->connectors[0], &ldu->base.connector);
243 return -EINVAL;
244 }
245
246 /* ldu only supports one fb active at the time */
247 if (dev_priv->ldu_priv->fb && vfb &&
6a591a96
JB
248 !(dev_priv->ldu_priv->num_active == 1 &&
249 !list_empty(&ldu->active)) &&
fb1d9738
JB
250 dev_priv->ldu_priv->fb != vfb) {
251 DRM_ERROR("Multiple framebuffers not supported\n");
252 return -EINVAL;
253 }
254
255 /* since they always map one to one these are safe */
256 connector = &ldu->base.connector;
257 encoder = &ldu->base.encoder;
258
259 /* should we turn the crtc off? */
260 if (set->num_connectors == 0 || !set->mode || !set->fb) {
261
262 connector->encoder = NULL;
263 encoder->crtc = NULL;
264 crtc->fb = NULL;
265
266 vmw_ldu_del_active(dev_priv, ldu);
267
268 vmw_ldu_commit_list(dev_priv);
269
270 return 0;
271 }
272
273
274 /* we now know we want to set a mode */
275 mode = set->mode;
276 fb = set->fb;
277
278 if (set->x + mode->hdisplay > fb->width ||
279 set->y + mode->vdisplay > fb->height) {
280 DRM_ERROR("set outside of framebuffer\n");
281 return -EINVAL;
282 }
283
284 vmw_fb_off(dev_priv);
285
286 crtc->fb = fb;
287 encoder->crtc = crtc;
288 connector->encoder = encoder;
289 crtc->x = set->x;
290 crtc->y = set->y;
291 crtc->mode = *mode;
292
293 vmw_ldu_add_active(dev_priv, ldu, vfb);
294
295 vmw_ldu_commit_list(dev_priv);
296
297 return 0;
298}
299
300static struct drm_crtc_funcs vmw_legacy_crtc_funcs = {
301 .save = vmw_ldu_crtc_save,
302 .restore = vmw_ldu_crtc_restore,
303 .cursor_set = vmw_du_crtc_cursor_set,
304 .cursor_move = vmw_du_crtc_cursor_move,
305 .gamma_set = vmw_ldu_crtc_gamma_set,
306 .destroy = vmw_ldu_crtc_destroy,
307 .set_config = vmw_ldu_crtc_set_config,
308};
309
310/*
311 * Legacy Display Unit encoder functions
312 */
313
314static void vmw_ldu_encoder_destroy(struct drm_encoder *encoder)
315{
316 vmw_ldu_destroy(vmw_encoder_to_ldu(encoder));
317}
318
319static struct drm_encoder_funcs vmw_legacy_encoder_funcs = {
320 .destroy = vmw_ldu_encoder_destroy,
321};
322
323/*
324 * Legacy Display Unit connector functions
325 */
326
327static void vmw_ldu_connector_dpms(struct drm_connector *connector, int mode)
328{
329}
330
331static void vmw_ldu_connector_save(struct drm_connector *connector)
332{
333}
334
335static void vmw_ldu_connector_restore(struct drm_connector *connector)
336{
337}
338
339static enum drm_connector_status
7b334fcb 340 vmw_ldu_connector_detect(struct drm_connector *connector,
930a9e28 341 bool force)
fb1d9738 342{
654a4ef0
TH
343 uint32_t num_displays;
344 struct drm_device *dev = connector->dev;
345 struct vmw_private *dev_priv = vmw_priv(dev);
346
347 mutex_lock(&dev_priv->hw_mutex);
348 num_displays = vmw_read(dev_priv, SVGA_REG_NUM_DISPLAYS);
349 mutex_unlock(&dev_priv->hw_mutex);
350
351 return ((vmw_connector_to_ldu(connector)->base.unit < num_displays) ?
352 connector_status_connected : connector_status_disconnected);
fb1d9738
JB
353}
354
b1f559ec 355static const struct drm_display_mode vmw_ldu_connector_builtin[] = {
fb1d9738
JB
356 /* 640x480@60Hz */
357 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25175, 640, 656,
358 752, 800, 0, 480, 489, 492, 525, 0,
359 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
360 /* 800x600@60Hz */
d8bd19d2
JB
361 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 40000, 800, 840,
362 968, 1056, 0, 600, 601, 605, 628, 0,
363 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
fb1d9738
JB
364 /* 1024x768@60Hz */
365 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 65000, 1024, 1048,
366 1184, 1344, 0, 768, 771, 777, 806, 0,
367 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
368 /* 1152x864@75Hz */
369 { DRM_MODE("1152x864", DRM_MODE_TYPE_DRIVER, 108000, 1152, 1216,
370 1344, 1600, 0, 864, 865, 868, 900, 0,
371 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
372 /* 1280x768@60Hz */
373 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 79500, 1280, 1344,
374 1472, 1664, 0, 768, 771, 778, 798, 0,
375 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
376 /* 1280x800@60Hz */
377 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 83500, 1280, 1352,
378 1480, 1680, 0, 800, 803, 809, 831, 0,
379 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
380 /* 1280x960@60Hz */
381 { DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1376,
382 1488, 1800, 0, 960, 961, 964, 1000, 0,
383 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
384 /* 1280x1024@60Hz */
385 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1328,
386 1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
387 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
388 /* 1360x768@60Hz */
389 { DRM_MODE("1360x768", DRM_MODE_TYPE_DRIVER, 85500, 1360, 1424,
390 1536, 1792, 0, 768, 771, 777, 795, 0,
391 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
392 /* 1440x1050@60Hz */
393 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 121750, 1400, 1488,
394 1632, 1864, 0, 1050, 1053, 1057, 1089, 0,
395 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
396 /* 1440x900@60Hz */
397 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 106500, 1440, 1520,
398 1672, 1904, 0, 900, 903, 909, 934, 0,
399 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
400 /* 1600x1200@60Hz */
401 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 162000, 1600, 1664,
402 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
403 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
404 /* 1680x1050@60Hz */
405 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 146250, 1680, 1784,
406 1960, 2240, 0, 1050, 1053, 1059, 1089, 0,
407 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
408 /* 1792x1344@60Hz */
409 { DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER, 204750, 1792, 1920,
410 2120, 2448, 0, 1344, 1345, 1348, 1394, 0,
411 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
412 /* 1853x1392@60Hz */
413 { DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER, 218250, 1856, 1952,
414 2176, 2528, 0, 1392, 1393, 1396, 1439, 0,
415 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
416 /* 1920x1200@60Hz */
417 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 193250, 1920, 2056,
418 2256, 2592, 0, 1200, 1203, 1209, 1245, 0,
419 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
420 /* 1920x1440@60Hz */
421 { DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER, 234000, 1920, 2048,
422 2256, 2600, 0, 1440, 1441, 1444, 1500, 0,
423 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
424 /* 2560x1600@60Hz */
425 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 348500, 2560, 2752,
426 3032, 3504, 0, 1600, 1603, 1609, 1658, 0,
427 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
428 /* Terminate */
429 { DRM_MODE("", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) },
430};
431
432static int vmw_ldu_connector_fill_modes(struct drm_connector *connector,
433 uint32_t max_width, uint32_t max_height)
434{
d8bd19d2 435 struct vmw_legacy_display_unit *ldu = vmw_connector_to_ldu(connector);
fb1d9738 436 struct drm_device *dev = connector->dev;
e133e737 437 struct vmw_private *dev_priv = vmw_priv(dev);
fb1d9738 438 struct drm_display_mode *mode = NULL;
d8bd19d2
JB
439 struct drm_display_mode prefmode = { DRM_MODE("preferred",
440 DRM_MODE_TYPE_DRIVER | DRM_MODE_TYPE_PREFERRED,
441 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
442 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC)
443 };
fb1d9738
JB
444 int i;
445
d8bd19d2
JB
446 /* Add preferred mode */
447 {
448 mode = drm_mode_duplicate(dev, &prefmode);
449 if (!mode)
450 return 0;
451 mode->hdisplay = ldu->pref_width;
452 mode->vdisplay = ldu->pref_height;
453 mode->vrefresh = drm_mode_vrefresh(mode);
e133e737
TH
454 if (vmw_kms_validate_mode_vram(dev_priv, mode->hdisplay * 2,
455 mode->vdisplay)) {
456 drm_mode_probed_add(connector, mode);
d8bd19d2 457
e133e737
TH
458 if (ldu->pref_mode) {
459 list_del_init(&ldu->pref_mode->head);
460 drm_mode_destroy(dev, ldu->pref_mode);
461 }
d8bd19d2 462
e133e737
TH
463 ldu->pref_mode = mode;
464 }
d8bd19d2
JB
465 }
466
fb1d9738 467 for (i = 0; vmw_ldu_connector_builtin[i].type != 0; i++) {
b1f559ec
CW
468 const struct drm_display_mode *bmode;
469
e133e737
TH
470 bmode = &vmw_ldu_connector_builtin[i];
471 if (bmode->hdisplay > max_width ||
472 bmode->vdisplay > max_height)
473 continue;
474
475 if (!vmw_kms_validate_mode_vram(dev_priv, bmode->hdisplay * 2,
476 bmode->vdisplay))
fb1d9738
JB
477 continue;
478
e133e737 479 mode = drm_mode_duplicate(dev, bmode);
fb1d9738
JB
480 if (!mode)
481 return 0;
482 mode->vrefresh = drm_mode_vrefresh(mode);
483
484 drm_mode_probed_add(connector, mode);
485 }
486
487 drm_mode_connector_list_update(connector);
488
489 return 1;
490}
491
492static int vmw_ldu_connector_set_property(struct drm_connector *connector,
493 struct drm_property *property,
494 uint64_t val)
495{
496 return 0;
497}
498
499static void vmw_ldu_connector_destroy(struct drm_connector *connector)
500{
501 vmw_ldu_destroy(vmw_connector_to_ldu(connector));
502}
503
504static struct drm_connector_funcs vmw_legacy_connector_funcs = {
505 .dpms = vmw_ldu_connector_dpms,
506 .save = vmw_ldu_connector_save,
507 .restore = vmw_ldu_connector_restore,
508 .detect = vmw_ldu_connector_detect,
509 .fill_modes = vmw_ldu_connector_fill_modes,
510 .set_property = vmw_ldu_connector_set_property,
511 .destroy = vmw_ldu_connector_destroy,
512};
513
514static int vmw_ldu_init(struct vmw_private *dev_priv, unsigned unit)
515{
516 struct vmw_legacy_display_unit *ldu;
517 struct drm_device *dev = dev_priv->dev;
518 struct drm_connector *connector;
519 struct drm_encoder *encoder;
520 struct drm_crtc *crtc;
521
522 ldu = kzalloc(sizeof(*ldu), GFP_KERNEL);
523 if (!ldu)
524 return -ENOMEM;
525
bbfad336 526 ldu->base.unit = unit;
fb1d9738
JB
527 crtc = &ldu->base.crtc;
528 encoder = &ldu->base.encoder;
529 connector = &ldu->base.connector;
530
1ae1ddd5
JB
531 INIT_LIST_HEAD(&ldu->active);
532
d8bd19d2
JB
533 ldu->pref_active = (unit == 0);
534 ldu->pref_width = 800;
535 ldu->pref_height = 600;
536 ldu->pref_mode = NULL;
537
fb1d9738
JB
538 drm_connector_init(dev, connector, &vmw_legacy_connector_funcs,
539 DRM_MODE_CONNECTOR_LVDS);
930a9e28 540 connector->status = vmw_ldu_connector_detect(connector, true);
fb1d9738
JB
541
542 drm_encoder_init(dev, encoder, &vmw_legacy_encoder_funcs,
543 DRM_MODE_ENCODER_LVDS);
544 drm_mode_connector_attach_encoder(connector, encoder);
545 encoder->possible_crtcs = (1 << unit);
546 encoder->possible_clones = 0;
547
fb1d9738
JB
548 drm_crtc_init(dev, crtc, &vmw_legacy_crtc_funcs);
549
550 drm_connector_attach_property(connector,
551 dev->mode_config.dirty_info_property,
552 1);
553
554 return 0;
555}
556
557int vmw_kms_init_legacy_display_system(struct vmw_private *dev_priv)
558{
7a1c2f6c
TH
559 struct drm_device *dev = dev_priv->dev;
560 int i;
561 int ret;
562
fb1d9738
JB
563 if (dev_priv->ldu_priv) {
564 DRM_INFO("ldu system already on\n");
565 return -EINVAL;
566 }
567
85b54e0c 568 dev_priv->ldu_priv = kmalloc(sizeof(*dev_priv->ldu_priv), GFP_KERNEL);
fb1d9738
JB
569
570 if (!dev_priv->ldu_priv)
571 return -ENOMEM;
572
573 INIT_LIST_HEAD(&dev_priv->ldu_priv->active);
574 dev_priv->ldu_priv->num_active = 0;
d7e1958d 575 dev_priv->ldu_priv->last_num_active = 0;
fb1d9738
JB
576 dev_priv->ldu_priv->fb = NULL;
577
578 drm_mode_create_dirty_info_property(dev_priv->dev);
579
d7e1958d 580 if (dev_priv->capabilities & SVGA_CAP_MULTIMON) {
7a1c2f6c
TH
581 for (i = 0; i < VMWGFX_LDU_NUM_DU; ++i)
582 vmw_ldu_init(dev_priv, i);
583 ret = drm_vblank_init(dev, VMWGFX_LDU_NUM_DU);
584 } else {
585 /* for old hardware without multimon only enable one display */
586 vmw_ldu_init(dev_priv, 0);
587 ret = drm_vblank_init(dev, 1);
d7e1958d 588 }
fb1d9738 589
7a1c2f6c 590 return ret;
fb1d9738
JB
591}
592
593int vmw_kms_close_legacy_display_system(struct vmw_private *dev_priv)
594{
7a1c2f6c
TH
595 struct drm_device *dev = dev_priv->dev;
596
597 drm_vblank_cleanup(dev);
fb1d9738
JB
598 if (!dev_priv->ldu_priv)
599 return -ENOSYS;
600
601 BUG_ON(!list_empty(&dev_priv->ldu_priv->active));
602
603 kfree(dev_priv->ldu_priv);
604
605 return 0;
606}
d8bd19d2
JB
607
608int vmw_kms_ldu_update_layout(struct vmw_private *dev_priv, unsigned num,
609 struct drm_vmw_rect *rects)
610{
611 struct drm_device *dev = dev_priv->dev;
612 struct vmw_legacy_display_unit *ldu;
613 struct drm_connector *con;
614 int i;
615
616 mutex_lock(&dev->mode_config.mutex);
617
618#if 0
619 DRM_INFO("%s: new layout ", __func__);
620 for (i = 0; i < (int)num; i++)
621 DRM_INFO("(%i, %i %ux%u) ", rects[i].x, rects[i].y,
622 rects[i].w, rects[i].h);
623 DRM_INFO("\n");
624#else
625 (void)i;
626#endif
627
628 list_for_each_entry(con, &dev->mode_config.connector_list, head) {
629 ldu = vmw_connector_to_ldu(con);
630 if (num > ldu->base.unit) {
631 ldu->pref_width = rects[ldu->base.unit].w;
632 ldu->pref_height = rects[ldu->base.unit].h;
633 ldu->pref_active = true;
634 } else {
635 ldu->pref_width = 800;
636 ldu->pref_height = 600;
637 ldu->pref_active = false;
638 }
930a9e28 639 con->status = vmw_ldu_connector_detect(con, true);
d8bd19d2
JB
640 }
641
642 mutex_unlock(&dev->mode_config.mutex);
643
644 return 0;
645}
This page took 0.148476 seconds and 5 git commands to generate.