blob: b35d7b0fd48decadc80e96614f80566126b516b1 [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
30#define vmw_crtc_to_ldu(x) \
31 container_of(x, struct vmw_legacy_display_unit, base.crtc)
32#define vmw_encoder_to_ldu(x) \
33 container_of(x, struct vmw_legacy_display_unit, base.encoder)
34#define vmw_connector_to_ldu(x) \
35 container_of(x, struct vmw_legacy_display_unit, base.connector)
36
37struct vmw_legacy_display {
38 struct list_head active;
39
40 unsigned num_active;
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +020041 unsigned last_num_active;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000042
43 struct vmw_framebuffer *fb;
44};
45
46/**
47 * Display unit using the legacy register interface.
48 */
49struct vmw_legacy_display_unit {
50 struct vmw_display_unit base;
51
52 struct list_head active;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000053};
54
55static void vmw_ldu_destroy(struct vmw_legacy_display_unit *ldu)
56{
57 list_del_init(&ldu->active);
58 vmw_display_unit_cleanup(&ldu->base);
59 kfree(ldu);
60}
61
62
63/*
64 * Legacy Display Unit CRTC functions
65 */
66
67static void vmw_ldu_crtc_save(struct drm_crtc *crtc)
68{
69}
70
71static void vmw_ldu_crtc_restore(struct drm_crtc *crtc)
72{
73}
74
75static void vmw_ldu_crtc_gamma_set(struct drm_crtc *crtc,
76 u16 *r, u16 *g, u16 *b,
77 uint32_t size)
78{
79}
80
81static void vmw_ldu_crtc_destroy(struct drm_crtc *crtc)
82{
83 vmw_ldu_destroy(vmw_crtc_to_ldu(crtc));
84}
85
86static int vmw_ldu_commit_list(struct vmw_private *dev_priv)
87{
88 struct vmw_legacy_display *lds = dev_priv->ldu_priv;
89 struct vmw_legacy_display_unit *entry;
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +020090 struct drm_framebuffer *fb = NULL;
91 struct drm_crtc *crtc = NULL;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000092 int i = 0;
93
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +020094 /* If there is no display topology the host just assumes
95 * that the guest will set the same layout as the host.
96 */
97 if (!(dev_priv->capabilities & SVGA_CAP_DISPLAY_TOPOLOGY)) {
98 int w = 0, h = 0;
99 list_for_each_entry(entry, &lds->active, active) {
100 crtc = &entry->base.crtc;
101 w = max(w, crtc->x + crtc->mode.hdisplay);
102 h = max(h, crtc->y + crtc->mode.vdisplay);
103 i++;
104 }
105
106 if (crtc == NULL)
107 return 0;
108 fb = entry->base.crtc.fb;
109
110 vmw_write(dev_priv, SVGA_REG_ENABLE, 0);
111 vmw_kms_write_svga(dev_priv, w, h, fb->pitch,
112 fb->bits_per_pixel, fb->depth);
113 vmw_write(dev_priv, SVGA_REG_ENABLE, 1);
114
115 return 0;
116 }
117
118 vmw_write(dev_priv, SVGA_REG_ENABLE, 0);
119
120 for (i = 0; i < lds->last_num_active; i++) {
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000121 vmw_write(dev_priv, SVGA_REG_DISPLAY_ID, i);
122 vmw_write(dev_priv, SVGA_REG_DISPLAY_IS_PRIMARY, !i);
123 vmw_write(dev_priv, SVGA_REG_DISPLAY_POSITION_X, 0);
124 vmw_write(dev_priv, SVGA_REG_DISPLAY_POSITION_Y, 0);
125 vmw_write(dev_priv, SVGA_REG_DISPLAY_WIDTH, 0);
126 vmw_write(dev_priv, SVGA_REG_DISPLAY_HEIGHT, 0);
127 vmw_write(dev_priv, SVGA_REG_DISPLAY_ID, SVGA_ID_INVALID);
128 }
129
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +0200130 if (!list_empty(&lds->active)) {
131 entry = list_entry(lds->active.next, typeof(*entry), active);
132 fb = entry->base.crtc.fb;
133
134 vmw_kms_write_svga(dev_priv, fb->width, fb->height, fb->pitch,
135 fb->bits_per_pixel, fb->depth);
136 }
137
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000138 i = 0;
139 list_for_each_entry(entry, &lds->active, active) {
140 crtc = &entry->base.crtc;
141
142 vmw_write(dev_priv, SVGA_REG_DISPLAY_ID, i);
143 vmw_write(dev_priv, SVGA_REG_DISPLAY_IS_PRIMARY, !i);
144 vmw_write(dev_priv, SVGA_REG_DISPLAY_POSITION_X, crtc->x);
145 vmw_write(dev_priv, SVGA_REG_DISPLAY_POSITION_Y, crtc->y);
146 vmw_write(dev_priv, SVGA_REG_DISPLAY_WIDTH, crtc->mode.hdisplay);
147 vmw_write(dev_priv, SVGA_REG_DISPLAY_HEIGHT, crtc->mode.vdisplay);
148 vmw_write(dev_priv, SVGA_REG_DISPLAY_ID, SVGA_ID_INVALID);
149
150 i++;
151 }
152
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +0200153 /* Make sure we always show something. */
154 vmw_write(dev_priv, SVGA_REG_NUM_GUEST_DISPLAYS, i ? i : 1);
155 vmw_write(dev_priv, SVGA_REG_ENABLE, 1);
156
157 BUG_ON(i != lds->num_active);
158
159 lds->last_num_active = lds->num_active;
160
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000161 return 0;
162}
163
164static int vmw_ldu_del_active(struct vmw_private *vmw_priv,
165 struct vmw_legacy_display_unit *ldu)
166{
167 struct vmw_legacy_display *ld = vmw_priv->ldu_priv;
168 if (list_empty(&ldu->active))
169 return 0;
170
Jakob Bornecrantz6a591a92010-05-28 11:21:55 +0200171 /* Must init otherwise list_empty(&ldu->active) will not work. */
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000172 list_del_init(&ldu->active);
173 if (--(ld->num_active) == 0) {
174 BUG_ON(!ld->fb);
175 if (ld->fb->unpin)
176 ld->fb->unpin(ld->fb);
177 ld->fb = NULL;
178 }
179
180 return 0;
181}
182
183static int vmw_ldu_add_active(struct vmw_private *vmw_priv,
184 struct vmw_legacy_display_unit *ldu,
185 struct vmw_framebuffer *vfb)
186{
187 struct vmw_legacy_display *ld = vmw_priv->ldu_priv;
188 struct vmw_legacy_display_unit *entry;
189 struct list_head *at;
190
Jakob Bornecrantz04e9e942010-05-28 11:21:56 +0200191 BUG_ON(!ld->num_active && ld->fb);
192 if (vfb != ld->fb) {
193 if (ld->fb && ld->fb->unpin)
194 ld->fb->unpin(ld->fb);
195 if (vfb->pin)
196 vfb->pin(vfb);
197 ld->fb = vfb;
198 }
199
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000200 if (!list_empty(&ldu->active))
201 return 0;
202
203 at = &ld->active;
204 list_for_each_entry(entry, &ld->active, active) {
Jakob Bornecrantzbbfad332010-05-28 11:22:01 +0200205 if (entry->base.unit > ldu->base.unit)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000206 break;
207
208 at = &entry->active;
209 }
210
211 list_add(&ldu->active, at);
Jakob Bornecrantz04e9e942010-05-28 11:21:56 +0200212
213 ld->num_active++;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000214
215 return 0;
216}
217
218static int vmw_ldu_crtc_set_config(struct drm_mode_set *set)
219{
220 struct vmw_private *dev_priv;
221 struct vmw_legacy_display_unit *ldu;
222 struct drm_connector *connector;
223 struct drm_display_mode *mode;
224 struct drm_encoder *encoder;
225 struct vmw_framebuffer *vfb;
226 struct drm_framebuffer *fb;
227 struct drm_crtc *crtc;
228
229 if (!set)
230 return -EINVAL;
231
232 if (!set->crtc)
233 return -EINVAL;
234
235 /* get the ldu */
236 crtc = set->crtc;
237 ldu = vmw_crtc_to_ldu(crtc);
238 vfb = set->fb ? vmw_framebuffer_to_vfb(set->fb) : NULL;
239 dev_priv = vmw_priv(crtc->dev);
240
241 if (set->num_connectors > 1) {
242 DRM_ERROR("to many connectors\n");
243 return -EINVAL;
244 }
245
246 if (set->num_connectors == 1 &&
247 set->connectors[0] != &ldu->base.connector) {
248 DRM_ERROR("connector doesn't match %p %p\n",
249 set->connectors[0], &ldu->base.connector);
250 return -EINVAL;
251 }
252
253 /* ldu only supports one fb active at the time */
254 if (dev_priv->ldu_priv->fb && vfb &&
Jakob Bornecrantz6a591a92010-05-28 11:21:55 +0200255 !(dev_priv->ldu_priv->num_active == 1 &&
256 !list_empty(&ldu->active)) &&
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000257 dev_priv->ldu_priv->fb != vfb) {
258 DRM_ERROR("Multiple framebuffers not supported\n");
259 return -EINVAL;
260 }
261
262 /* since they always map one to one these are safe */
263 connector = &ldu->base.connector;
264 encoder = &ldu->base.encoder;
265
266 /* should we turn the crtc off? */
267 if (set->num_connectors == 0 || !set->mode || !set->fb) {
268
269 connector->encoder = NULL;
270 encoder->crtc = NULL;
271 crtc->fb = NULL;
272
273 vmw_ldu_del_active(dev_priv, ldu);
274
275 vmw_ldu_commit_list(dev_priv);
276
277 return 0;
278 }
279
280
281 /* we now know we want to set a mode */
282 mode = set->mode;
283 fb = set->fb;
284
285 if (set->x + mode->hdisplay > fb->width ||
286 set->y + mode->vdisplay > fb->height) {
287 DRM_ERROR("set outside of framebuffer\n");
288 return -EINVAL;
289 }
290
291 vmw_fb_off(dev_priv);
292
293 crtc->fb = fb;
294 encoder->crtc = crtc;
295 connector->encoder = encoder;
296 crtc->x = set->x;
297 crtc->y = set->y;
298 crtc->mode = *mode;
299
300 vmw_ldu_add_active(dev_priv, ldu, vfb);
301
302 vmw_ldu_commit_list(dev_priv);
303
304 return 0;
305}
306
307static struct drm_crtc_funcs vmw_legacy_crtc_funcs = {
308 .save = vmw_ldu_crtc_save,
309 .restore = vmw_ldu_crtc_restore,
310 .cursor_set = vmw_du_crtc_cursor_set,
311 .cursor_move = vmw_du_crtc_cursor_move,
312 .gamma_set = vmw_ldu_crtc_gamma_set,
313 .destroy = vmw_ldu_crtc_destroy,
314 .set_config = vmw_ldu_crtc_set_config,
315};
316
317/*
318 * Legacy Display Unit encoder functions
319 */
320
321static void vmw_ldu_encoder_destroy(struct drm_encoder *encoder)
322{
323 vmw_ldu_destroy(vmw_encoder_to_ldu(encoder));
324}
325
326static struct drm_encoder_funcs vmw_legacy_encoder_funcs = {
327 .destroy = vmw_ldu_encoder_destroy,
328};
329
330/*
331 * Legacy Display Unit connector functions
332 */
333
334static void vmw_ldu_connector_dpms(struct drm_connector *connector, int mode)
335{
336}
337
338static void vmw_ldu_connector_save(struct drm_connector *connector)
339{
340}
341
342static void vmw_ldu_connector_restore(struct drm_connector *connector)
343{
344}
345
346static enum drm_connector_status
347 vmw_ldu_connector_detect(struct drm_connector *connector)
348{
349 /* XXX vmwctrl should control connection status */
350 if (vmw_connector_to_ldu(connector)->base.unit == 0)
351 return connector_status_connected;
352 return connector_status_disconnected;
353}
354
355static struct drm_display_mode vmw_ldu_connector_builtin[] = {
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 */
361 { DRM_MODE("800x600",
362 DRM_MODE_TYPE_DRIVER | DRM_MODE_TYPE_PREFERRED,
363 40000, 800, 840, 968, 1056, 0, 600, 601, 605, 628,
364 0, DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
365 /* 1024x768@60Hz */
366 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 65000, 1024, 1048,
367 1184, 1344, 0, 768, 771, 777, 806, 0,
368 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
369 /* 1152x864@75Hz */
370 { DRM_MODE("1152x864", DRM_MODE_TYPE_DRIVER, 108000, 1152, 1216,
371 1344, 1600, 0, 864, 865, 868, 900, 0,
372 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
373 /* 1280x768@60Hz */
374 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 79500, 1280, 1344,
375 1472, 1664, 0, 768, 771, 778, 798, 0,
376 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
377 /* 1280x800@60Hz */
378 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 83500, 1280, 1352,
379 1480, 1680, 0, 800, 803, 809, 831, 0,
380 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
381 /* 1280x960@60Hz */
382 { DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1376,
383 1488, 1800, 0, 960, 961, 964, 1000, 0,
384 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
385 /* 1280x1024@60Hz */
386 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1328,
387 1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
388 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
389 /* 1360x768@60Hz */
390 { DRM_MODE("1360x768", DRM_MODE_TYPE_DRIVER, 85500, 1360, 1424,
391 1536, 1792, 0, 768, 771, 777, 795, 0,
392 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
393 /* 1440x1050@60Hz */
394 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 121750, 1400, 1488,
395 1632, 1864, 0, 1050, 1053, 1057, 1089, 0,
396 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
397 /* 1440x900@60Hz */
398 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 106500, 1440, 1520,
399 1672, 1904, 0, 900, 903, 909, 934, 0,
400 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
401 /* 1600x1200@60Hz */
402 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 162000, 1600, 1664,
403 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
404 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
405 /* 1680x1050@60Hz */
406 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 146250, 1680, 1784,
407 1960, 2240, 0, 1050, 1053, 1059, 1089, 0,
408 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
409 /* 1792x1344@60Hz */
410 { DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER, 204750, 1792, 1920,
411 2120, 2448, 0, 1344, 1345, 1348, 1394, 0,
412 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
413 /* 1853x1392@60Hz */
414 { DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER, 218250, 1856, 1952,
415 2176, 2528, 0, 1392, 1393, 1396, 1439, 0,
416 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
417 /* 1920x1200@60Hz */
418 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 193250, 1920, 2056,
419 2256, 2592, 0, 1200, 1203, 1209, 1245, 0,
420 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
421 /* 1920x1440@60Hz */
422 { DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER, 234000, 1920, 2048,
423 2256, 2600, 0, 1440, 1441, 1444, 1500, 0,
424 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
425 /* 2560x1600@60Hz */
426 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 348500, 2560, 2752,
427 3032, 3504, 0, 1600, 1603, 1609, 1658, 0,
428 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
429 /* Terminate */
430 { DRM_MODE("", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) },
431};
432
433static int vmw_ldu_connector_fill_modes(struct drm_connector *connector,
434 uint32_t max_width, uint32_t max_height)
435{
436 struct drm_device *dev = connector->dev;
437 struct drm_display_mode *mode = NULL;
438 int i;
439
440 for (i = 0; vmw_ldu_connector_builtin[i].type != 0; i++) {
441 if (vmw_ldu_connector_builtin[i].hdisplay > max_width ||
442 vmw_ldu_connector_builtin[i].vdisplay > max_height)
443 continue;
444
445 mode = drm_mode_duplicate(dev, &vmw_ldu_connector_builtin[i]);
446 if (!mode)
447 return 0;
448 mode->vrefresh = drm_mode_vrefresh(mode);
449
450 drm_mode_probed_add(connector, mode);
451 }
452
453 drm_mode_connector_list_update(connector);
454
455 return 1;
456}
457
458static int vmw_ldu_connector_set_property(struct drm_connector *connector,
459 struct drm_property *property,
460 uint64_t val)
461{
462 return 0;
463}
464
465static void vmw_ldu_connector_destroy(struct drm_connector *connector)
466{
467 vmw_ldu_destroy(vmw_connector_to_ldu(connector));
468}
469
470static struct drm_connector_funcs vmw_legacy_connector_funcs = {
471 .dpms = vmw_ldu_connector_dpms,
472 .save = vmw_ldu_connector_save,
473 .restore = vmw_ldu_connector_restore,
474 .detect = vmw_ldu_connector_detect,
475 .fill_modes = vmw_ldu_connector_fill_modes,
476 .set_property = vmw_ldu_connector_set_property,
477 .destroy = vmw_ldu_connector_destroy,
478};
479
480static int vmw_ldu_init(struct vmw_private *dev_priv, unsigned unit)
481{
482 struct vmw_legacy_display_unit *ldu;
483 struct drm_device *dev = dev_priv->dev;
484 struct drm_connector *connector;
485 struct drm_encoder *encoder;
486 struct drm_crtc *crtc;
487
488 ldu = kzalloc(sizeof(*ldu), GFP_KERNEL);
489 if (!ldu)
490 return -ENOMEM;
491
Jakob Bornecrantzbbfad332010-05-28 11:22:01 +0200492 ldu->base.unit = unit;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000493 crtc = &ldu->base.crtc;
494 encoder = &ldu->base.encoder;
495 connector = &ldu->base.connector;
496
Jakob Bornecrantz1ae1ddd2010-05-28 11:21:58 +0200497 INIT_LIST_HEAD(&ldu->active);
498
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000499 drm_connector_init(dev, connector, &vmw_legacy_connector_funcs,
500 DRM_MODE_CONNECTOR_LVDS);
Jakob Bornecrantz1ae1ddd2010-05-28 11:21:58 +0200501 connector->status = vmw_ldu_connector_detect(connector);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000502
503 drm_encoder_init(dev, encoder, &vmw_legacy_encoder_funcs,
504 DRM_MODE_ENCODER_LVDS);
505 drm_mode_connector_attach_encoder(connector, encoder);
506 encoder->possible_crtcs = (1 << unit);
507 encoder->possible_clones = 0;
508
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000509 drm_crtc_init(dev, crtc, &vmw_legacy_crtc_funcs);
510
511 drm_connector_attach_property(connector,
512 dev->mode_config.dirty_info_property,
513 1);
514
515 return 0;
516}
517
518int vmw_kms_init_legacy_display_system(struct vmw_private *dev_priv)
519{
520 if (dev_priv->ldu_priv) {
521 DRM_INFO("ldu system already on\n");
522 return -EINVAL;
523 }
524
525 dev_priv->ldu_priv = kmalloc(GFP_KERNEL, sizeof(*dev_priv->ldu_priv));
526
527 if (!dev_priv->ldu_priv)
528 return -ENOMEM;
529
530 INIT_LIST_HEAD(&dev_priv->ldu_priv->active);
531 dev_priv->ldu_priv->num_active = 0;
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +0200532 dev_priv->ldu_priv->last_num_active = 0;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000533 dev_priv->ldu_priv->fb = NULL;
534
535 drm_mode_create_dirty_info_property(dev_priv->dev);
536
537 vmw_ldu_init(dev_priv, 0);
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +0200538 /* for old hardware without multimon only enable one display */
539 if (dev_priv->capabilities & SVGA_CAP_MULTIMON) {
540 vmw_ldu_init(dev_priv, 1);
541 vmw_ldu_init(dev_priv, 2);
542 vmw_ldu_init(dev_priv, 3);
543 vmw_ldu_init(dev_priv, 4);
544 vmw_ldu_init(dev_priv, 5);
545 vmw_ldu_init(dev_priv, 6);
546 vmw_ldu_init(dev_priv, 7);
547 }
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000548
549 return 0;
550}
551
552int vmw_kms_close_legacy_display_system(struct vmw_private *dev_priv)
553{
554 if (!dev_priv->ldu_priv)
555 return -ENOSYS;
556
557 BUG_ON(!list_empty(&dev_priv->ldu_priv->active));
558
559 kfree(dev_priv->ldu_priv);
560
561 return 0;
562}