1 /**************************************************************************
2  *
3  * Copyright © 2009-2015 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 #include <drm/drm_plane_helper.h>
30 
31 
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 
39 struct vmw_legacy_display {
40 	struct list_head active;
41 
42 	unsigned num_active;
43 	unsigned last_num_active;
44 
45 	struct vmw_framebuffer *fb;
46 };
47 
48 /**
49  * Display unit using the legacy register interface.
50  */
51 struct vmw_legacy_display_unit {
52 	struct vmw_display_unit base;
53 
54 	struct list_head active;
55 };
56 
57 static void vmw_ldu_destroy(struct vmw_legacy_display_unit *ldu)
58 {
59 	list_del_init(&ldu->active);
60 	vmw_du_cleanup(&ldu->base);
61 	kfree(ldu);
62 }
63 
64 
65 /*
66  * Legacy Display Unit CRTC functions
67  */
68 
69 static void vmw_ldu_crtc_destroy(struct drm_crtc *crtc)
70 {
71 	vmw_ldu_destroy(vmw_crtc_to_ldu(crtc));
72 }
73 
74 static 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;
78 	struct vmw_display_unit *du = NULL;
79 	struct drm_framebuffer *fb = NULL;
80 	struct drm_crtc *crtc = NULL;
81 	int i = 0, ret;
82 
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;
97 		fb = entry->base.crtc.primary->fb;
98 
99 		return vmw_kms_write_svga(dev_priv, w, h, fb->pitches[0],
100 					  fb->bits_per_pixel, fb->depth);
101 	}
102 
103 	if (!list_empty(&lds->active)) {
104 		entry = list_entry(lds->active.next, typeof(*entry), active);
105 		fb = entry->base.crtc.primary->fb;
106 
107 		vmw_kms_write_svga(dev_priv, fb->width, fb->height, fb->pitches[0],
108 				   fb->bits_per_pixel, fb->depth);
109 	}
110 
111 	/* Make sure we always show something. */
112 	vmw_write(dev_priv, SVGA_REG_NUM_GUEST_DISPLAYS,
113 		  lds->num_active ? lds->num_active : 1);
114 
115 	i = 0;
116 	list_for_each_entry(entry, &lds->active, active) {
117 		crtc = &entry->base.crtc;
118 
119 		vmw_write(dev_priv, SVGA_REG_DISPLAY_ID, i);
120 		vmw_write(dev_priv, SVGA_REG_DISPLAY_IS_PRIMARY, !i);
121 		vmw_write(dev_priv, SVGA_REG_DISPLAY_POSITION_X, crtc->x);
122 		vmw_write(dev_priv, SVGA_REG_DISPLAY_POSITION_Y, crtc->y);
123 		vmw_write(dev_priv, SVGA_REG_DISPLAY_WIDTH, crtc->mode.hdisplay);
124 		vmw_write(dev_priv, SVGA_REG_DISPLAY_HEIGHT, crtc->mode.vdisplay);
125 		vmw_write(dev_priv, SVGA_REG_DISPLAY_ID, SVGA_ID_INVALID);
126 
127 		i++;
128 	}
129 
130 	BUG_ON(i != lds->num_active);
131 
132 	lds->last_num_active = lds->num_active;
133 
134 
135 	/* Find the first du with a cursor. */
136 	list_for_each_entry(entry, &lds->active, active) {
137 		du = &entry->base;
138 
139 		if (!du->cursor_dmabuf)
140 			continue;
141 
142 		ret = vmw_cursor_update_dmabuf(dev_priv,
143 					       du->cursor_dmabuf,
144 					       64, 64,
145 					       du->hotspot_x,
146 					       du->hotspot_y);
147 		if (ret == 0)
148 			break;
149 
150 		DRM_ERROR("Could not update cursor image\n");
151 	}
152 
153 	return 0;
154 }
155 
156 static int vmw_ldu_del_active(struct vmw_private *vmw_priv,
157 			      struct vmw_legacy_display_unit *ldu)
158 {
159 	struct vmw_legacy_display *ld = vmw_priv->ldu_priv;
160 	if (list_empty(&ldu->active))
161 		return 0;
162 
163 	/* Must init otherwise list_empty(&ldu->active) will not work. */
164 	list_del_init(&ldu->active);
165 	if (--(ld->num_active) == 0) {
166 		BUG_ON(!ld->fb);
167 		if (ld->fb->unpin)
168 			ld->fb->unpin(ld->fb);
169 		ld->fb = NULL;
170 	}
171 
172 	return 0;
173 }
174 
175 static int vmw_ldu_add_active(struct vmw_private *vmw_priv,
176 			      struct vmw_legacy_display_unit *ldu,
177 			      struct vmw_framebuffer *vfb)
178 {
179 	struct vmw_legacy_display *ld = vmw_priv->ldu_priv;
180 	struct vmw_legacy_display_unit *entry;
181 	struct list_head *at;
182 
183 	BUG_ON(!ld->num_active && ld->fb);
184 	if (vfb != ld->fb) {
185 		if (ld->fb && ld->fb->unpin)
186 			ld->fb->unpin(ld->fb);
187 		if (vfb->pin)
188 			vfb->pin(vfb);
189 		ld->fb = vfb;
190 	}
191 
192 	if (!list_empty(&ldu->active))
193 		return 0;
194 
195 	at = &ld->active;
196 	list_for_each_entry(entry, &ld->active, active) {
197 		if (entry->base.unit > ldu->base.unit)
198 			break;
199 
200 		at = &entry->active;
201 	}
202 
203 	list_add(&ldu->active, at);
204 
205 	ld->num_active++;
206 
207 	return 0;
208 }
209 
210 static int vmw_ldu_crtc_set_config(struct drm_mode_set *set)
211 {
212 	struct vmw_private *dev_priv;
213 	struct vmw_legacy_display_unit *ldu;
214 	struct drm_connector *connector;
215 	struct drm_display_mode *mode;
216 	struct drm_encoder *encoder;
217 	struct vmw_framebuffer *vfb;
218 	struct drm_framebuffer *fb;
219 	struct drm_crtc *crtc;
220 
221 	if (!set)
222 		return -EINVAL;
223 
224 	if (!set->crtc)
225 		return -EINVAL;
226 
227 	/* get the ldu */
228 	crtc = set->crtc;
229 	ldu = vmw_crtc_to_ldu(crtc);
230 	vfb = set->fb ? vmw_framebuffer_to_vfb(set->fb) : NULL;
231 	dev_priv = vmw_priv(crtc->dev);
232 
233 	if (set->num_connectors > 1) {
234 		DRM_ERROR("to many connectors\n");
235 		return -EINVAL;
236 	}
237 
238 	if (set->num_connectors == 1 &&
239 	    set->connectors[0] != &ldu->base.connector) {
240 		DRM_ERROR("connector doesn't match %p %p\n",
241 			set->connectors[0], &ldu->base.connector);
242 		return -EINVAL;
243 	}
244 
245 	/* ldu only supports one fb active at the time */
246 	if (dev_priv->ldu_priv->fb && vfb &&
247 	    !(dev_priv->ldu_priv->num_active == 1 &&
248 	      !list_empty(&ldu->active)) &&
249 	    dev_priv->ldu_priv->fb != vfb) {
250 		DRM_ERROR("Multiple framebuffers not supported\n");
251 		return -EINVAL;
252 	}
253 
254 	/* since they always map one to one these are safe */
255 	connector = &ldu->base.connector;
256 	encoder = &ldu->base.encoder;
257 
258 	/* should we turn the crtc off? */
259 	if (set->num_connectors == 0 || !set->mode || !set->fb) {
260 
261 		connector->encoder = NULL;
262 		encoder->crtc = NULL;
263 		crtc->primary->fb = NULL;
264 		crtc->enabled = false;
265 
266 		vmw_ldu_del_active(dev_priv, ldu);
267 
268 		return vmw_ldu_commit_list(dev_priv);
269 	}
270 
271 
272 	/* we now know we want to set a mode */
273 	mode = set->mode;
274 	fb = set->fb;
275 
276 	if (set->x + mode->hdisplay > fb->width ||
277 	    set->y + mode->vdisplay > fb->height) {
278 		DRM_ERROR("set outside of framebuffer\n");
279 		return -EINVAL;
280 	}
281 
282 	vmw_svga_enable(dev_priv);
283 
284 	crtc->primary->fb = fb;
285 	encoder->crtc = crtc;
286 	connector->encoder = encoder;
287 	crtc->x = set->x;
288 	crtc->y = set->y;
289 	crtc->mode = *mode;
290 	crtc->enabled = true;
291 
292 	vmw_ldu_add_active(dev_priv, ldu, vfb);
293 
294 	return vmw_ldu_commit_list(dev_priv);
295 }
296 
297 static const struct drm_crtc_funcs vmw_legacy_crtc_funcs = {
298 	.cursor_set2 = vmw_du_crtc_cursor_set2,
299 	.cursor_move = vmw_du_crtc_cursor_move,
300 	.gamma_set = vmw_du_crtc_gamma_set,
301 	.destroy = vmw_ldu_crtc_destroy,
302 	.set_config = vmw_ldu_crtc_set_config,
303 };
304 
305 
306 /*
307  * Legacy Display Unit encoder functions
308  */
309 
310 static void vmw_ldu_encoder_destroy(struct drm_encoder *encoder)
311 {
312 	vmw_ldu_destroy(vmw_encoder_to_ldu(encoder));
313 }
314 
315 static const struct drm_encoder_funcs vmw_legacy_encoder_funcs = {
316 	.destroy = vmw_ldu_encoder_destroy,
317 };
318 
319 /*
320  * Legacy Display Unit connector functions
321  */
322 
323 static void vmw_ldu_connector_destroy(struct drm_connector *connector)
324 {
325 	vmw_ldu_destroy(vmw_connector_to_ldu(connector));
326 }
327 
328 static const struct drm_connector_funcs vmw_legacy_connector_funcs = {
329 	.dpms = vmw_du_connector_dpms,
330 	.detect = vmw_du_connector_detect,
331 	.fill_modes = vmw_du_connector_fill_modes,
332 	.set_property = vmw_du_connector_set_property,
333 	.destroy = vmw_ldu_connector_destroy,
334 };
335 
336 static int vmw_ldu_init(struct vmw_private *dev_priv, unsigned unit)
337 {
338 	struct vmw_legacy_display_unit *ldu;
339 	struct drm_device *dev = dev_priv->dev;
340 	struct drm_connector *connector;
341 	struct drm_encoder *encoder;
342 	struct drm_crtc *crtc;
343 
344 	ldu = kzalloc(sizeof(*ldu), GFP_KERNEL);
345 	if (!ldu)
346 		return -ENOMEM;
347 
348 	ldu->base.unit = unit;
349 	crtc = &ldu->base.crtc;
350 	encoder = &ldu->base.encoder;
351 	connector = &ldu->base.connector;
352 
353 	INIT_LIST_HEAD(&ldu->active);
354 
355 	ldu->base.pref_active = (unit == 0);
356 	ldu->base.pref_width = dev_priv->initial_width;
357 	ldu->base.pref_height = dev_priv->initial_height;
358 	ldu->base.pref_mode = NULL;
359 	ldu->base.is_implicit = true;
360 
361 	drm_connector_init(dev, connector, &vmw_legacy_connector_funcs,
362 			   DRM_MODE_CONNECTOR_VIRTUAL);
363 	connector->status = vmw_du_connector_detect(connector, true);
364 
365 	drm_encoder_init(dev, encoder, &vmw_legacy_encoder_funcs,
366 			 DRM_MODE_ENCODER_VIRTUAL, NULL);
367 	drm_mode_connector_attach_encoder(connector, encoder);
368 	encoder->possible_crtcs = (1 << unit);
369 	encoder->possible_clones = 0;
370 
371 	(void) drm_connector_register(connector);
372 
373 	drm_crtc_init(dev, crtc, &vmw_legacy_crtc_funcs);
374 
375 	drm_mode_crtc_set_gamma_size(crtc, 256);
376 
377 	drm_object_attach_property(&connector->base,
378 				      dev->mode_config.dirty_info_property,
379 				      1);
380 
381 	return 0;
382 }
383 
384 int vmw_kms_ldu_init_display(struct vmw_private *dev_priv)
385 {
386 	struct drm_device *dev = dev_priv->dev;
387 	int i, ret;
388 
389 	if (dev_priv->ldu_priv) {
390 		DRM_INFO("ldu system already on\n");
391 		return -EINVAL;
392 	}
393 
394 	dev_priv->ldu_priv = kmalloc(sizeof(*dev_priv->ldu_priv), GFP_KERNEL);
395 	if (!dev_priv->ldu_priv)
396 		return -ENOMEM;
397 
398 	INIT_LIST_HEAD(&dev_priv->ldu_priv->active);
399 	dev_priv->ldu_priv->num_active = 0;
400 	dev_priv->ldu_priv->last_num_active = 0;
401 	dev_priv->ldu_priv->fb = NULL;
402 
403 	/* for old hardware without multimon only enable one display */
404 	if (dev_priv->capabilities & SVGA_CAP_MULTIMON)
405 		ret = drm_vblank_init(dev, VMWGFX_NUM_DISPLAY_UNITS);
406 	else
407 		ret = drm_vblank_init(dev, 1);
408 	if (ret != 0)
409 		goto err_free;
410 
411 	ret = drm_mode_create_dirty_info_property(dev);
412 	if (ret != 0)
413 		goto err_vblank_cleanup;
414 
415 	if (dev_priv->capabilities & SVGA_CAP_MULTIMON)
416 		for (i = 0; i < VMWGFX_NUM_DISPLAY_UNITS; ++i)
417 			vmw_ldu_init(dev_priv, i);
418 	else
419 		vmw_ldu_init(dev_priv, 0);
420 
421 	dev_priv->active_display_unit = vmw_du_legacy;
422 
423 	DRM_INFO("Legacy Display Unit initialized\n");
424 
425 	return 0;
426 
427 err_vblank_cleanup:
428 	drm_vblank_cleanup(dev);
429 err_free:
430 	kfree(dev_priv->ldu_priv);
431 	dev_priv->ldu_priv = NULL;
432 	return ret;
433 }
434 
435 int vmw_kms_ldu_close_display(struct vmw_private *dev_priv)
436 {
437 	struct drm_device *dev = dev_priv->dev;
438 
439 	if (!dev_priv->ldu_priv)
440 		return -ENOSYS;
441 
442 	drm_vblank_cleanup(dev);
443 
444 	BUG_ON(!list_empty(&dev_priv->ldu_priv->active));
445 
446 	kfree(dev_priv->ldu_priv);
447 
448 	return 0;
449 }
450 
451 
452 int vmw_kms_ldu_do_dmabuf_dirty(struct vmw_private *dev_priv,
453 				struct vmw_framebuffer *framebuffer,
454 				unsigned flags, unsigned color,
455 				struct drm_clip_rect *clips,
456 				unsigned num_clips, int increment)
457 {
458 	size_t fifo_size;
459 	int i;
460 
461 	struct {
462 		uint32_t header;
463 		SVGAFifoCmdUpdate body;
464 	} *cmd;
465 
466 	fifo_size = sizeof(*cmd) * num_clips;
467 	cmd = vmw_fifo_reserve(dev_priv, fifo_size);
468 	if (unlikely(cmd == NULL)) {
469 		DRM_ERROR("Fifo reserve failed.\n");
470 		return -ENOMEM;
471 	}
472 
473 	memset(cmd, 0, fifo_size);
474 	for (i = 0; i < num_clips; i++, clips += increment) {
475 		cmd[i].header = SVGA_CMD_UPDATE;
476 		cmd[i].body.x = clips->x1;
477 		cmd[i].body.y = clips->y1;
478 		cmd[i].body.width = clips->x2 - clips->x1;
479 		cmd[i].body.height = clips->y2 - clips->y1;
480 	}
481 
482 	vmw_fifo_commit(dev_priv, fifo_size);
483 	return 0;
484 }
485