]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/gpu/drm/vmwgfx/vmwgfx_ldu.c
drm/vmwgfx: Removed unused snooper.crtc field
[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>
fb1d9738 30
7a1c2f6c 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
54 struct list_head active;
fb1d9738
JB
55};
56
57static void vmw_ldu_destroy(struct vmw_legacy_display_unit *ldu)
58{
59 list_del_init(&ldu->active);
c8261a96 60 vmw_du_cleanup(&ldu->base);
fb1d9738
JB
61 kfree(ldu);
62}
63
64
65/*
66 * Legacy Display Unit CRTC functions
67 */
68
fb1d9738
JB
69static void vmw_ldu_crtc_destroy(struct drm_crtc *crtc)
70{
71 vmw_ldu_destroy(vmw_crtc_to_ldu(crtc));
72}
73
74static int vmw_ldu_commit_list(struct vmw_private *dev_priv)
75{
76 struct vmw_legacy_display *lds = dev_priv->ldu_priv;
77 struct vmw_legacy_display_unit *entry;
bfc2638d 78 struct vmw_display_unit *du = NULL;
d7e1958d
JB
79 struct drm_framebuffer *fb = NULL;
80 struct drm_crtc *crtc = NULL;
bfc2638d 81 int i = 0, ret;
fb1d9738 82
d7e1958d
JB
83 /* If there is no display topology the host just assumes
84 * that the guest will set the same layout as the host.
85 */
86 if (!(dev_priv->capabilities & SVGA_CAP_DISPLAY_TOPOLOGY)) {
87 int w = 0, h = 0;
88 list_for_each_entry(entry, &lds->active, active) {
89 crtc = &entry->base.crtc;
90 w = max(w, crtc->x + crtc->mode.hdisplay);
91 h = max(h, crtc->y + crtc->mode.vdisplay);
92 i++;
93 }
94
95 if (crtc == NULL)
96 return 0;
f4510a27 97 fb = entry->base.crtc.primary->fb;
d7e1958d 98
01f2c773 99 return vmw_kms_write_svga(dev_priv, w, h, fb->pitches[0],
272725c7 100 fb->format->cpp[0] * 8,
b00c600e 101 fb->format->depth);
d7e1958d
JB
102 }
103
d7e1958d
JB
104 if (!list_empty(&lds->active)) {
105 entry = list_entry(lds->active.next, typeof(*entry), active);
f4510a27 106 fb = entry->base.crtc.primary->fb;
d7e1958d 107
01f2c773 108 vmw_kms_write_svga(dev_priv, fb->width, fb->height, fb->pitches[0],
272725c7 109 fb->format->cpp[0] * 8, fb->format->depth);
d7e1958d
JB
110 }
111
259600d5
JB
112 /* Make sure we always show something. */
113 vmw_write(dev_priv, SVGA_REG_NUM_GUEST_DISPLAYS,
114 lds->num_active ? lds->num_active : 1);
115
fb1d9738
JB
116 i = 0;
117 list_for_each_entry(entry, &lds->active, active) {
118 crtc = &entry->base.crtc;
119
120 vmw_write(dev_priv, SVGA_REG_DISPLAY_ID, i);
121 vmw_write(dev_priv, SVGA_REG_DISPLAY_IS_PRIMARY, !i);
122 vmw_write(dev_priv, SVGA_REG_DISPLAY_POSITION_X, crtc->x);
123 vmw_write(dev_priv, SVGA_REG_DISPLAY_POSITION_Y, crtc->y);
124 vmw_write(dev_priv, SVGA_REG_DISPLAY_WIDTH, crtc->mode.hdisplay);
125 vmw_write(dev_priv, SVGA_REG_DISPLAY_HEIGHT, crtc->mode.vdisplay);
126 vmw_write(dev_priv, SVGA_REG_DISPLAY_ID, SVGA_ID_INVALID);
127
128 i++;
129 }
130
d7e1958d
JB
131 BUG_ON(i != lds->num_active);
132
133 lds->last_num_active = lds->num_active;
134
bfc2638d
JB
135
136 /* Find the first du with a cursor. */
137 list_for_each_entry(entry, &lds->active, active) {
138 du = &entry->base;
139
140 if (!du->cursor_dmabuf)
141 continue;
142
143 ret = vmw_cursor_update_dmabuf(dev_priv,
144 du->cursor_dmabuf,
145 64, 64,
146 du->hotspot_x,
147 du->hotspot_y);
148 if (ret == 0)
149 break;
150
151 DRM_ERROR("Could not update cursor image\n");
152 }
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;
f4510a27 264 crtc->primary->fb = NULL;
c6c1f325 265 crtc->enabled = false;
fb1d9738
JB
266
267 vmw_ldu_del_active(dev_priv, ldu);
268
0bef23f9 269 return vmw_ldu_commit_list(dev_priv);
fb1d9738
JB
270 }
271
272
273 /* we now know we want to set a mode */
274 mode = set->mode;
275 fb = set->fb;
276
277 if (set->x + mode->hdisplay > fb->width ||
278 set->y + mode->vdisplay > fb->height) {
279 DRM_ERROR("set outside of framebuffer\n");
280 return -EINVAL;
281 }
282
153b3d5b 283 vmw_svga_enable(dev_priv);
fb1d9738 284
f4510a27 285 crtc->primary->fb = fb;
fb1d9738
JB
286 encoder->crtc = crtc;
287 connector->encoder = encoder;
288 crtc->x = set->x;
289 crtc->y = set->y;
290 crtc->mode = *mode;
c6c1f325 291 crtc->enabled = true;
6dd687b4
TH
292 ldu->base.set_gui_x = set->x;
293 ldu->base.set_gui_y = set->y;
fb1d9738
JB
294
295 vmw_ldu_add_active(dev_priv, ldu, vfb);
296
0bef23f9 297 return vmw_ldu_commit_list(dev_priv);
fb1d9738
JB
298}
299
d7955fcf 300static const struct drm_crtc_funcs vmw_legacy_crtc_funcs = {
8fbf9d92 301 .cursor_set2 = vmw_du_crtc_cursor_set2,
fb1d9738 302 .cursor_move = vmw_du_crtc_cursor_move,
626ab771 303 .gamma_set = vmw_du_crtc_gamma_set,
fb1d9738
JB
304 .destroy = vmw_ldu_crtc_destroy,
305 .set_config = vmw_ldu_crtc_set_config,
306};
307
626ab771 308
fb1d9738
JB
309/*
310 * Legacy Display Unit encoder functions
311 */
312
313static void vmw_ldu_encoder_destroy(struct drm_encoder *encoder)
314{
315 vmw_ldu_destroy(vmw_encoder_to_ldu(encoder));
316}
317
d7955fcf 318static const struct drm_encoder_funcs vmw_legacy_encoder_funcs = {
fb1d9738
JB
319 .destroy = vmw_ldu_encoder_destroy,
320};
321
322/*
323 * Legacy Display Unit connector functions
324 */
325
fb1d9738
JB
326static void vmw_ldu_connector_destroy(struct drm_connector *connector)
327{
328 vmw_ldu_destroy(vmw_connector_to_ldu(connector));
329}
330
d7955fcf 331static const struct drm_connector_funcs vmw_legacy_connector_funcs = {
626ab771 332 .dpms = vmw_du_connector_dpms,
626ab771
JB
333 .detect = vmw_du_connector_detect,
334 .fill_modes = vmw_du_connector_fill_modes,
335 .set_property = vmw_du_connector_set_property,
fb1d9738
JB
336 .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
bbfad336 351 ldu->base.unit = unit;
fb1d9738
JB
352 crtc = &ldu->base.crtc;
353 encoder = &ldu->base.encoder;
354 connector = &ldu->base.connector;
355
1ae1ddd5
JB
356 INIT_LIST_HEAD(&ldu->active);
357
626ab771 358 ldu->base.pref_active = (unit == 0);
eb4f923b
JB
359 ldu->base.pref_width = dev_priv->initial_width;
360 ldu->base.pref_height = dev_priv->initial_height;
626ab771 361 ldu->base.pref_mode = NULL;
6987427a 362 ldu->base.is_implicit = true;
d8bd19d2 363
fb1d9738 364 drm_connector_init(dev, connector, &vmw_legacy_connector_funcs,
305151e3 365 DRM_MODE_CONNECTOR_VIRTUAL);
626ab771 366 connector->status = vmw_du_connector_detect(connector, true);
fb1d9738
JB
367
368 drm_encoder_init(dev, encoder, &vmw_legacy_encoder_funcs,
13a3d91f 369 DRM_MODE_ENCODER_VIRTUAL, NULL);
fb1d9738
JB
370 drm_mode_connector_attach_encoder(connector, encoder);
371 encoder->possible_crtcs = (1 << unit);
372 encoder->possible_clones = 0;
373
34ea3d38 374 (void) drm_connector_register(connector);
6a0a7a9e 375
fb1d9738
JB
376 drm_crtc_init(dev, crtc, &vmw_legacy_crtc_funcs);
377
f01b7ba0
MD
378 drm_mode_crtc_set_gamma_size(crtc, 256);
379
578e609a
TH
380 drm_object_attach_property(&connector->base,
381 dev_priv->hotplug_mode_update_property, 1);
382 drm_object_attach_property(&connector->base,
383 dev->mode_config.suggested_x_property, 0);
384 drm_object_attach_property(&connector->base,
385 dev->mode_config.suggested_y_property, 0);
76404ac0
TH
386 if (dev_priv->implicit_placement_property)
387 drm_object_attach_property
388 (&connector->base,
389 dev_priv->implicit_placement_property,
390 1);
fb1d9738
JB
391
392 return 0;
393}
394
c8261a96 395int vmw_kms_ldu_init_display(struct vmw_private *dev_priv)
fb1d9738 396{
7a1c2f6c 397 struct drm_device *dev = dev_priv->dev;
74b5ea30 398 int i, ret;
7a1c2f6c 399
fb1d9738
JB
400 if (dev_priv->ldu_priv) {
401 DRM_INFO("ldu system already on\n");
402 return -EINVAL;
403 }
404
85b54e0c 405 dev_priv->ldu_priv = kmalloc(sizeof(*dev_priv->ldu_priv), GFP_KERNEL);
fb1d9738
JB
406 if (!dev_priv->ldu_priv)
407 return -ENOMEM;
408
409 INIT_LIST_HEAD(&dev_priv->ldu_priv->active);
410 dev_priv->ldu_priv->num_active = 0;
d7e1958d 411 dev_priv->ldu_priv->last_num_active = 0;
fb1d9738
JB
412 dev_priv->ldu_priv->fb = NULL;
413
60a16a30
JB
414 /* for old hardware without multimon only enable one display */
415 if (dev_priv->capabilities & SVGA_CAP_MULTIMON)
416 ret = drm_vblank_init(dev, VMWGFX_NUM_DISPLAY_UNITS);
417 else
418 ret = drm_vblank_init(dev, 1);
419 if (ret != 0)
420 goto err_free;
fb1d9738 421
76404ac0
TH
422 vmw_kms_create_implicit_placement_property(dev_priv, true);
423
60a16a30 424 if (dev_priv->capabilities & SVGA_CAP_MULTIMON)
56d1c78d 425 for (i = 0; i < VMWGFX_NUM_DISPLAY_UNITS; ++i)
7a1c2f6c 426 vmw_ldu_init(dev_priv, i);
60a16a30 427 else
7a1c2f6c 428 vmw_ldu_init(dev_priv, 0);
fb1d9738 429
c8261a96
SY
430 dev_priv->active_display_unit = vmw_du_legacy;
431
432 DRM_INFO("Legacy Display Unit initialized\n");
433
60a16a30
JB
434 return 0;
435
60a16a30
JB
436err_free:
437 kfree(dev_priv->ldu_priv);
438 dev_priv->ldu_priv = NULL;
7a1c2f6c 439 return ret;
fb1d9738
JB
440}
441
c8261a96 442int vmw_kms_ldu_close_display(struct vmw_private *dev_priv)
fb1d9738 443{
7a1c2f6c
TH
444 struct drm_device *dev = dev_priv->dev;
445
fb1d9738
JB
446 if (!dev_priv->ldu_priv)
447 return -ENOSYS;
448
60a16a30
JB
449 drm_vblank_cleanup(dev);
450
fb1d9738
JB
451 BUG_ON(!list_empty(&dev_priv->ldu_priv->active));
452
453 kfree(dev_priv->ldu_priv);
454
455 return 0;
456}
c8261a96
SY
457
458
459int vmw_kms_ldu_do_dmabuf_dirty(struct vmw_private *dev_priv,
460 struct vmw_framebuffer *framebuffer,
461 unsigned flags, unsigned color,
462 struct drm_clip_rect *clips,
463 unsigned num_clips, int increment)
464{
465 size_t fifo_size;
466 int i;
467
468 struct {
469 uint32_t header;
470 SVGAFifoCmdUpdate body;
471 } *cmd;
472
473 fifo_size = sizeof(*cmd) * num_clips;
474 cmd = vmw_fifo_reserve(dev_priv, fifo_size);
475 if (unlikely(cmd == NULL)) {
476 DRM_ERROR("Fifo reserve failed.\n");
477 return -ENOMEM;
478 }
479
480 memset(cmd, 0, fifo_size);
481 for (i = 0; i < num_clips; i++, clips += increment) {
b9eb1a61
TH
482 cmd[i].header = SVGA_CMD_UPDATE;
483 cmd[i].body.x = clips->x1;
484 cmd[i].body.y = clips->y1;
485 cmd[i].body.width = clips->x2 - clips->x1;
486 cmd[i].body.height = clips->y2 - clips->y1;
c8261a96
SY
487 }
488
489 vmw_fifo_commit(dev_priv, fifo_size);
490 return 0;
491}