]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/gpu/drm/vmwgfx/vmwgfx_ldu.c
UBUNTU: Ubuntu-4.15.0-96.97
[mirror_ubuntu-bionic-kernel.git] / drivers / gpu / drm / vmwgfx / vmwgfx_ldu.c
CommitLineData
fb1d9738
JB
1/**************************************************************************
2 *
54fbde8a 3 * Copyright © 2009-2015 VMware, Inc., Palo Alto, CA., USA
fb1d9738
JB
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"
3cb9ae4f 29#include <drm/drm_plane_helper.h>
d7721ca7
SY
30#include <drm/drm_atomic.h>
31#include <drm/drm_atomic_helper.h>
fb1d9738 32
7a1c2f6c 33
fb1d9738
JB
34#define vmw_crtc_to_ldu(x) \
35 container_of(x, struct vmw_legacy_display_unit, base.crtc)
36#define vmw_encoder_to_ldu(x) \
37 container_of(x, struct vmw_legacy_display_unit, base.encoder)
38#define vmw_connector_to_ldu(x) \
39 container_of(x, struct vmw_legacy_display_unit, base.connector)
40
41struct vmw_legacy_display {
42 struct list_head active;
43
44 unsigned num_active;
d7e1958d 45 unsigned last_num_active;
fb1d9738
JB
46
47 struct vmw_framebuffer *fb;
48};
49
50/**
51 * Display unit using the legacy register interface.
52 */
53struct vmw_legacy_display_unit {
54 struct vmw_display_unit base;
55
56 struct list_head active;
fb1d9738
JB
57};
58
59static void vmw_ldu_destroy(struct vmw_legacy_display_unit *ldu)
60{
61 list_del_init(&ldu->active);
c8261a96 62 vmw_du_cleanup(&ldu->base);
fb1d9738
JB
63 kfree(ldu);
64}
65
66
67/*
68 * Legacy Display Unit CRTC functions
69 */
70
fb1d9738
JB
71static void vmw_ldu_crtc_destroy(struct drm_crtc *crtc)
72{
73 vmw_ldu_destroy(vmw_crtc_to_ldu(crtc));
74}
75
76static int vmw_ldu_commit_list(struct vmw_private *dev_priv)
77{
78 struct vmw_legacy_display *lds = dev_priv->ldu_priv;
79 struct vmw_legacy_display_unit *entry;
d7e1958d
JB
80 struct drm_framebuffer *fb = NULL;
81 struct drm_crtc *crtc = NULL;
36cc79bc 82 int i = 0;
fb1d9738 83
d7e1958d
JB
84 /* If there is no display topology the host just assumes
85 * that the guest will set the same layout as the host.
86 */
87 if (!(dev_priv->capabilities & SVGA_CAP_DISPLAY_TOPOLOGY)) {
88 int w = 0, h = 0;
89 list_for_each_entry(entry, &lds->active, active) {
90 crtc = &entry->base.crtc;
91 w = max(w, crtc->x + crtc->mode.hdisplay);
92 h = max(h, crtc->y + crtc->mode.vdisplay);
93 i++;
94 }
95
96 if (crtc == NULL)
97 return 0;
b0119cb9 98 fb = entry->base.crtc.primary->state->fb;
d7e1958d 99
01f2c773 100 return vmw_kms_write_svga(dev_priv, w, h, fb->pitches[0],
272725c7 101 fb->format->cpp[0] * 8,
b00c600e 102 fb->format->depth);
d7e1958d
JB
103 }
104
d7e1958d
JB
105 if (!list_empty(&lds->active)) {
106 entry = list_entry(lds->active.next, typeof(*entry), active);
b0119cb9 107 fb = entry->base.crtc.primary->state->fb;
d7e1958d 108
01f2c773 109 vmw_kms_write_svga(dev_priv, fb->width, fb->height, fb->pitches[0],
272725c7 110 fb->format->cpp[0] * 8, fb->format->depth);
d7e1958d
JB
111 }
112
259600d5
JB
113 /* Make sure we always show something. */
114 vmw_write(dev_priv, SVGA_REG_NUM_GUEST_DISPLAYS,
115 lds->num_active ? lds->num_active : 1);
116
fb1d9738
JB
117 i = 0;
118 list_for_each_entry(entry, &lds->active, active) {
119 crtc = &entry->base.crtc;
120
121 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, crtc->x);
124 vmw_write(dev_priv, SVGA_REG_DISPLAY_POSITION_Y, crtc->y);
125 vmw_write(dev_priv, SVGA_REG_DISPLAY_WIDTH, crtc->mode.hdisplay);
126 vmw_write(dev_priv, SVGA_REG_DISPLAY_HEIGHT, crtc->mode.vdisplay);
127 vmw_write(dev_priv, SVGA_REG_DISPLAY_ID, SVGA_ID_INVALID);
128
129 i++;
130 }
131
d7e1958d
JB
132 BUG_ON(i != lds->num_active);
133
134 lds->last_num_active = lds->num_active;
135
fb1d9738
JB
136 return 0;
137}
138
139static int vmw_ldu_del_active(struct vmw_private *vmw_priv,
140 struct vmw_legacy_display_unit *ldu)
141{
142 struct vmw_legacy_display *ld = vmw_priv->ldu_priv;
143 if (list_empty(&ldu->active))
144 return 0;
145
6a591a96 146 /* Must init otherwise list_empty(&ldu->active) will not work. */
fb1d9738
JB
147 list_del_init(&ldu->active);
148 if (--(ld->num_active) == 0) {
149 BUG_ON(!ld->fb);
150 if (ld->fb->unpin)
151 ld->fb->unpin(ld->fb);
152 ld->fb = NULL;
153 }
154
155 return 0;
156}
157
158static int vmw_ldu_add_active(struct vmw_private *vmw_priv,
159 struct vmw_legacy_display_unit *ldu,
160 struct vmw_framebuffer *vfb)
161{
162 struct vmw_legacy_display *ld = vmw_priv->ldu_priv;
163 struct vmw_legacy_display_unit *entry;
164 struct list_head *at;
165
04e9e94d
JB
166 BUG_ON(!ld->num_active && ld->fb);
167 if (vfb != ld->fb) {
168 if (ld->fb && ld->fb->unpin)
169 ld->fb->unpin(ld->fb);
06ec4190 170 vmw_svga_enable(vmw_priv);
04e9e94d
JB
171 if (vfb->pin)
172 vfb->pin(vfb);
173 ld->fb = vfb;
174 }
175
fb1d9738
JB
176 if (!list_empty(&ldu->active))
177 return 0;
178
179 at = &ld->active;
180 list_for_each_entry(entry, &ld->active, active) {
bbfad336 181 if (entry->base.unit > ldu->base.unit)
fb1d9738
JB
182 break;
183
184 at = &entry->active;
185 }
186
187 list_add(&ldu->active, at);
04e9e94d
JB
188
189 ld->num_active++;
fb1d9738
JB
190
191 return 0;
192}
193
06ec4190
SY
194/**
195 * vmw_ldu_crtc_mode_set_nofb - Enable svga
196 *
197 * @crtc: CRTC associated with the new screen
198 *
199 * For LDU, just enable the svga
200 */
201static void vmw_ldu_crtc_mode_set_nofb(struct drm_crtc *crtc)
202{
203}
204
06ec4190 205/**
0b20a0f8 206 * vmw_ldu_crtc_atomic_enable - Noop
06ec4190
SY
207 *
208 * @crtc: CRTC associated with the new screen
209 *
210 * This is called after a mode set has been completed. Here's
211 * usually a good place to call vmw_ldu_add_active/vmw_ldu_del_active
212 * but since for LDU the display plane is closely tied to the
213 * CRTC, it makes more sense to do those at plane update time.
214 */
0b20a0f8
LP
215static void vmw_ldu_crtc_atomic_enable(struct drm_crtc *crtc,
216 struct drm_crtc_state *old_state)
06ec4190 217{
06ec4190
SY
218}
219
220/**
64581714 221 * vmw_ldu_crtc_atomic_disable - Turns off CRTC
06ec4190
SY
222 *
223 * @crtc: CRTC to be turned off
224 */
64581714
LP
225static void vmw_ldu_crtc_atomic_disable(struct drm_crtc *crtc,
226 struct drm_crtc_state *old_state)
06ec4190
SY
227{
228}
229
d7955fcf 230static const struct drm_crtc_funcs vmw_legacy_crtc_funcs = {
626ab771 231 .gamma_set = vmw_du_crtc_gamma_set,
fb1d9738 232 .destroy = vmw_ldu_crtc_destroy,
9c2542a4
SY
233 .reset = vmw_du_crtc_reset,
234 .atomic_duplicate_state = vmw_du_crtc_duplicate_state,
235 .atomic_destroy_state = vmw_du_crtc_destroy_state,
b0119cb9 236 .set_config = vmw_kms_set_config,
fb1d9738
JB
237};
238
626ab771 239
fb1d9738
JB
240/*
241 * Legacy Display Unit encoder functions
242 */
243
244static void vmw_ldu_encoder_destroy(struct drm_encoder *encoder)
245{
246 vmw_ldu_destroy(vmw_encoder_to_ldu(encoder));
247}
248
d7955fcf 249static const struct drm_encoder_funcs vmw_legacy_encoder_funcs = {
fb1d9738
JB
250 .destroy = vmw_ldu_encoder_destroy,
251};
252
253/*
254 * Legacy Display Unit connector functions
255 */
256
fb1d9738
JB
257static void vmw_ldu_connector_destroy(struct drm_connector *connector)
258{
259 vmw_ldu_destroy(vmw_connector_to_ldu(connector));
260}
261
d7955fcf 262static const struct drm_connector_funcs vmw_legacy_connector_funcs = {
626ab771 263 .dpms = vmw_du_connector_dpms,
626ab771
JB
264 .detect = vmw_du_connector_detect,
265 .fill_modes = vmw_du_connector_fill_modes,
266 .set_property = vmw_du_connector_set_property,
fb1d9738 267 .destroy = vmw_ldu_connector_destroy,
d7721ca7 268 .reset = vmw_du_connector_reset,
8a510a5c
RC
269 .atomic_duplicate_state = vmw_du_connector_duplicate_state,
270 .atomic_destroy_state = vmw_du_connector_destroy_state,
d7721ca7
SY
271 .atomic_set_property = vmw_du_connector_atomic_set_property,
272 .atomic_get_property = vmw_du_connector_atomic_get_property,
fb1d9738
JB
273};
274
d947d1b7
SY
275static const struct
276drm_connector_helper_funcs vmw_ldu_connector_helper_funcs = {
277 .best_encoder = drm_atomic_helper_best_encoder,
278};
279
36cc79bc
SY
280/*
281 * Legacy Display Plane Functions
282 */
283
060e2ad5 284/**
e9cebe83 285 * vmw_ldu_primary_plane_cleanup_fb - Noop
060e2ad5
SY
286 *
287 * @plane: display plane
288 * @old_state: Contains the FB to clean up
289 *
290 * Unpins the display surface
291 *
292 * Returns 0 on success
293 */
294static void
295vmw_ldu_primary_plane_cleanup_fb(struct drm_plane *plane,
296 struct drm_plane_state *old_state)
297{
298}
299
300
301/**
e9cebe83 302 * vmw_ldu_primary_plane_prepare_fb - Noop
060e2ad5
SY
303 *
304 * @plane: display plane
305 * @new_state: info on the new plane state, including the FB
306 *
307 * Returns 0 on success
308 */
309static int
310vmw_ldu_primary_plane_prepare_fb(struct drm_plane *plane,
311 struct drm_plane_state *new_state)
312{
313 return 0;
314}
315
316
317static void
318vmw_ldu_primary_plane_atomic_update(struct drm_plane *plane,
319 struct drm_plane_state *old_state)
320{
e9cebe83
SY
321 struct vmw_private *dev_priv;
322 struct vmw_legacy_display_unit *ldu;
323 struct vmw_framebuffer *vfb;
324 struct drm_framebuffer *fb;
325 struct drm_crtc *crtc = plane->state->crtc ?: old_state->crtc;
326
327
328 ldu = vmw_crtc_to_ldu(crtc);
329 dev_priv = vmw_priv(plane->dev);
330 fb = plane->state->fb;
331
332 vfb = (fb) ? vmw_framebuffer_to_vfb(fb) : NULL;
333
334 if (vfb)
335 vmw_ldu_add_active(dev_priv, ldu, vfb);
336 else
337 vmw_ldu_del_active(dev_priv, ldu);
338
339 vmw_ldu_commit_list(dev_priv);
060e2ad5
SY
340}
341
342
36cc79bc 343static const struct drm_plane_funcs vmw_ldu_plane_funcs = {
b0119cb9
SY
344 .update_plane = drm_atomic_helper_update_plane,
345 .disable_plane = drm_atomic_helper_disable_plane,
36cc79bc 346 .destroy = vmw_du_primary_plane_destroy,
cc5ec459
SY
347 .reset = vmw_du_plane_reset,
348 .atomic_duplicate_state = vmw_du_plane_duplicate_state,
349 .atomic_destroy_state = vmw_du_plane_destroy_state,
36cc79bc
SY
350};
351
352static const struct drm_plane_funcs vmw_ldu_cursor_funcs = {
b0119cb9
SY
353 .update_plane = drm_atomic_helper_update_plane,
354 .disable_plane = drm_atomic_helper_disable_plane,
36cc79bc 355 .destroy = vmw_du_cursor_plane_destroy,
cc5ec459
SY
356 .reset = vmw_du_plane_reset,
357 .atomic_duplicate_state = vmw_du_plane_duplicate_state,
358 .atomic_destroy_state = vmw_du_plane_destroy_state,
36cc79bc
SY
359};
360
06ec4190
SY
361/*
362 * Atomic Helpers
363 */
060e2ad5
SY
364static const struct
365drm_plane_helper_funcs vmw_ldu_cursor_plane_helper_funcs = {
366 .atomic_check = vmw_du_cursor_plane_atomic_check,
367 .atomic_update = vmw_du_cursor_plane_atomic_update,
368 .prepare_fb = vmw_du_cursor_plane_prepare_fb,
369 .cleanup_fb = vmw_du_plane_cleanup_fb,
370};
371
372static const struct
373drm_plane_helper_funcs vmw_ldu_primary_plane_helper_funcs = {
374 .atomic_check = vmw_du_primary_plane_atomic_check,
375 .atomic_update = vmw_ldu_primary_plane_atomic_update,
376 .prepare_fb = vmw_ldu_primary_plane_prepare_fb,
377 .cleanup_fb = vmw_ldu_primary_plane_cleanup_fb,
378};
379
06ec4190 380static const struct drm_crtc_helper_funcs vmw_ldu_crtc_helper_funcs = {
06ec4190
SY
381 .mode_set_nofb = vmw_ldu_crtc_mode_set_nofb,
382 .atomic_check = vmw_du_crtc_atomic_check,
383 .atomic_begin = vmw_du_crtc_atomic_begin,
384 .atomic_flush = vmw_du_crtc_atomic_flush,
0b20a0f8 385 .atomic_enable = vmw_ldu_crtc_atomic_enable,
64581714 386 .atomic_disable = vmw_ldu_crtc_atomic_disable,
06ec4190
SY
387};
388
36cc79bc 389
fb1d9738
JB
390static int vmw_ldu_init(struct vmw_private *dev_priv, unsigned unit)
391{
392 struct vmw_legacy_display_unit *ldu;
393 struct drm_device *dev = dev_priv->dev;
394 struct drm_connector *connector;
395 struct drm_encoder *encoder;
cc5ec459 396 struct drm_plane *primary, *cursor;
fb1d9738 397 struct drm_crtc *crtc;
36cc79bc 398 int ret;
fb1d9738
JB
399
400 ldu = kzalloc(sizeof(*ldu), GFP_KERNEL);
401 if (!ldu)
402 return -ENOMEM;
403
bbfad336 404 ldu->base.unit = unit;
fb1d9738
JB
405 crtc = &ldu->base.crtc;
406 encoder = &ldu->base.encoder;
407 connector = &ldu->base.connector;
cc5ec459
SY
408 primary = &ldu->base.primary;
409 cursor = &ldu->base.cursor;
fb1d9738 410
1ae1ddd5
JB
411 INIT_LIST_HEAD(&ldu->active);
412
626ab771 413 ldu->base.pref_active = (unit == 0);
eb4f923b
JB
414 ldu->base.pref_width = dev_priv->initial_width;
415 ldu->base.pref_height = dev_priv->initial_height;
626ab771 416 ldu->base.pref_mode = NULL;
9c2542a4
SY
417
418 /*
419 * Remove this after enabling atomic because property values can
420 * only exist in a state object
421 */
6987427a 422 ldu->base.is_implicit = true;
d8bd19d2 423
36cc79bc 424 /* Initialize primary plane */
cc5ec459
SY
425 vmw_du_plane_reset(primary);
426
36cc79bc
SY
427 ret = drm_universal_plane_init(dev, &ldu->base.primary,
428 0, &vmw_ldu_plane_funcs,
429 vmw_primary_plane_formats,
430 ARRAY_SIZE(vmw_primary_plane_formats),
e6fc3b68 431 NULL, DRM_PLANE_TYPE_PRIMARY, NULL);
36cc79bc
SY
432 if (ret) {
433 DRM_ERROR("Failed to initialize primary plane");
434 goto err_free;
435 }
436
060e2ad5
SY
437 drm_plane_helper_add(primary, &vmw_ldu_primary_plane_helper_funcs);
438
36cc79bc 439 /* Initialize cursor plane */
cc5ec459
SY
440 vmw_du_plane_reset(cursor);
441
36cc79bc
SY
442 ret = drm_universal_plane_init(dev, &ldu->base.cursor,
443 0, &vmw_ldu_cursor_funcs,
444 vmw_cursor_plane_formats,
445 ARRAY_SIZE(vmw_cursor_plane_formats),
e6fc3b68 446 NULL, DRM_PLANE_TYPE_CURSOR, NULL);
36cc79bc
SY
447 if (ret) {
448 DRM_ERROR("Failed to initialize cursor plane");
449 drm_plane_cleanup(&ldu->base.primary);
450 goto err_free;
451 }
452
060e2ad5
SY
453 drm_plane_helper_add(cursor, &vmw_ldu_cursor_plane_helper_funcs);
454
455
456 vmw_du_connector_reset(connector);
36cc79bc
SY
457 ret = drm_connector_init(dev, connector, &vmw_legacy_connector_funcs,
458 DRM_MODE_CONNECTOR_VIRTUAL);
459 if (ret) {
460 DRM_ERROR("Failed to initialize connector\n");
461 goto err_free;
462 }
d947d1b7
SY
463
464 drm_connector_helper_add(connector, &vmw_ldu_connector_helper_funcs);
626ab771 465 connector->status = vmw_du_connector_detect(connector, true);
d7721ca7
SY
466 vmw_connector_state_to_vcs(connector->state)->is_implicit = true;
467
fb1d9738 468
36cc79bc
SY
469 ret = drm_encoder_init(dev, encoder, &vmw_legacy_encoder_funcs,
470 DRM_MODE_ENCODER_VIRTUAL, NULL);
471 if (ret) {
472 DRM_ERROR("Failed to initialize encoder\n");
473 goto err_free_connector;
474 }
475
476 (void) drm_mode_connector_attach_encoder(connector, encoder);
fb1d9738
JB
477 encoder->possible_crtcs = (1 << unit);
478 encoder->possible_clones = 0;
479
36cc79bc
SY
480 ret = drm_connector_register(connector);
481 if (ret) {
482 DRM_ERROR("Failed to register connector\n");
483 goto err_free_encoder;
484 }
6a0a7a9e 485
d7721ca7
SY
486
487 vmw_du_crtc_reset(crtc);
36cc79bc
SY
488 ret = drm_crtc_init_with_planes(dev, crtc, &ldu->base.primary,
489 &ldu->base.cursor,
490 &vmw_legacy_crtc_funcs, NULL);
491 if (ret) {
492 DRM_ERROR("Failed to initialize CRTC\n");
493 goto err_free_unregister;
494 }
fb1d9738 495
06ec4190
SY
496 drm_crtc_helper_add(crtc, &vmw_ldu_crtc_helper_funcs);
497
f01b7ba0
MD
498 drm_mode_crtc_set_gamma_size(crtc, 256);
499
578e609a
TH
500 drm_object_attach_property(&connector->base,
501 dev_priv->hotplug_mode_update_property, 1);
502 drm_object_attach_property(&connector->base,
503 dev->mode_config.suggested_x_property, 0);
504 drm_object_attach_property(&connector->base,
505 dev->mode_config.suggested_y_property, 0);
76404ac0
TH
506 if (dev_priv->implicit_placement_property)
507 drm_object_attach_property
508 (&connector->base,
509 dev_priv->implicit_placement_property,
510 1);
fb1d9738
JB
511
512 return 0;
36cc79bc
SY
513
514err_free_unregister:
515 drm_connector_unregister(connector);
516err_free_encoder:
517 drm_encoder_cleanup(encoder);
518err_free_connector:
519 drm_connector_cleanup(connector);
520err_free:
521 kfree(ldu);
522 return ret;
fb1d9738
JB
523}
524
c8261a96 525int vmw_kms_ldu_init_display(struct vmw_private *dev_priv)
fb1d9738 526{
7a1c2f6c 527 struct drm_device *dev = dev_priv->dev;
74b5ea30 528 int i, ret;
7a1c2f6c 529
fb1d9738
JB
530 if (dev_priv->ldu_priv) {
531 DRM_INFO("ldu system already on\n");
532 return -EINVAL;
533 }
534
85b54e0c 535 dev_priv->ldu_priv = kmalloc(sizeof(*dev_priv->ldu_priv), GFP_KERNEL);
fb1d9738
JB
536 if (!dev_priv->ldu_priv)
537 return -ENOMEM;
538
539 INIT_LIST_HEAD(&dev_priv->ldu_priv->active);
540 dev_priv->ldu_priv->num_active = 0;
d7e1958d 541 dev_priv->ldu_priv->last_num_active = 0;
fb1d9738
JB
542 dev_priv->ldu_priv->fb = NULL;
543
60a16a30
JB
544 /* for old hardware without multimon only enable one display */
545 if (dev_priv->capabilities & SVGA_CAP_MULTIMON)
546 ret = drm_vblank_init(dev, VMWGFX_NUM_DISPLAY_UNITS);
547 else
548 ret = drm_vblank_init(dev, 1);
549 if (ret != 0)
550 goto err_free;
fb1d9738 551
76404ac0
TH
552 vmw_kms_create_implicit_placement_property(dev_priv, true);
553
60a16a30 554 if (dev_priv->capabilities & SVGA_CAP_MULTIMON)
56d1c78d 555 for (i = 0; i < VMWGFX_NUM_DISPLAY_UNITS; ++i)
7a1c2f6c 556 vmw_ldu_init(dev_priv, i);
60a16a30 557 else
7a1c2f6c 558 vmw_ldu_init(dev_priv, 0);
fb1d9738 559
c8261a96
SY
560 dev_priv->active_display_unit = vmw_du_legacy;
561
562 DRM_INFO("Legacy Display Unit initialized\n");
563
60a16a30
JB
564 return 0;
565
60a16a30
JB
566err_free:
567 kfree(dev_priv->ldu_priv);
568 dev_priv->ldu_priv = NULL;
7a1c2f6c 569 return ret;
fb1d9738
JB
570}
571
c8261a96 572int vmw_kms_ldu_close_display(struct vmw_private *dev_priv)
fb1d9738
JB
573{
574 if (!dev_priv->ldu_priv)
575 return -ENOSYS;
576
577 BUG_ON(!list_empty(&dev_priv->ldu_priv->active));
578
579 kfree(dev_priv->ldu_priv);
580
581 return 0;
582}
c8261a96
SY
583
584
585int vmw_kms_ldu_do_dmabuf_dirty(struct vmw_private *dev_priv,
586 struct vmw_framebuffer *framebuffer,
587 unsigned flags, unsigned color,
588 struct drm_clip_rect *clips,
589 unsigned num_clips, int increment)
590{
591 size_t fifo_size;
592 int i;
593
594 struct {
595 uint32_t header;
596 SVGAFifoCmdUpdate body;
597 } *cmd;
598
599 fifo_size = sizeof(*cmd) * num_clips;
600 cmd = vmw_fifo_reserve(dev_priv, fifo_size);
601 if (unlikely(cmd == NULL)) {
602 DRM_ERROR("Fifo reserve failed.\n");
603 return -ENOMEM;
604 }
605
606 memset(cmd, 0, fifo_size);
607 for (i = 0; i < num_clips; i++, clips += increment) {
b9eb1a61
TH
608 cmd[i].header = SVGA_CMD_UPDATE;
609 cmd[i].body.x = clips->x1;
610 cmd[i].body.y = clips->y1;
611 cmd[i].body.width = clips->x2 - clips->x1;
612 cmd[i].body.height = clips->y2 - clips->y1;
c8261a96
SY
613 }
614
615 vmw_fifo_commit(dev_priv, fifo_size);
616 return 0;
617}