xref: /linux/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c (revision a0c83177734ab98623795e1ba2cf4b72c23de5e7)
1 // SPDX-License-Identifier: GPL-2.0 OR MIT
2 /**************************************************************************
3  *
4  * Copyright (c) 2009-2025 Broadcom. All Rights Reserved. The term
5  * “Broadcom” refers to Broadcom Inc. and/or its subsidiaries.
6  *
7  **************************************************************************/
8 
9 #include "vmwgfx_kms.h"
10 
11 #include "vmwgfx_bo.h"
12 #include "vmwgfx_resource_priv.h"
13 #include "vmwgfx_vkms.h"
14 #include "vmw_surface_cache.h"
15 
16 #include <drm/drm_atomic.h>
17 #include <drm/drm_atomic_helper.h>
18 #include <drm/drm_damage_helper.h>
19 #include <drm/drm_fourcc.h>
20 #include <drm/drm_rect.h>
21 #include <drm/drm_sysfs.h>
22 #include <drm/drm_edid.h>
23 
vmw_du_init(struct vmw_display_unit * du)24 void vmw_du_init(struct vmw_display_unit *du)
25 {
26 	vmw_vkms_crtc_init(&du->crtc);
27 }
28 
vmw_du_cleanup(struct vmw_display_unit * du)29 void vmw_du_cleanup(struct vmw_display_unit *du)
30 {
31 	struct vmw_private *dev_priv = vmw_priv(du->primary.dev);
32 
33 	vmw_vkms_crtc_cleanup(&du->crtc);
34 	drm_plane_cleanup(&du->primary);
35 	if (vmw_cmd_supported(dev_priv))
36 		drm_plane_cleanup(&du->cursor.base);
37 
38 	drm_connector_unregister(&du->connector);
39 	drm_crtc_cleanup(&du->crtc);
40 	drm_encoder_cleanup(&du->encoder);
41 	drm_connector_cleanup(&du->connector);
42 }
43 
44 
vmw_du_primary_plane_destroy(struct drm_plane * plane)45 void vmw_du_primary_plane_destroy(struct drm_plane *plane)
46 {
47 	drm_plane_cleanup(plane);
48 
49 	/* Planes are static in our case so we don't free it */
50 }
51 
52 
53 /**
54  * vmw_du_plane_unpin_surf - unpins resource associated with a framebuffer surface
55  *
56  * @vps: plane state associated with the display surface
57  */
vmw_du_plane_unpin_surf(struct vmw_plane_state * vps)58 void vmw_du_plane_unpin_surf(struct vmw_plane_state *vps)
59 {
60 	struct vmw_surface *surf = vmw_user_object_surface(&vps->uo);
61 
62 	if (surf) {
63 		if (vps->pinned) {
64 			vmw_resource_unpin(&surf->res);
65 			vps->pinned--;
66 		}
67 	}
68 }
69 
70 
71 /**
72  * vmw_du_plane_cleanup_fb - Unpins the plane surface
73  *
74  * @plane:  display plane
75  * @old_state: Contains the FB to clean up
76  *
77  * Unpins the framebuffer surface
78  *
79  * Returns 0 on success
80  */
81 void
vmw_du_plane_cleanup_fb(struct drm_plane * plane,struct drm_plane_state * old_state)82 vmw_du_plane_cleanup_fb(struct drm_plane *plane,
83 			struct drm_plane_state *old_state)
84 {
85 	struct vmw_plane_state *vps = vmw_plane_state_to_vps(old_state);
86 
87 	vmw_du_plane_unpin_surf(vps);
88 }
89 
90 
91 /**
92  * vmw_du_primary_plane_atomic_check - check if the new state is okay
93  *
94  * @plane: display plane
95  * @state: info on the new plane state, including the FB
96  *
97  * Check if the new state is settable given the current state.  Other
98  * than what the atomic helper checks, we care about crtc fitting
99  * the FB and maintaining one active framebuffer.
100  *
101  * Returns 0 on success
102  */
vmw_du_primary_plane_atomic_check(struct drm_plane * plane,struct drm_atomic_state * state)103 int vmw_du_primary_plane_atomic_check(struct drm_plane *plane,
104 				      struct drm_atomic_state *state)
105 {
106 	struct drm_plane_state *new_state = drm_atomic_get_new_plane_state(state,
107 									   plane);
108 	struct drm_plane_state *old_state = drm_atomic_get_old_plane_state(state,
109 									   plane);
110 	struct drm_crtc_state *crtc_state = NULL;
111 	struct drm_framebuffer *new_fb = new_state->fb;
112 	struct drm_framebuffer *old_fb = old_state->fb;
113 	int ret;
114 
115 	/*
116 	 * Ignore damage clips if the framebuffer attached to the plane's state
117 	 * has changed since the last plane update (page-flip). In this case, a
118 	 * full plane update should happen because uploads are done per-buffer.
119 	 */
120 	if (old_fb != new_fb)
121 		new_state->ignore_damage_clips = true;
122 
123 	if (new_state->crtc)
124 		crtc_state = drm_atomic_get_new_crtc_state(state,
125 							   new_state->crtc);
126 
127 	ret = drm_atomic_helper_check_plane_state(new_state, crtc_state,
128 						  DRM_PLANE_NO_SCALING,
129 						  DRM_PLANE_NO_SCALING,
130 						  false, true);
131 	return ret;
132 }
133 
vmw_du_crtc_atomic_check(struct drm_crtc * crtc,struct drm_atomic_state * state)134 int vmw_du_crtc_atomic_check(struct drm_crtc *crtc,
135 			     struct drm_atomic_state *state)
136 {
137 	struct vmw_private *vmw = vmw_priv(crtc->dev);
138 	struct drm_crtc_state *new_state = drm_atomic_get_new_crtc_state(state,
139 									 crtc);
140 	struct vmw_display_unit *du = vmw_crtc_to_du(new_state->crtc);
141 	int connector_mask = drm_connector_mask(&du->connector);
142 	bool has_primary = new_state->plane_mask &
143 			   drm_plane_mask(crtc->primary);
144 
145 	/*
146 	 * This is fine in general, but broken userspace might expect
147 	 * some actual rendering so give a clue as why it's blank.
148 	 */
149 	if (new_state->enable && !has_primary)
150 		drm_dbg_driver(&vmw->drm,
151 			       "CRTC without a primary plane will be blank.\n");
152 
153 
154 	if (new_state->connector_mask != connector_mask &&
155 	    new_state->connector_mask != 0) {
156 		DRM_ERROR("Invalid connectors configuration\n");
157 		return -EINVAL;
158 	}
159 
160 	/*
161 	 * Our virtual device does not have a dot clock, so use the logical
162 	 * clock value as the dot clock.
163 	 */
164 	if (new_state->mode.crtc_clock == 0)
165 		new_state->adjusted_mode.crtc_clock = new_state->mode.clock;
166 
167 	return 0;
168 }
169 
170 
vmw_du_crtc_atomic_begin(struct drm_crtc * crtc,struct drm_atomic_state * state)171 void vmw_du_crtc_atomic_begin(struct drm_crtc *crtc,
172 			      struct drm_atomic_state *state)
173 {
174 	vmw_vkms_crtc_atomic_begin(crtc, state);
175 }
176 
177 /**
178  * vmw_du_crtc_duplicate_state - duplicate crtc state
179  * @crtc: DRM crtc
180  *
181  * Allocates and returns a copy of the crtc state (both common and
182  * vmw-specific) for the specified crtc.
183  *
184  * Returns: The newly allocated crtc state, or NULL on failure.
185  */
186 struct drm_crtc_state *
vmw_du_crtc_duplicate_state(struct drm_crtc * crtc)187 vmw_du_crtc_duplicate_state(struct drm_crtc *crtc)
188 {
189 	struct drm_crtc_state *state;
190 	struct vmw_crtc_state *vcs;
191 
192 	if (WARN_ON(!crtc->state))
193 		return NULL;
194 
195 	vcs = kmemdup(crtc->state, sizeof(*vcs), GFP_KERNEL);
196 
197 	if (!vcs)
198 		return NULL;
199 
200 	state = &vcs->base;
201 
202 	__drm_atomic_helper_crtc_duplicate_state(crtc, state);
203 
204 	return state;
205 }
206 
207 
208 /**
209  * vmw_du_crtc_reset - creates a blank vmw crtc state
210  * @crtc: DRM crtc
211  *
212  * Resets the atomic state for @crtc by freeing the state pointer (which
213  * might be NULL, e.g. at driver load time) and allocating a new empty state
214  * object.
215  */
vmw_du_crtc_reset(struct drm_crtc * crtc)216 void vmw_du_crtc_reset(struct drm_crtc *crtc)
217 {
218 	struct vmw_crtc_state *vcs;
219 
220 
221 	if (crtc->state) {
222 		__drm_atomic_helper_crtc_destroy_state(crtc->state);
223 
224 		kfree(vmw_crtc_state_to_vcs(crtc->state));
225 	}
226 
227 	vcs = kzalloc_obj(*vcs);
228 
229 	if (!vcs) {
230 		DRM_ERROR("Cannot allocate vmw_crtc_state\n");
231 		return;
232 	}
233 
234 	__drm_atomic_helper_crtc_reset(crtc, &vcs->base);
235 }
236 
237 
238 /**
239  * vmw_du_crtc_destroy_state - destroy crtc state
240  * @crtc: DRM crtc
241  * @state: state object to destroy
242  *
243  * Destroys the crtc state (both common and vmw-specific) for the
244  * specified plane.
245  */
246 void
vmw_du_crtc_destroy_state(struct drm_crtc * crtc,struct drm_crtc_state * state)247 vmw_du_crtc_destroy_state(struct drm_crtc *crtc,
248 			  struct drm_crtc_state *state)
249 {
250 	drm_atomic_helper_crtc_destroy_state(crtc, state);
251 }
252 
253 
254 /**
255  * vmw_du_plane_duplicate_state - duplicate plane state
256  * @plane: drm plane
257  *
258  * Allocates and returns a copy of the plane state (both common and
259  * vmw-specific) for the specified plane.
260  *
261  * Returns: The newly allocated plane state, or NULL on failure.
262  */
263 struct drm_plane_state *
vmw_du_plane_duplicate_state(struct drm_plane * plane)264 vmw_du_plane_duplicate_state(struct drm_plane *plane)
265 {
266 	struct drm_plane_state *state;
267 	struct vmw_plane_state *vps;
268 
269 	vps = kmemdup(plane->state, sizeof(*vps), GFP_KERNEL);
270 
271 	if (!vps)
272 		return NULL;
273 
274 	vps->pinned = 0;
275 	vps->cpp = 0;
276 
277 	vps->cursor.mob = NULL;
278 
279 	/* Each ref counted resource needs to be acquired again */
280 	vmw_user_object_ref(&vps->uo);
281 	state = &vps->base;
282 
283 	__drm_atomic_helper_plane_duplicate_state(plane, state);
284 
285 	return state;
286 }
287 
288 
289 /**
290  * vmw_du_plane_reset - creates a blank vmw plane state
291  * @plane: drm plane
292  *
293  * Resets the atomic state for @plane by freeing the state pointer (which might
294  * be NULL, e.g. at driver load time) and allocating a new empty state object.
295  */
vmw_du_plane_reset(struct drm_plane * plane)296 void vmw_du_plane_reset(struct drm_plane *plane)
297 {
298 	struct vmw_plane_state *vps;
299 
300 	if (plane->state)
301 		vmw_du_plane_destroy_state(plane, plane->state);
302 
303 	vps = kzalloc_obj(*vps);
304 
305 	if (!vps) {
306 		DRM_ERROR("Cannot allocate vmw_plane_state\n");
307 		return;
308 	}
309 
310 	__drm_atomic_helper_plane_reset(plane, &vps->base);
311 }
312 
313 
314 /**
315  * vmw_du_plane_destroy_state - destroy plane state
316  * @plane: DRM plane
317  * @state: state object to destroy
318  *
319  * Destroys the plane state (both common and vmw-specific) for the
320  * specified plane.
321  */
322 void
vmw_du_plane_destroy_state(struct drm_plane * plane,struct drm_plane_state * state)323 vmw_du_plane_destroy_state(struct drm_plane *plane,
324 			   struct drm_plane_state *state)
325 {
326 	struct vmw_plane_state *vps = vmw_plane_state_to_vps(state);
327 
328 	/* Should have been freed by cleanup_fb */
329 	vmw_user_object_unref(&vps->uo);
330 
331 	drm_atomic_helper_plane_destroy_state(plane, state);
332 }
333 
334 
335 /**
336  * vmw_du_connector_duplicate_state - duplicate connector state
337  * @connector: DRM connector
338  *
339  * Allocates and returns a copy of the connector state (both common and
340  * vmw-specific) for the specified connector.
341  *
342  * Returns: The newly allocated connector state, or NULL on failure.
343  */
344 struct drm_connector_state *
vmw_du_connector_duplicate_state(struct drm_connector * connector)345 vmw_du_connector_duplicate_state(struct drm_connector *connector)
346 {
347 	struct drm_connector_state *state;
348 	struct vmw_connector_state *vcs;
349 
350 	if (WARN_ON(!connector->state))
351 		return NULL;
352 
353 	vcs = kmemdup(connector->state, sizeof(*vcs), GFP_KERNEL);
354 
355 	if (!vcs)
356 		return NULL;
357 
358 	state = &vcs->base;
359 
360 	__drm_atomic_helper_connector_duplicate_state(connector, state);
361 
362 	return state;
363 }
364 
365 
366 /**
367  * vmw_du_connector_reset - creates a blank vmw connector state
368  * @connector: DRM connector
369  *
370  * Resets the atomic state for @connector by freeing the state pointer (which
371  * might be NULL, e.g. at driver load time) and allocating a new empty state
372  * object.
373  */
vmw_du_connector_reset(struct drm_connector * connector)374 void vmw_du_connector_reset(struct drm_connector *connector)
375 {
376 	struct vmw_connector_state *vcs;
377 
378 
379 	if (connector->state) {
380 		__drm_atomic_helper_connector_destroy_state(connector->state);
381 
382 		kfree(vmw_connector_state_to_vcs(connector->state));
383 	}
384 
385 	vcs = kzalloc_obj(*vcs);
386 
387 	if (!vcs) {
388 		DRM_ERROR("Cannot allocate vmw_connector_state\n");
389 		return;
390 	}
391 
392 	__drm_atomic_helper_connector_reset(connector, &vcs->base);
393 }
394 
395 
396 /**
397  * vmw_du_connector_destroy_state - destroy connector state
398  * @connector: DRM connector
399  * @state: state object to destroy
400  *
401  * Destroys the connector state (both common and vmw-specific) for the
402  * specified plane.
403  */
404 void
vmw_du_connector_destroy_state(struct drm_connector * connector,struct drm_connector_state * state)405 vmw_du_connector_destroy_state(struct drm_connector *connector,
406 			  struct drm_connector_state *state)
407 {
408 	drm_atomic_helper_connector_destroy_state(connector, state);
409 }
410 /*
411  * Generic framebuffer code
412  */
413 
414 /*
415  * Surface framebuffer code
416  */
417 
vmw_framebuffer_surface_destroy(struct drm_framebuffer * framebuffer)418 static void vmw_framebuffer_surface_destroy(struct drm_framebuffer *framebuffer)
419 {
420 	struct vmw_framebuffer_surface *vfbs =
421 		vmw_framebuffer_to_vfbs(framebuffer);
422 	struct vmw_bo *bo = vmw_user_object_buffer(&vfbs->uo);
423 	struct vmw_surface *surf = vmw_user_object_surface(&vfbs->uo);
424 
425 	if (bo) {
426 		vmw_bo_dirty_release(bo);
427 		/*
428 		 * bo->dirty is reference counted so it being NULL
429 		 * means that the surface wasn't coherent to begin
430 		 * with and so we have to free the dirty tracker
431 		 * in the vmw_resource
432 		 */
433 		if (!bo->dirty && surf && surf->res.dirty)
434 			surf->res.func->dirty_free(&surf->res);
435 	}
436 	drm_framebuffer_cleanup(framebuffer);
437 	vmw_user_object_unref(&vfbs->uo);
438 
439 	kfree(vfbs);
440 }
441 
442 /**
443  * vmw_kms_readback - Perform a readback from the screen system to
444  * a buffer-object backed framebuffer.
445  *
446  * @dev_priv: Pointer to the device private structure.
447  * @file_priv: Pointer to a struct drm_file identifying the caller.
448  * Must be set to NULL if @user_fence_rep is NULL.
449  * @vfb: Pointer to the buffer-object backed framebuffer.
450  * @user_fence_rep: User-space provided structure for fence information.
451  * Must be set to non-NULL if @file_priv is non-NULL.
452  * @vclips: Array of clip rects.
453  * @num_clips: Number of clip rects in @vclips.
454  *
455  * Returns 0 on success, negative error code on failure. -ERESTARTSYS if
456  * interrupted.
457  */
vmw_kms_readback(struct vmw_private * dev_priv,struct drm_file * file_priv,struct vmw_framebuffer * vfb,struct drm_vmw_fence_rep __user * user_fence_rep,struct drm_vmw_rect * vclips,uint32_t num_clips)458 int vmw_kms_readback(struct vmw_private *dev_priv,
459 		     struct drm_file *file_priv,
460 		     struct vmw_framebuffer *vfb,
461 		     struct drm_vmw_fence_rep __user *user_fence_rep,
462 		     struct drm_vmw_rect *vclips,
463 		     uint32_t num_clips)
464 {
465 	switch (dev_priv->active_display_unit) {
466 	case vmw_du_screen_object:
467 		return vmw_kms_sou_readback(dev_priv, file_priv, vfb,
468 					    user_fence_rep, vclips, num_clips,
469 					    NULL);
470 	case vmw_du_screen_target:
471 		return vmw_kms_stdu_readback(dev_priv, file_priv, vfb,
472 					     user_fence_rep, NULL, vclips, num_clips,
473 					     1, NULL);
474 	default:
475 		WARN_ONCE(true,
476 			  "Readback called with invalid display system.\n");
477 }
478 
479 	return -ENOSYS;
480 }
481 
vmw_framebuffer_surface_create_handle(struct drm_framebuffer * fb,struct drm_file * file_priv,unsigned int * handle)482 static int vmw_framebuffer_surface_create_handle(struct drm_framebuffer *fb,
483 						 struct drm_file *file_priv,
484 						 unsigned int *handle)
485 {
486 	struct vmw_framebuffer_surface *vfbs = vmw_framebuffer_to_vfbs(fb);
487 	struct vmw_bo *bo = vmw_user_object_buffer(&vfbs->uo);
488 
489 	if (WARN_ON(!bo))
490 		return -EINVAL;
491 	return drm_gem_handle_create(file_priv, &bo->tbo.base, handle);
492 }
493 
494 static const struct drm_framebuffer_funcs vmw_framebuffer_surface_funcs = {
495 	.create_handle = vmw_framebuffer_surface_create_handle,
496 	.destroy = vmw_framebuffer_surface_destroy,
497 	.dirty = drm_atomic_helper_dirtyfb,
498 };
499 
vmw_kms_new_framebuffer_surface(struct vmw_private * dev_priv,struct vmw_user_object * uo,struct vmw_framebuffer ** out,const struct drm_format_info * info,const struct drm_mode_fb_cmd2 * mode_cmd)500 static int vmw_kms_new_framebuffer_surface(struct vmw_private *dev_priv,
501 					   struct vmw_user_object *uo,
502 					   struct vmw_framebuffer **out,
503 					   const struct drm_format_info *info,
504 					   const struct drm_mode_fb_cmd2
505 					   *mode_cmd)
506 
507 {
508 	struct drm_device *dev = &dev_priv->drm;
509 	struct vmw_framebuffer_surface *vfbs;
510 	struct vmw_surface *surface;
511 	int ret;
512 
513 	/* 3D is only supported on HWv8 and newer hosts */
514 	if (dev_priv->active_display_unit == vmw_du_legacy)
515 		return -ENOSYS;
516 
517 	surface = vmw_user_object_surface(uo);
518 
519 	/*
520 	 * Sanity checks.
521 	 */
522 
523 	if (!drm_any_plane_has_format(&dev_priv->drm,
524 				      mode_cmd->pixel_format,
525 				      mode_cmd->modifier[0])) {
526 		drm_dbg(&dev_priv->drm,
527 			"unsupported pixel format %p4cc / modifier 0x%llx\n",
528 			&mode_cmd->pixel_format, mode_cmd->modifier[0]);
529 		return -EINVAL;
530 	}
531 
532 	/* Surface must be marked as a scanout. */
533 	if (unlikely(!surface->metadata.scanout))
534 		return -EINVAL;
535 
536 	if (unlikely(surface->metadata.mip_levels[0] != 1 ||
537 		     surface->metadata.num_sizes != 1 ||
538 		     surface->metadata.base_size.width < mode_cmd->width ||
539 		     surface->metadata.base_size.height < mode_cmd->height ||
540 		     surface->metadata.base_size.depth != 1)) {
541 		DRM_ERROR("Incompatible surface dimensions "
542 			  "for requested mode.\n");
543 		return -EINVAL;
544 	}
545 
546 	vfbs = kzalloc_obj(*vfbs);
547 	if (!vfbs) {
548 		ret = -ENOMEM;
549 		goto out_err1;
550 	}
551 
552 	drm_helper_mode_fill_fb_struct(dev, &vfbs->base.base, info, mode_cmd);
553 	memcpy(&vfbs->uo, uo, sizeof(vfbs->uo));
554 	vmw_user_object_ref(&vfbs->uo);
555 
556 	if (vfbs->uo.buffer)
557 		vfbs->base.base.obj[0] = &vfbs->uo.buffer->tbo.base;
558 
559 	*out = &vfbs->base;
560 
561 	ret = drm_framebuffer_init(dev, &vfbs->base.base,
562 				   &vmw_framebuffer_surface_funcs);
563 	if (ret)
564 		goto out_err2;
565 
566 	return 0;
567 
568 out_err2:
569 	vmw_user_object_unref(&vfbs->uo);
570 	kfree(vfbs);
571 out_err1:
572 	return ret;
573 }
574 
575 /*
576  * Buffer-object framebuffer code
577  */
578 
vmw_framebuffer_bo_create_handle(struct drm_framebuffer * fb,struct drm_file * file_priv,unsigned int * handle)579 static int vmw_framebuffer_bo_create_handle(struct drm_framebuffer *fb,
580 					    struct drm_file *file_priv,
581 					    unsigned int *handle)
582 {
583 	struct vmw_framebuffer_bo *vfbd =
584 			vmw_framebuffer_to_vfbd(fb);
585 	return drm_gem_handle_create(file_priv, &vfbd->buffer->tbo.base, handle);
586 }
587 
vmw_framebuffer_bo_destroy(struct drm_framebuffer * framebuffer)588 static void vmw_framebuffer_bo_destroy(struct drm_framebuffer *framebuffer)
589 {
590 	struct vmw_framebuffer_bo *vfbd =
591 		vmw_framebuffer_to_vfbd(framebuffer);
592 
593 	vmw_bo_dirty_release(vfbd->buffer);
594 	drm_framebuffer_cleanup(framebuffer);
595 	vmw_bo_unreference(&vfbd->buffer);
596 
597 	kfree(vfbd);
598 }
599 
600 static const struct drm_framebuffer_funcs vmw_framebuffer_bo_funcs = {
601 	.create_handle = vmw_framebuffer_bo_create_handle,
602 	.destroy = vmw_framebuffer_bo_destroy,
603 	.dirty = drm_atomic_helper_dirtyfb,
604 };
605 
vmw_kms_new_framebuffer_bo(struct vmw_private * dev_priv,struct vmw_bo * bo,struct vmw_framebuffer ** out,const struct drm_format_info * info,const struct drm_mode_fb_cmd2 * mode_cmd)606 static int vmw_kms_new_framebuffer_bo(struct vmw_private *dev_priv,
607 				      struct vmw_bo *bo,
608 				      struct vmw_framebuffer **out,
609 				      const struct drm_format_info *info,
610 				      const struct drm_mode_fb_cmd2
611 				      *mode_cmd)
612 
613 {
614 	struct drm_device *dev = &dev_priv->drm;
615 	struct vmw_framebuffer_bo *vfbd;
616 	unsigned int requested_size;
617 	int ret;
618 
619 	requested_size = mode_cmd->height * mode_cmd->pitches[0];
620 	if (unlikely(requested_size > bo->tbo.base.size)) {
621 		DRM_ERROR("Screen buffer object size is too small "
622 			  "for requested mode.\n");
623 		return -EINVAL;
624 	}
625 
626 	if (!drm_any_plane_has_format(&dev_priv->drm,
627 				      mode_cmd->pixel_format,
628 				      mode_cmd->modifier[0])) {
629 		drm_dbg(&dev_priv->drm,
630 			"unsupported pixel format %p4cc / modifier 0x%llx\n",
631 			&mode_cmd->pixel_format, mode_cmd->modifier[0]);
632 		return -EINVAL;
633 	}
634 
635 	vfbd = kzalloc_obj(*vfbd);
636 	if (!vfbd) {
637 		ret = -ENOMEM;
638 		goto out_err1;
639 	}
640 
641 	vfbd->base.base.obj[0] = &bo->tbo.base;
642 	drm_helper_mode_fill_fb_struct(dev, &vfbd->base.base, info, mode_cmd);
643 	vfbd->base.bo = true;
644 	vfbd->buffer = vmw_bo_reference(bo);
645 	*out = &vfbd->base;
646 
647 	ret = drm_framebuffer_init(dev, &vfbd->base.base,
648 				   &vmw_framebuffer_bo_funcs);
649 	if (ret)
650 		goto out_err2;
651 
652 	return 0;
653 
654 out_err2:
655 	vmw_bo_unreference(&bo);
656 	kfree(vfbd);
657 out_err1:
658 	return ret;
659 }
660 
661 
662 /**
663  * vmw_kms_srf_ok - check if a surface can be created
664  *
665  * @dev_priv: Pointer to device private struct.
666  * @width: requested width
667  * @height: requested height
668  *
669  * Surfaces need to be less than texture size
670  */
671 static bool
vmw_kms_srf_ok(struct vmw_private * dev_priv,uint32_t width,uint32_t height)672 vmw_kms_srf_ok(struct vmw_private *dev_priv, uint32_t width, uint32_t height)
673 {
674 	if (width  > dev_priv->texture_max_width ||
675 	    height > dev_priv->texture_max_height)
676 		return false;
677 
678 	return true;
679 }
680 
681 /**
682  * vmw_kms_new_framebuffer - Create a new framebuffer.
683  *
684  * @dev_priv: Pointer to device private struct.
685  * @uo: Pointer to user object to wrap the kms framebuffer around.
686  * Either the buffer or surface inside the user object must be NULL.
687  * @info: pixel format information.
688  * @mode_cmd: Frame-buffer metadata.
689  */
690 struct vmw_framebuffer *
vmw_kms_new_framebuffer(struct vmw_private * dev_priv,struct vmw_user_object * uo,const struct drm_format_info * info,const struct drm_mode_fb_cmd2 * mode_cmd)691 vmw_kms_new_framebuffer(struct vmw_private *dev_priv,
692 			struct vmw_user_object *uo,
693 			const struct drm_format_info *info,
694 			const struct drm_mode_fb_cmd2 *mode_cmd)
695 {
696 	struct vmw_framebuffer *vfb = NULL;
697 	int ret;
698 
699 	/* Create the new framebuffer depending one what we have */
700 	if (vmw_user_object_surface(uo)) {
701 		ret = vmw_kms_new_framebuffer_surface(dev_priv, uo, &vfb,
702 						      info, mode_cmd);
703 	} else if (uo->buffer) {
704 		ret = vmw_kms_new_framebuffer_bo(dev_priv, uo->buffer, &vfb,
705 						 info, mode_cmd);
706 	} else {
707 		BUG();
708 	}
709 
710 	if (ret)
711 		return ERR_PTR(ret);
712 
713 	return vfb;
714 }
715 
716 /*
717  * Generic Kernel modesetting functions
718  */
719 
vmw_kms_fb_create(struct drm_device * dev,struct drm_file * file_priv,const struct drm_format_info * info,const struct drm_mode_fb_cmd2 * mode_cmd)720 static struct drm_framebuffer *vmw_kms_fb_create(struct drm_device *dev,
721 						 struct drm_file *file_priv,
722 						 const struct drm_format_info *info,
723 						 const struct drm_mode_fb_cmd2 *mode_cmd)
724 {
725 	struct vmw_private *dev_priv = vmw_priv(dev);
726 	struct vmw_framebuffer *vfb = NULL;
727 	struct vmw_user_object uo = {0};
728 	struct vmw_bo *bo;
729 	struct vmw_surface *surface;
730 	int ret;
731 
732 	/* returns either a bo or surface */
733 	ret = vmw_user_object_lookup(dev_priv, file_priv, mode_cmd->handles[0],
734 				     &uo);
735 	if (ret) {
736 		DRM_ERROR("Invalid buffer object handle %u (0x%x).\n",
737 			  mode_cmd->handles[0], mode_cmd->handles[0]);
738 		goto err_out;
739 	}
740 
741 
742 	if (vmw_user_object_surface(&uo) &&
743 	    !vmw_kms_srf_ok(dev_priv, mode_cmd->width, mode_cmd->height)) {
744 		DRM_ERROR("Surface size cannot exceed %dx%d\n",
745 			dev_priv->texture_max_width,
746 			dev_priv->texture_max_height);
747 		ret = -EINVAL;
748 		goto err_out;
749 	}
750 
751 
752 	vfb = vmw_kms_new_framebuffer(dev_priv, &uo, info, mode_cmd);
753 	if (IS_ERR(vfb)) {
754 		ret = PTR_ERR(vfb);
755 		goto err_out;
756 	}
757 
758 err_out:
759 	bo = vmw_user_object_buffer(&uo);
760 	surface = vmw_user_object_surface(&uo);
761 	/* vmw_user_object_lookup takes one ref so does new_fb */
762 	vmw_user_object_unref(&uo);
763 
764 	if (ret) {
765 		DRM_ERROR("failed to create vmw_framebuffer: %i\n", ret);
766 		return ERR_PTR(ret);
767 	}
768 
769 	if (bo) {
770 		ttm_bo_reserve(&bo->tbo, false, false, NULL);
771 		ret = vmw_bo_dirty_add(bo);
772 		if (!ret && surface && surface->res.func->dirty_alloc) {
773 			surface->res.coherent = true;
774 			if (surface->res.dirty == NULL)
775 				ret = surface->res.func->dirty_alloc(&surface->res);
776 		}
777 		ttm_bo_unreserve(&bo->tbo);
778 	}
779 
780 	return &vfb->base;
781 }
782 
783 /**
784  * vmw_kms_check_display_memory - Validates display memory required for a
785  * topology
786  * @dev: DRM device
787  * @num_rects: number of drm_rect in rects
788  * @rects: array of drm_rect representing the topology to validate indexed by
789  * crtc index.
790  *
791  * Returns:
792  * 0 on success otherwise negative error code
793  */
vmw_kms_check_display_memory(struct drm_device * dev,uint32_t num_rects,struct drm_rect * rects)794 static int vmw_kms_check_display_memory(struct drm_device *dev,
795 					uint32_t num_rects,
796 					struct drm_rect *rects)
797 {
798 	struct vmw_private *dev_priv = vmw_priv(dev);
799 	struct drm_rect bounding_box = {0};
800 	u64 total_pixels = 0, pixel_mem, bb_mem;
801 	int i;
802 
803 	for (i = 0; i < num_rects; i++) {
804 		/*
805 		 * For STDU only individual screen (screen target) is limited by
806 		 * SCREENTARGET_MAX_WIDTH/HEIGHT registers.
807 		 */
808 		if (dev_priv->active_display_unit == vmw_du_screen_target &&
809 		    (drm_rect_width(&rects[i]) > dev_priv->stdu_max_width ||
810 		     drm_rect_height(&rects[i]) > dev_priv->stdu_max_height)) {
811 			VMW_DEBUG_KMS("Screen size not supported.\n");
812 			return -EINVAL;
813 		}
814 
815 		/* Bounding box upper left is at (0,0). */
816 		if (rects[i].x2 > bounding_box.x2)
817 			bounding_box.x2 = rects[i].x2;
818 
819 		if (rects[i].y2 > bounding_box.y2)
820 			bounding_box.y2 = rects[i].y2;
821 
822 		total_pixels += (u64) drm_rect_width(&rects[i]) *
823 			(u64) drm_rect_height(&rects[i]);
824 	}
825 
826 	/* Virtual svga device primary limits are always in 32-bpp. */
827 	pixel_mem = total_pixels * 4;
828 
829 	/*
830 	 * For HV10 and below prim_bb_mem is vram size. When
831 	 * SVGA_REG_MAX_PRIMARY_BOUNDING_BOX_MEM is not present vram size is
832 	 * limit on primary bounding box
833 	 */
834 	if (pixel_mem > dev_priv->max_primary_mem) {
835 		VMW_DEBUG_KMS("Combined output size too large.\n");
836 		return -EINVAL;
837 	}
838 
839 	/* SVGA_CAP_NO_BB_RESTRICTION is available for STDU only. */
840 	if (dev_priv->active_display_unit != vmw_du_screen_target ||
841 	    !(dev_priv->capabilities & SVGA_CAP_NO_BB_RESTRICTION)) {
842 		bb_mem = (u64) bounding_box.x2 * bounding_box.y2 * 4;
843 
844 		if (bb_mem > dev_priv->max_primary_mem) {
845 			VMW_DEBUG_KMS("Topology is beyond supported limits.\n");
846 			return -EINVAL;
847 		}
848 	}
849 
850 	return 0;
851 }
852 
853 /**
854  * vmw_crtc_state_and_lock - Return new or current crtc state with locked
855  * crtc mutex
856  * @state: The atomic state pointer containing the new atomic state
857  * @crtc: The crtc
858  *
859  * This function returns the new crtc state if it's part of the state update.
860  * Otherwise returns the current crtc state. It also makes sure that the
861  * crtc mutex is locked.
862  *
863  * Returns: A valid crtc state pointer or NULL. It may also return a
864  * pointer error, in particular -EDEADLK if locking needs to be rerun.
865  */
866 static struct drm_crtc_state *
vmw_crtc_state_and_lock(struct drm_atomic_state * state,struct drm_crtc * crtc)867 vmw_crtc_state_and_lock(struct drm_atomic_state *state, struct drm_crtc *crtc)
868 {
869 	struct drm_crtc_state *crtc_state;
870 
871 	crtc_state = drm_atomic_get_new_crtc_state(state, crtc);
872 	if (crtc_state) {
873 		lockdep_assert_held(&crtc->mutex.mutex.base);
874 	} else {
875 		int ret = drm_modeset_lock(&crtc->mutex, state->acquire_ctx);
876 
877 		if (ret != 0 && ret != -EALREADY)
878 			return ERR_PTR(ret);
879 
880 		crtc_state = crtc->state;
881 	}
882 
883 	return crtc_state;
884 }
885 
886 /**
887  * vmw_kms_check_implicit - Verify that all implicit display units scan out
888  * from the same fb after the new state is committed.
889  * @dev: The drm_device.
890  * @state: The new state to be checked.
891  *
892  * Returns:
893  *   Zero on success,
894  *   -EINVAL on invalid state,
895  *   -EDEADLK if modeset locking needs to be rerun.
896  */
vmw_kms_check_implicit(struct drm_device * dev,struct drm_atomic_state * state)897 static int vmw_kms_check_implicit(struct drm_device *dev,
898 				  struct drm_atomic_state *state)
899 {
900 	struct drm_framebuffer *implicit_fb = NULL;
901 	struct drm_crtc *crtc;
902 	struct drm_crtc_state *crtc_state;
903 	struct drm_plane_state *plane_state;
904 
905 	drm_for_each_crtc(crtc, dev) {
906 		struct vmw_display_unit *du = vmw_crtc_to_du(crtc);
907 
908 		if (!du->is_implicit)
909 			continue;
910 
911 		crtc_state = vmw_crtc_state_and_lock(state, crtc);
912 		if (IS_ERR(crtc_state))
913 			return PTR_ERR(crtc_state);
914 
915 		if (!crtc_state || !crtc_state->enable)
916 			continue;
917 
918 		/*
919 		 * Can't move primary planes across crtcs, so this is OK.
920 		 * It also means we don't need to take the plane mutex.
921 		 */
922 		plane_state = du->primary.state;
923 		if (plane_state->crtc != crtc)
924 			continue;
925 
926 		if (!implicit_fb)
927 			implicit_fb = plane_state->fb;
928 		else if (implicit_fb != plane_state->fb)
929 			return -EINVAL;
930 	}
931 
932 	return 0;
933 }
934 
935 /**
936  * vmw_kms_check_topology - Validates topology in drm_atomic_state
937  * @dev: DRM device
938  * @state: the driver state object
939  *
940  * Returns:
941  * 0 on success otherwise negative error code
942  */
vmw_kms_check_topology(struct drm_device * dev,struct drm_atomic_state * state)943 static int vmw_kms_check_topology(struct drm_device *dev,
944 				  struct drm_atomic_state *state)
945 {
946 	struct drm_crtc_state *old_crtc_state, *new_crtc_state;
947 	struct drm_rect *rects;
948 	struct drm_crtc *crtc;
949 	uint32_t i;
950 	int ret = 0;
951 
952 	rects = kzalloc_objs(struct drm_rect, dev->mode_config.num_crtc);
953 	if (!rects)
954 		return -ENOMEM;
955 
956 	drm_for_each_crtc(crtc, dev) {
957 		struct vmw_display_unit *du = vmw_crtc_to_du(crtc);
958 		struct drm_crtc_state *crtc_state;
959 
960 		i = drm_crtc_index(crtc);
961 
962 		crtc_state = vmw_crtc_state_and_lock(state, crtc);
963 		if (IS_ERR(crtc_state)) {
964 			ret = PTR_ERR(crtc_state);
965 			goto clean;
966 		}
967 
968 		if (!crtc_state)
969 			continue;
970 
971 		if (crtc_state->enable) {
972 			rects[i].x1 = du->gui_x;
973 			rects[i].y1 = du->gui_y;
974 			rects[i].x2 = du->gui_x + crtc_state->mode.hdisplay;
975 			rects[i].y2 = du->gui_y + crtc_state->mode.vdisplay;
976 		} else {
977 			rects[i].x1 = 0;
978 			rects[i].y1 = 0;
979 			rects[i].x2 = 0;
980 			rects[i].y2 = 0;
981 		}
982 	}
983 
984 	/* Determine change to topology due to new atomic state */
985 	for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state,
986 				      new_crtc_state, i) {
987 		struct vmw_display_unit *du = vmw_crtc_to_du(crtc);
988 		struct drm_connector *connector;
989 		struct drm_connector_state *conn_state;
990 		struct vmw_connector_state *vmw_conn_state;
991 
992 		if (!du->pref_active && new_crtc_state->enable) {
993 			VMW_DEBUG_KMS("Enabling a disabled display unit\n");
994 			ret = -EINVAL;
995 			goto clean;
996 		}
997 
998 		/*
999 		 * For vmwgfx each crtc has only one connector attached and it
1000 		 * is not changed so don't really need to check the
1001 		 * crtc->connector_mask and iterate over it.
1002 		 */
1003 		connector = &du->connector;
1004 		conn_state = drm_atomic_get_connector_state(state, connector);
1005 		if (IS_ERR(conn_state)) {
1006 			ret = PTR_ERR(conn_state);
1007 			goto clean;
1008 		}
1009 
1010 		vmw_conn_state = vmw_connector_state_to_vcs(conn_state);
1011 		vmw_conn_state->gui_x = du->gui_x;
1012 		vmw_conn_state->gui_y = du->gui_y;
1013 	}
1014 
1015 	ret = vmw_kms_check_display_memory(dev, dev->mode_config.num_crtc,
1016 					   rects);
1017 
1018 clean:
1019 	kfree(rects);
1020 	return ret;
1021 }
1022 
1023 /**
1024  * vmw_kms_atomic_check_modeset- validate state object for modeset changes
1025  *
1026  * @dev: DRM device
1027  * @state: the driver state object
1028  *
1029  * This is a simple wrapper around drm_atomic_helper_check_modeset() for
1030  * us to assign a value to mode->crtc_clock so that
1031  * drm_calc_timestamping_constants() won't throw an error message
1032  *
1033  * Returns:
1034  * Zero for success or -errno
1035  */
1036 static int
vmw_kms_atomic_check_modeset(struct drm_device * dev,struct drm_atomic_state * state)1037 vmw_kms_atomic_check_modeset(struct drm_device *dev,
1038 			     struct drm_atomic_state *state)
1039 {
1040 	struct drm_crtc *crtc;
1041 	struct drm_crtc_state *crtc_state;
1042 	bool need_modeset = false;
1043 	int i, ret;
1044 
1045 	ret = drm_atomic_helper_check(dev, state);
1046 	if (ret)
1047 		return ret;
1048 
1049 	ret = vmw_kms_check_implicit(dev, state);
1050 	if (ret) {
1051 		VMW_DEBUG_KMS("Invalid implicit state\n");
1052 		return ret;
1053 	}
1054 
1055 	for_each_new_crtc_in_state(state, crtc, crtc_state, i) {
1056 		if (drm_atomic_crtc_needs_modeset(crtc_state))
1057 			need_modeset = true;
1058 	}
1059 
1060 	if (need_modeset)
1061 		return vmw_kms_check_topology(dev, state);
1062 
1063 	return ret;
1064 }
1065 
1066 static const struct drm_mode_config_funcs vmw_kms_funcs = {
1067 	.fb_create = vmw_kms_fb_create,
1068 	.atomic_check = vmw_kms_atomic_check_modeset,
1069 	.atomic_commit = drm_atomic_helper_commit,
1070 };
1071 
vmw_kms_generic_present(struct vmw_private * dev_priv,struct drm_file * file_priv,struct vmw_framebuffer * vfb,struct vmw_surface * surface,uint32_t sid,int32_t destX,int32_t destY,struct drm_vmw_rect * clips,uint32_t num_clips)1072 static int vmw_kms_generic_present(struct vmw_private *dev_priv,
1073 				   struct drm_file *file_priv,
1074 				   struct vmw_framebuffer *vfb,
1075 				   struct vmw_surface *surface,
1076 				   uint32_t sid,
1077 				   int32_t destX, int32_t destY,
1078 				   struct drm_vmw_rect *clips,
1079 				   uint32_t num_clips)
1080 {
1081 	return vmw_kms_sou_do_surface_dirty(dev_priv, vfb, NULL, clips,
1082 					    &surface->res, destX, destY,
1083 					    num_clips, 1, NULL, NULL);
1084 }
1085 
1086 
vmw_kms_present(struct vmw_private * dev_priv,struct drm_file * file_priv,struct vmw_framebuffer * vfb,struct vmw_surface * surface,uint32_t sid,int32_t destX,int32_t destY,struct drm_vmw_rect * clips,uint32_t num_clips)1087 int vmw_kms_present(struct vmw_private *dev_priv,
1088 		    struct drm_file *file_priv,
1089 		    struct vmw_framebuffer *vfb,
1090 		    struct vmw_surface *surface,
1091 		    uint32_t sid,
1092 		    int32_t destX, int32_t destY,
1093 		    struct drm_vmw_rect *clips,
1094 		    uint32_t num_clips)
1095 {
1096 	int ret;
1097 
1098 	switch (dev_priv->active_display_unit) {
1099 	case vmw_du_screen_target:
1100 		ret = vmw_kms_stdu_surface_dirty(dev_priv, vfb, NULL, clips,
1101 						 &surface->res, destX, destY,
1102 						 num_clips, 1, NULL, NULL);
1103 		break;
1104 	case vmw_du_screen_object:
1105 		ret = vmw_kms_generic_present(dev_priv, file_priv, vfb, surface,
1106 					      sid, destX, destY, clips,
1107 					      num_clips);
1108 		break;
1109 	default:
1110 		WARN_ONCE(true,
1111 			  "Present called with invalid display system.\n");
1112 		ret = -ENOSYS;
1113 		break;
1114 	}
1115 	if (ret)
1116 		return ret;
1117 
1118 	vmw_cmd_flush(dev_priv, false);
1119 
1120 	return 0;
1121 }
1122 
1123 static void
vmw_kms_create_hotplug_mode_update_property(struct vmw_private * dev_priv)1124 vmw_kms_create_hotplug_mode_update_property(struct vmw_private *dev_priv)
1125 {
1126 	if (dev_priv->hotplug_mode_update_property)
1127 		return;
1128 
1129 	dev_priv->hotplug_mode_update_property =
1130 		drm_property_create_range(&dev_priv->drm,
1131 					  DRM_MODE_PROP_IMMUTABLE,
1132 					  "hotplug_mode_update", 0, 1);
1133 }
1134 
1135 static void
vmw_atomic_commit_tail(struct drm_atomic_state * old_state)1136 vmw_atomic_commit_tail(struct drm_atomic_state *old_state)
1137 {
1138 	struct vmw_private *vmw = vmw_priv(old_state->dev);
1139 	struct drm_crtc *crtc;
1140 	struct drm_crtc_state *old_crtc_state;
1141 	int i;
1142 
1143 	drm_atomic_helper_commit_tail(old_state);
1144 
1145 	if (vmw->vkms_enabled) {
1146 		for_each_old_crtc_in_state(old_state, crtc, old_crtc_state, i) {
1147 			struct vmw_display_unit *du = vmw_crtc_to_du(crtc);
1148 			(void)old_crtc_state;
1149 			flush_work(&du->vkms.crc_generator_work);
1150 		}
1151 	}
1152 }
1153 
1154 static const struct drm_mode_config_helper_funcs vmw_mode_config_helpers = {
1155 	.atomic_commit_tail = vmw_atomic_commit_tail,
1156 };
1157 
vmw_kms_init(struct vmw_private * dev_priv)1158 int vmw_kms_init(struct vmw_private *dev_priv)
1159 {
1160 	struct drm_device *dev = &dev_priv->drm;
1161 	int ret;
1162 	static const char *display_unit_names[] = {
1163 		"Invalid",
1164 		"Legacy",
1165 		"Screen Object",
1166 		"Screen Target",
1167 		"Invalid (max)"
1168 	};
1169 
1170 	drm_mode_config_init(dev);
1171 	dev->mode_config.funcs = &vmw_kms_funcs;
1172 	dev->mode_config.min_width = 1;
1173 	dev->mode_config.min_height = 1;
1174 	dev->mode_config.max_width = dev_priv->texture_max_width;
1175 	dev->mode_config.max_height = dev_priv->texture_max_height;
1176 	dev->mode_config.preferred_depth = dev_priv->assume_16bpp ? 16 : 32;
1177 	dev->mode_config.helper_private = &vmw_mode_config_helpers;
1178 
1179 	drm_mode_create_suggested_offset_properties(dev);
1180 	vmw_kms_create_hotplug_mode_update_property(dev_priv);
1181 
1182 	ret = vmw_kms_stdu_init_display(dev_priv);
1183 	if (ret) {
1184 		ret = vmw_kms_sou_init_display(dev_priv);
1185 		if (ret) /* Fallback */
1186 			ret = vmw_kms_ldu_init_display(dev_priv);
1187 	}
1188 	BUILD_BUG_ON(ARRAY_SIZE(display_unit_names) != (vmw_du_max + 1));
1189 	drm_info(&dev_priv->drm, "%s display unit initialized\n",
1190 		 display_unit_names[dev_priv->active_display_unit]);
1191 
1192 	return ret;
1193 }
1194 
vmw_kms_close(struct vmw_private * dev_priv)1195 int vmw_kms_close(struct vmw_private *dev_priv)
1196 {
1197 	int ret = 0;
1198 
1199 	/*
1200 	 * Docs says we should take the lock before calling this function
1201 	 * but since it destroys encoders and our destructor calls
1202 	 * drm_encoder_cleanup which takes the lock we deadlock.
1203 	 */
1204 	drm_mode_config_cleanup(&dev_priv->drm);
1205 	if (dev_priv->active_display_unit == vmw_du_legacy)
1206 		ret = vmw_kms_ldu_close_display(dev_priv);
1207 
1208 	return ret;
1209 }
1210 
vmw_kms_write_svga(struct vmw_private * vmw_priv,unsigned width,unsigned height,unsigned pitch,unsigned bpp,unsigned depth)1211 int vmw_kms_write_svga(struct vmw_private *vmw_priv,
1212 			unsigned width, unsigned height, unsigned pitch,
1213 			unsigned bpp, unsigned depth)
1214 {
1215 	if (vmw_priv->capabilities & SVGA_CAP_PITCHLOCK)
1216 		vmw_write(vmw_priv, SVGA_REG_PITCHLOCK, pitch);
1217 	else if (vmw_fifo_have_pitchlock(vmw_priv))
1218 		vmw_fifo_mem_write(vmw_priv, SVGA_FIFO_PITCHLOCK, pitch);
1219 	vmw_write(vmw_priv, SVGA_REG_WIDTH, width);
1220 	vmw_write(vmw_priv, SVGA_REG_HEIGHT, height);
1221 	if ((vmw_priv->capabilities & SVGA_CAP_8BIT_EMULATION) != 0)
1222 		vmw_write(vmw_priv, SVGA_REG_BITS_PER_PIXEL, bpp);
1223 
1224 	if (vmw_read(vmw_priv, SVGA_REG_DEPTH) != depth) {
1225 		DRM_ERROR("Invalid depth %u for %u bpp, host expects %u\n",
1226 			  depth, bpp, vmw_read(vmw_priv, SVGA_REG_DEPTH));
1227 		return -EINVAL;
1228 	}
1229 
1230 	return 0;
1231 }
1232 
1233 static
vmw_kms_validate_mode_vram(struct vmw_private * dev_priv,u64 pitch,u64 height)1234 bool vmw_kms_validate_mode_vram(struct vmw_private *dev_priv,
1235 				u64 pitch,
1236 				u64 height)
1237 {
1238 	return (pitch * height) < (u64)dev_priv->vram_size;
1239 }
1240 
1241 /**
1242  * vmw_du_update_layout - Update the display unit with topology from resolution
1243  * plugin and generate DRM uevent
1244  * @dev_priv: device private
1245  * @num_rects: number of drm_rect in rects
1246  * @rects: toplogy to update
1247  */
vmw_du_update_layout(struct vmw_private * dev_priv,unsigned int num_rects,struct drm_rect * rects)1248 static int vmw_du_update_layout(struct vmw_private *dev_priv,
1249 				unsigned int num_rects, struct drm_rect *rects)
1250 {
1251 	struct drm_device *dev = &dev_priv->drm;
1252 	struct vmw_display_unit *du;
1253 	struct drm_connector *con;
1254 	struct drm_connector_list_iter conn_iter;
1255 	struct drm_modeset_acquire_ctx ctx;
1256 	struct drm_crtc *crtc;
1257 	int ret;
1258 
1259 	/* Currently gui_x/y is protected with the crtc mutex */
1260 	mutex_lock(&dev->mode_config.mutex);
1261 	drm_modeset_acquire_init(&ctx, 0);
1262 retry:
1263 	drm_for_each_crtc(crtc, dev) {
1264 		ret = drm_modeset_lock(&crtc->mutex, &ctx);
1265 		if (ret < 0) {
1266 			if (ret == -EDEADLK) {
1267 				drm_modeset_backoff(&ctx);
1268 				goto retry;
1269 		}
1270 			goto out_fini;
1271 		}
1272 	}
1273 
1274 	drm_connector_list_iter_begin(dev, &conn_iter);
1275 	drm_for_each_connector_iter(con, &conn_iter) {
1276 		du = vmw_connector_to_du(con);
1277 		if (num_rects > du->unit) {
1278 			du->pref_width = drm_rect_width(&rects[du->unit]);
1279 			du->pref_height = drm_rect_height(&rects[du->unit]);
1280 			du->pref_active = true;
1281 			du->gui_x = rects[du->unit].x1;
1282 			du->gui_y = rects[du->unit].y1;
1283 		} else {
1284 			du->pref_width  = VMWGFX_MIN_INITIAL_WIDTH;
1285 			du->pref_height = VMWGFX_MIN_INITIAL_HEIGHT;
1286 			du->pref_active = false;
1287 			du->gui_x = 0;
1288 			du->gui_y = 0;
1289 		}
1290 	}
1291 	drm_connector_list_iter_end(&conn_iter);
1292 
1293 	list_for_each_entry(con, &dev->mode_config.connector_list, head) {
1294 		du = vmw_connector_to_du(con);
1295 		if (num_rects > du->unit) {
1296 			drm_object_property_set_value
1297 			  (&con->base, dev->mode_config.suggested_x_property,
1298 			   du->gui_x);
1299 			drm_object_property_set_value
1300 			  (&con->base, dev->mode_config.suggested_y_property,
1301 			   du->gui_y);
1302 		} else {
1303 			drm_object_property_set_value
1304 			  (&con->base, dev->mode_config.suggested_x_property,
1305 			   0);
1306 			drm_object_property_set_value
1307 			  (&con->base, dev->mode_config.suggested_y_property,
1308 			   0);
1309 		}
1310 		con->status = vmw_du_connector_detect(con, true);
1311 	}
1312 out_fini:
1313 	drm_modeset_drop_locks(&ctx);
1314 	drm_modeset_acquire_fini(&ctx);
1315 	mutex_unlock(&dev->mode_config.mutex);
1316 
1317 	drm_sysfs_hotplug_event(dev);
1318 
1319 	return 0;
1320 }
1321 
vmw_du_crtc_gamma_set(struct drm_crtc * crtc,u16 * r,u16 * g,u16 * b,uint32_t size,struct drm_modeset_acquire_ctx * ctx)1322 int vmw_du_crtc_gamma_set(struct drm_crtc *crtc,
1323 			  u16 *r, u16 *g, u16 *b,
1324 			  uint32_t size,
1325 			  struct drm_modeset_acquire_ctx *ctx)
1326 {
1327 	struct vmw_private *dev_priv = vmw_priv(crtc->dev);
1328 	int i;
1329 
1330 	for (i = 0; i < size; i++) {
1331 		DRM_DEBUG("%d r/g/b = 0x%04x / 0x%04x / 0x%04x\n", i,
1332 			  r[i], g[i], b[i]);
1333 		vmw_write(dev_priv, SVGA_PALETTE_BASE + i * 3 + 0, r[i] >> 8);
1334 		vmw_write(dev_priv, SVGA_PALETTE_BASE + i * 3 + 1, g[i] >> 8);
1335 		vmw_write(dev_priv, SVGA_PALETTE_BASE + i * 3 + 2, b[i] >> 8);
1336 	}
1337 
1338 	return 0;
1339 }
1340 
vmw_du_connector_dpms(struct drm_connector * connector,int mode)1341 int vmw_du_connector_dpms(struct drm_connector *connector, int mode)
1342 {
1343 	return 0;
1344 }
1345 
1346 enum drm_connector_status
vmw_du_connector_detect(struct drm_connector * connector,bool force)1347 vmw_du_connector_detect(struct drm_connector *connector, bool force)
1348 {
1349 	uint32_t num_displays;
1350 	struct drm_device *dev = connector->dev;
1351 	struct vmw_private *dev_priv = vmw_priv(dev);
1352 	struct vmw_display_unit *du = vmw_connector_to_du(connector);
1353 
1354 	num_displays = vmw_read(dev_priv, SVGA_REG_NUM_DISPLAYS);
1355 
1356 	return ((vmw_connector_to_du(connector)->unit < num_displays &&
1357 		 du->pref_active) ?
1358 		connector_status_connected : connector_status_disconnected);
1359 }
1360 
1361 /**
1362  * vmw_guess_mode_timing - Provide fake timings for a
1363  * 60Hz vrefresh mode.
1364  *
1365  * @mode: Pointer to a struct drm_display_mode with hdisplay and vdisplay
1366  * members filled in.
1367  */
vmw_guess_mode_timing(struct drm_display_mode * mode)1368 void vmw_guess_mode_timing(struct drm_display_mode *mode)
1369 {
1370 	mode->hsync_start = mode->hdisplay + 50;
1371 	mode->hsync_end = mode->hsync_start + 50;
1372 	mode->htotal = mode->hsync_end + 50;
1373 
1374 	mode->vsync_start = mode->vdisplay + 50;
1375 	mode->vsync_end = mode->vsync_start + 50;
1376 	mode->vtotal = mode->vsync_end + 50;
1377 
1378 	mode->clock = (u32)mode->htotal * (u32)mode->vtotal / 100 * 6;
1379 }
1380 
1381 
1382 /**
1383  * vmw_kms_update_layout_ioctl - Handler for DRM_VMW_UPDATE_LAYOUT ioctl
1384  * @dev: drm device for the ioctl
1385  * @data: data pointer for the ioctl
1386  * @file_priv: drm file for the ioctl call
1387  *
1388  * Update preferred topology of display unit as per ioctl request. The topology
1389  * is expressed as array of drm_vmw_rect.
1390  * e.g.
1391  * [0 0 640 480] [640 0 800 600] [0 480 640 480]
1392  *
1393  * NOTE:
1394  * The x and y offset (upper left) in drm_vmw_rect cannot be less than 0. Beside
1395  * device limit on topology, x + w and y + h (lower right) cannot be greater
1396  * than INT_MAX. So topology beyond these limits will return with error.
1397  *
1398  * Returns:
1399  * Zero on success, negative errno on failure.
1400  */
vmw_kms_update_layout_ioctl(struct drm_device * dev,void * data,struct drm_file * file_priv)1401 int vmw_kms_update_layout_ioctl(struct drm_device *dev, void *data,
1402 				struct drm_file *file_priv)
1403 {
1404 	struct vmw_private *dev_priv = vmw_priv(dev);
1405 	struct drm_mode_config *mode_config = &dev->mode_config;
1406 	struct drm_vmw_update_layout_arg *arg =
1407 		(struct drm_vmw_update_layout_arg *)data;
1408 	const void __user *user_rects;
1409 	struct drm_vmw_rect *rects;
1410 	struct drm_rect *drm_rects;
1411 	unsigned rects_size;
1412 	int ret, i;
1413 
1414 	if (!arg->num_outputs) {
1415 		struct drm_rect def_rect = {0, 0,
1416 					    VMWGFX_MIN_INITIAL_WIDTH,
1417 					    VMWGFX_MIN_INITIAL_HEIGHT};
1418 		vmw_du_update_layout(dev_priv, 1, &def_rect);
1419 		return 0;
1420 	} else if (arg->num_outputs > VMWGFX_NUM_DISPLAY_UNITS) {
1421 		return -E2BIG;
1422 	}
1423 
1424 	rects_size = arg->num_outputs * sizeof(struct drm_vmw_rect);
1425 	rects = kzalloc_objs(struct drm_vmw_rect, arg->num_outputs);
1426 	if (unlikely(!rects))
1427 		return -ENOMEM;
1428 
1429 	user_rects = (void __user *)(unsigned long)arg->rects;
1430 	ret = copy_from_user(rects, user_rects, rects_size);
1431 	if (unlikely(ret != 0)) {
1432 		DRM_ERROR("Failed to get rects.\n");
1433 		ret = -EFAULT;
1434 		goto out_free;
1435 	}
1436 
1437 	drm_rects = (struct drm_rect *)rects;
1438 
1439 	VMW_DEBUG_KMS("Layout count = %u\n", arg->num_outputs);
1440 	for (i = 0; i < arg->num_outputs; i++) {
1441 		struct drm_vmw_rect curr_rect;
1442 
1443 		/* Verify user-space for overflow as kernel use drm_rect */
1444 		if ((rects[i].x + rects[i].w > INT_MAX) ||
1445 		    (rects[i].y + rects[i].h > INT_MAX)) {
1446 			ret = -ERANGE;
1447 			goto out_free;
1448 		}
1449 
1450 		curr_rect = rects[i];
1451 		drm_rects[i].x1 = curr_rect.x;
1452 		drm_rects[i].y1 = curr_rect.y;
1453 		drm_rects[i].x2 = curr_rect.x + curr_rect.w;
1454 		drm_rects[i].y2 = curr_rect.y + curr_rect.h;
1455 
1456 		VMW_DEBUG_KMS("  x1 = %d y1 = %d x2 = %d y2 = %d\n",
1457 			      drm_rects[i].x1, drm_rects[i].y1,
1458 			      drm_rects[i].x2, drm_rects[i].y2);
1459 
1460 		/*
1461 		 * Currently this check is limiting the topology within
1462 		 * mode_config->max (which actually is max texture size
1463 		 * supported by virtual device). This limit is here to address
1464 		 * window managers that create a big framebuffer for whole
1465 		 * topology.
1466 		 */
1467 		if (drm_rects[i].x1 < 0 ||  drm_rects[i].y1 < 0 ||
1468 		    drm_rects[i].x2 > mode_config->max_width ||
1469 		    drm_rects[i].y2 > mode_config->max_height) {
1470 			VMW_DEBUG_KMS("Invalid layout %d %d %d %d\n",
1471 				      drm_rects[i].x1, drm_rects[i].y1,
1472 				      drm_rects[i].x2, drm_rects[i].y2);
1473 			ret = -EINVAL;
1474 			goto out_free;
1475 		}
1476 	}
1477 
1478 	ret = vmw_kms_check_display_memory(dev, arg->num_outputs, drm_rects);
1479 
1480 	if (ret == 0)
1481 		vmw_du_update_layout(dev_priv, arg->num_outputs, drm_rects);
1482 
1483 out_free:
1484 	kfree(rects);
1485 	return ret;
1486 }
1487 
1488 /**
1489  * vmw_kms_helper_dirty - Helper to build commands and perform actions based
1490  * on a set of cliprects and a set of display units.
1491  *
1492  * @dev_priv: Pointer to a device private structure.
1493  * @framebuffer: Pointer to the framebuffer on which to perform the actions.
1494  * @clips: A set of struct drm_clip_rect. Either this os @vclips must be NULL.
1495  * Cliprects are given in framebuffer coordinates.
1496  * @vclips: A set of struct drm_vmw_rect cliprects. Either this or @clips must
1497  * be NULL. Cliprects are given in source coordinates.
1498  * @dest_x: X coordinate offset for the crtc / destination clip rects.
1499  * @dest_y: Y coordinate offset for the crtc / destination clip rects.
1500  * @num_clips: Number of cliprects in the @clips or @vclips array.
1501  * @increment: Integer with which to increment the clip counter when looping.
1502  * Used to skip a predetermined number of clip rects.
1503  * @dirty: Closure structure. See the description of struct vmw_kms_dirty.
1504  */
vmw_kms_helper_dirty(struct vmw_private * dev_priv,struct vmw_framebuffer * framebuffer,const struct drm_clip_rect * clips,const struct drm_vmw_rect * vclips,s32 dest_x,s32 dest_y,int num_clips,int increment,struct vmw_kms_dirty * dirty)1505 int vmw_kms_helper_dirty(struct vmw_private *dev_priv,
1506 			 struct vmw_framebuffer *framebuffer,
1507 			 const struct drm_clip_rect *clips,
1508 			 const struct drm_vmw_rect *vclips,
1509 			 s32 dest_x, s32 dest_y,
1510 			 int num_clips,
1511 			 int increment,
1512 			 struct vmw_kms_dirty *dirty)
1513 {
1514 	struct vmw_display_unit *units[VMWGFX_NUM_DISPLAY_UNITS];
1515 	struct drm_crtc *crtc;
1516 	u32 num_units = 0;
1517 	u32 i, k;
1518 
1519 	dirty->dev_priv = dev_priv;
1520 
1521 	/* If crtc is passed, no need to iterate over other display units */
1522 	if (dirty->crtc) {
1523 		units[num_units++] = vmw_crtc_to_du(dirty->crtc);
1524 	} else {
1525 		list_for_each_entry(crtc, &dev_priv->drm.mode_config.crtc_list,
1526 				    head) {
1527 			struct drm_plane *plane = crtc->primary;
1528 
1529 			if (plane->state->fb == &framebuffer->base)
1530 				units[num_units++] = vmw_crtc_to_du(crtc);
1531 		}
1532 	}
1533 
1534 	for (k = 0; k < num_units; k++) {
1535 		struct vmw_display_unit *unit = units[k];
1536 		s32 crtc_x = unit->crtc.x;
1537 		s32 crtc_y = unit->crtc.y;
1538 		s32 crtc_width = unit->crtc.mode.hdisplay;
1539 		s32 crtc_height = unit->crtc.mode.vdisplay;
1540 		const struct drm_clip_rect *clips_ptr = clips;
1541 		const struct drm_vmw_rect *vclips_ptr = vclips;
1542 
1543 		dirty->unit = unit;
1544 		if (dirty->fifo_reserve_size > 0) {
1545 			dirty->cmd = VMW_CMD_RESERVE(dev_priv,
1546 						      dirty->fifo_reserve_size);
1547 			if (!dirty->cmd)
1548 				return -ENOMEM;
1549 
1550 			memset(dirty->cmd, 0, dirty->fifo_reserve_size);
1551 		}
1552 		dirty->num_hits = 0;
1553 		for (i = 0; i < num_clips; i++, clips_ptr += increment,
1554 		       vclips_ptr += increment) {
1555 			s32 clip_left;
1556 			s32 clip_top;
1557 
1558 			/*
1559 			 * Select clip array type. Note that integer type
1560 			 * in @clips is unsigned short, whereas in @vclips
1561 			 * it's 32-bit.
1562 			 */
1563 			if (clips) {
1564 				dirty->fb_x = (s32) clips_ptr->x1;
1565 				dirty->fb_y = (s32) clips_ptr->y1;
1566 				dirty->unit_x2 = (s32) clips_ptr->x2 + dest_x -
1567 					crtc_x;
1568 				dirty->unit_y2 = (s32) clips_ptr->y2 + dest_y -
1569 					crtc_y;
1570 			} else {
1571 				dirty->fb_x = vclips_ptr->x;
1572 				dirty->fb_y = vclips_ptr->y;
1573 				dirty->unit_x2 = dirty->fb_x + vclips_ptr->w +
1574 					dest_x - crtc_x;
1575 				dirty->unit_y2 = dirty->fb_y + vclips_ptr->h +
1576 					dest_y - crtc_y;
1577 			}
1578 
1579 			dirty->unit_x1 = dirty->fb_x + dest_x - crtc_x;
1580 			dirty->unit_y1 = dirty->fb_y + dest_y - crtc_y;
1581 
1582 			/* Skip this clip if it's outside the crtc region */
1583 			if (dirty->unit_x1 >= crtc_width ||
1584 			    dirty->unit_y1 >= crtc_height ||
1585 			    dirty->unit_x2 <= 0 || dirty->unit_y2 <= 0)
1586 				continue;
1587 
1588 			/* Clip right and bottom to crtc limits */
1589 			dirty->unit_x2 = min_t(s32, dirty->unit_x2,
1590 					       crtc_width);
1591 			dirty->unit_y2 = min_t(s32, dirty->unit_y2,
1592 					       crtc_height);
1593 
1594 			/* Clip left and top to crtc limits */
1595 			clip_left = min_t(s32, dirty->unit_x1, 0);
1596 			clip_top = min_t(s32, dirty->unit_y1, 0);
1597 			dirty->unit_x1 -= clip_left;
1598 			dirty->unit_y1 -= clip_top;
1599 			dirty->fb_x -= clip_left;
1600 			dirty->fb_y -= clip_top;
1601 
1602 			dirty->clip(dirty);
1603 		}
1604 
1605 		dirty->fifo_commit(dirty);
1606 	}
1607 
1608 	return 0;
1609 }
1610 
1611 /**
1612  * vmw_kms_helper_validation_finish - Helper for post KMS command submission
1613  * cleanup and fencing
1614  * @dev_priv: Pointer to the device-private struct
1615  * @file_priv: Pointer identifying the client when user-space fencing is used
1616  * @ctx: Pointer to the validation context
1617  * @out_fence: If non-NULL, returned refcounted fence-pointer
1618  * @user_fence_rep: If non-NULL, pointer to user-space address area
1619  * in which to copy user-space fence info
1620  */
vmw_kms_helper_validation_finish(struct vmw_private * dev_priv,struct drm_file * file_priv,struct vmw_validation_context * ctx,struct vmw_fence_obj ** out_fence,struct drm_vmw_fence_rep __user * user_fence_rep)1621 void vmw_kms_helper_validation_finish(struct vmw_private *dev_priv,
1622 				      struct drm_file *file_priv,
1623 				      struct vmw_validation_context *ctx,
1624 				      struct vmw_fence_obj **out_fence,
1625 				      struct drm_vmw_fence_rep __user *
1626 				      user_fence_rep)
1627 {
1628 	struct vmw_fence_obj *fence = NULL;
1629 	uint32_t handle = 0;
1630 	int ret = 0;
1631 
1632 	if (file_priv || user_fence_rep || vmw_validation_has_bos(ctx) ||
1633 	    out_fence)
1634 		ret = vmw_execbuf_fence_commands(file_priv, dev_priv, &fence,
1635 						 file_priv ? &handle : NULL);
1636 	vmw_validation_done(ctx, fence);
1637 	if (file_priv)
1638 		vmw_execbuf_copy_fence_user(dev_priv, vmw_fpriv(file_priv),
1639 					    ret, user_fence_rep, fence,
1640 					    handle, -1);
1641 	if (out_fence)
1642 		*out_fence = fence;
1643 	else
1644 		vmw_fence_obj_unreference(&fence);
1645 }
1646 
1647 /**
1648  * vmw_kms_create_implicit_placement_property - Set up the implicit placement
1649  * property.
1650  *
1651  * @dev_priv: Pointer to a device private struct.
1652  *
1653  * Sets up the implicit placement property unless it's already set up.
1654  */
1655 void
vmw_kms_create_implicit_placement_property(struct vmw_private * dev_priv)1656 vmw_kms_create_implicit_placement_property(struct vmw_private *dev_priv)
1657 {
1658 	if (dev_priv->implicit_placement_property)
1659 		return;
1660 
1661 	dev_priv->implicit_placement_property =
1662 		drm_property_create_range(&dev_priv->drm,
1663 					  DRM_MODE_PROP_IMMUTABLE,
1664 					  "implicit_placement", 0, 1);
1665 }
1666 
1667 /**
1668  * vmw_kms_suspend - Save modesetting state and turn modesetting off.
1669  *
1670  * @dev: Pointer to the drm device
1671  * Return: 0 on success. Negative error code on failure.
1672  */
vmw_kms_suspend(struct drm_device * dev)1673 int vmw_kms_suspend(struct drm_device *dev)
1674 {
1675 	struct vmw_private *dev_priv = vmw_priv(dev);
1676 
1677 	dev_priv->suspend_state = drm_atomic_helper_suspend(dev);
1678 	if (IS_ERR(dev_priv->suspend_state)) {
1679 		int ret = PTR_ERR(dev_priv->suspend_state);
1680 
1681 		DRM_ERROR("Failed kms suspend: %d\n", ret);
1682 		dev_priv->suspend_state = NULL;
1683 
1684 		return ret;
1685 	}
1686 
1687 	return 0;
1688 }
1689 
1690 
1691 /**
1692  * vmw_kms_resume - Re-enable modesetting and restore state
1693  *
1694  * @dev: Pointer to the drm device
1695  * Return: 0 on success. Negative error code on failure.
1696  *
1697  * State is resumed from a previous vmw_kms_suspend(). It's illegal
1698  * to call this function without a previous vmw_kms_suspend().
1699  */
vmw_kms_resume(struct drm_device * dev)1700 int vmw_kms_resume(struct drm_device *dev)
1701 {
1702 	struct vmw_private *dev_priv = vmw_priv(dev);
1703 	int ret;
1704 
1705 	if (WARN_ON(!dev_priv->suspend_state))
1706 		return 0;
1707 
1708 	ret = drm_atomic_helper_resume(dev, dev_priv->suspend_state);
1709 	dev_priv->suspend_state = NULL;
1710 
1711 	return ret;
1712 }
1713 
1714 /**
1715  * vmw_kms_lost_device - Notify kms that modesetting capabilities will be lost
1716  *
1717  * @dev: Pointer to the drm device
1718  */
vmw_kms_lost_device(struct drm_device * dev)1719 void vmw_kms_lost_device(struct drm_device *dev)
1720 {
1721 	drm_atomic_helper_shutdown(dev);
1722 }
1723 
1724 /**
1725  * vmw_du_helper_plane_update - Helper to do plane update on a display unit.
1726  * @update: The closure structure.
1727  *
1728  * Call this helper after setting callbacks in &vmw_du_update_plane to do plane
1729  * update on display unit.
1730  *
1731  * Return: 0 on success or a negative error code on failure.
1732  */
vmw_du_helper_plane_update(struct vmw_du_update_plane * update)1733 int vmw_du_helper_plane_update(struct vmw_du_update_plane *update)
1734 {
1735 	struct drm_plane_state *state = update->plane->state;
1736 	struct drm_plane_state *old_state = update->old_state;
1737 	struct drm_atomic_helper_damage_iter iter;
1738 	struct drm_rect clip;
1739 	struct drm_rect bb;
1740 	DECLARE_VAL_CONTEXT(val_ctx, NULL, 0);
1741 	uint32_t reserved_size = 0;
1742 	uint32_t submit_size = 0;
1743 	uint32_t curr_size = 0;
1744 	uint32_t num_hits = 0;
1745 	void *cmd_start;
1746 	char *cmd_next;
1747 	int ret;
1748 
1749 	/*
1750 	 * Iterate in advance to check if really need plane update and find the
1751 	 * number of clips that actually are in plane src for fifo allocation.
1752 	 */
1753 	drm_atomic_helper_damage_iter_init(&iter, old_state, state);
1754 	drm_atomic_for_each_plane_damage(&iter, &clip)
1755 		num_hits++;
1756 
1757 	if (num_hits == 0)
1758 		return 0;
1759 
1760 	if (update->vfb->bo) {
1761 		struct vmw_framebuffer_bo *vfbbo =
1762 			container_of(update->vfb, typeof(*vfbbo), base);
1763 
1764 		/*
1765 		 * For screen targets we want a mappable bo, for everything else we want
1766 		 * accelerated i.e. host backed (vram or gmr) bo. If the display unit
1767 		 * is not screen target then mob's shouldn't be available.
1768 		 */
1769 		if (update->dev_priv->active_display_unit == vmw_du_screen_target) {
1770 			vmw_bo_placement_set(vfbbo->buffer,
1771 					     VMW_BO_DOMAIN_SYS | VMW_BO_DOMAIN_MOB | VMW_BO_DOMAIN_GMR,
1772 					     VMW_BO_DOMAIN_SYS | VMW_BO_DOMAIN_MOB | VMW_BO_DOMAIN_GMR);
1773 		} else {
1774 			WARN_ON(update->dev_priv->has_mob);
1775 			vmw_bo_placement_set_default_accelerated(vfbbo->buffer);
1776 		}
1777 		ret = vmw_validation_add_bo(&val_ctx, vfbbo->buffer);
1778 	} else {
1779 		struct vmw_framebuffer_surface *vfbs =
1780 			container_of(update->vfb, typeof(*vfbs), base);
1781 		struct vmw_surface *surf = vmw_user_object_surface(&vfbs->uo);
1782 
1783 		ret = vmw_validation_add_resource(&val_ctx, &surf->res,
1784 						  0, VMW_RES_DIRTY_NONE, NULL,
1785 						  NULL);
1786 	}
1787 
1788 	if (ret)
1789 		return ret;
1790 
1791 	ret = vmw_validation_prepare(&val_ctx, update->mutex, update->intr);
1792 	if (ret)
1793 		goto out_unref;
1794 
1795 	reserved_size = update->calc_fifo_size(update, num_hits);
1796 	cmd_start = VMW_CMD_RESERVE(update->dev_priv, reserved_size);
1797 	if (!cmd_start) {
1798 		ret = -ENOMEM;
1799 		goto out_revert;
1800 	}
1801 
1802 	cmd_next = cmd_start;
1803 
1804 	if (update->post_prepare) {
1805 		curr_size = update->post_prepare(update, cmd_next);
1806 		cmd_next += curr_size;
1807 		submit_size += curr_size;
1808 	}
1809 
1810 	if (update->pre_clip) {
1811 		curr_size = update->pre_clip(update, cmd_next, num_hits);
1812 		cmd_next += curr_size;
1813 		submit_size += curr_size;
1814 	}
1815 
1816 	bb.x1 = INT_MAX;
1817 	bb.y1 = INT_MAX;
1818 	bb.x2 = INT_MIN;
1819 	bb.y2 = INT_MIN;
1820 
1821 	drm_atomic_helper_damage_iter_init(&iter, old_state, state);
1822 	drm_atomic_for_each_plane_damage(&iter, &clip) {
1823 		uint32_t fb_x = clip.x1;
1824 		uint32_t fb_y = clip.y1;
1825 
1826 		vmw_du_translate_to_crtc(state, &clip);
1827 		if (update->clip) {
1828 			curr_size = update->clip(update, cmd_next, &clip, fb_x,
1829 						 fb_y);
1830 			cmd_next += curr_size;
1831 			submit_size += curr_size;
1832 		}
1833 		bb.x1 = min_t(int, bb.x1, clip.x1);
1834 		bb.y1 = min_t(int, bb.y1, clip.y1);
1835 		bb.x2 = max_t(int, bb.x2, clip.x2);
1836 		bb.y2 = max_t(int, bb.y2, clip.y2);
1837 	}
1838 
1839 	curr_size = update->post_clip(update, cmd_next, &bb);
1840 	submit_size += curr_size;
1841 
1842 	if (reserved_size < submit_size)
1843 		submit_size = 0;
1844 
1845 	vmw_cmd_commit(update->dev_priv, submit_size);
1846 
1847 	vmw_kms_helper_validation_finish(update->dev_priv, NULL, &val_ctx,
1848 					 update->out_fence, NULL);
1849 	return ret;
1850 
1851 out_revert:
1852 	vmw_validation_revert(&val_ctx);
1853 
1854 out_unref:
1855 	vmw_validation_unref_lists(&val_ctx);
1856 	return ret;
1857 }
1858 
1859 /**
1860  * vmw_connector_mode_valid - implements drm_connector_helper_funcs.mode_valid callback
1861  *
1862  * @connector: the drm connector, part of a DU container
1863  * @mode: drm mode to check
1864  *
1865  * Returns MODE_OK on success, or a drm_mode_status error code.
1866  */
vmw_connector_mode_valid(struct drm_connector * connector,const struct drm_display_mode * mode)1867 enum drm_mode_status vmw_connector_mode_valid(struct drm_connector *connector,
1868 					      const struct drm_display_mode *mode)
1869 {
1870 	enum drm_mode_status ret;
1871 	struct drm_device *dev = connector->dev;
1872 	struct vmw_private *dev_priv = vmw_priv(dev);
1873 	u32 assumed_cpp = 4;
1874 
1875 	if (dev_priv->assume_16bpp)
1876 		assumed_cpp = 2;
1877 
1878 	ret = drm_mode_validate_size(mode, dev_priv->texture_max_width,
1879 				     dev_priv->texture_max_height);
1880 	if (ret != MODE_OK)
1881 		return ret;
1882 
1883 	if (!vmw_kms_validate_mode_vram(dev_priv,
1884 					mode->hdisplay * assumed_cpp,
1885 					mode->vdisplay))
1886 		return MODE_MEM;
1887 
1888 	return MODE_OK;
1889 }
1890 
1891 /**
1892  * vmw_connector_get_modes - implements drm_connector_helper_funcs.get_modes callback
1893  *
1894  * @connector: the drm connector, part of a DU container
1895  *
1896  * Returns the number of added modes.
1897  */
vmw_connector_get_modes(struct drm_connector * connector)1898 int vmw_connector_get_modes(struct drm_connector *connector)
1899 {
1900 	struct vmw_display_unit *du = vmw_connector_to_du(connector);
1901 	struct drm_device *dev = connector->dev;
1902 	struct vmw_private *dev_priv = vmw_priv(dev);
1903 	struct drm_display_mode *mode = NULL;
1904 	struct drm_display_mode prefmode = { DRM_MODE("preferred",
1905 		DRM_MODE_TYPE_DRIVER | DRM_MODE_TYPE_PREFERRED,
1906 		0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1907 		DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC)
1908 	};
1909 	u32 max_width;
1910 	u32 max_height;
1911 	u32 num_modes;
1912 
1913 	/* Add preferred mode */
1914 	mode = drm_mode_duplicate(dev, &prefmode);
1915 	if (!mode)
1916 		return 0;
1917 
1918 	mode->hdisplay = du->pref_width;
1919 	mode->vdisplay = du->pref_height;
1920 	vmw_guess_mode_timing(mode);
1921 	drm_mode_set_name(mode);
1922 
1923 	drm_mode_probed_add(connector, mode);
1924 	drm_dbg_kms(dev, "preferred mode " DRM_MODE_FMT "\n", DRM_MODE_ARG(mode));
1925 
1926 	/* Probe connector for all modes not exceeding our geom limits */
1927 	max_width  = dev_priv->texture_max_width;
1928 	max_height = dev_priv->texture_max_height;
1929 
1930 	if (dev_priv->active_display_unit == vmw_du_screen_target) {
1931 		max_width  = min(dev_priv->stdu_max_width,  max_width);
1932 		max_height = min(dev_priv->stdu_max_height, max_height);
1933 	}
1934 
1935 	num_modes = 1 + drm_add_modes_noedid(connector, max_width, max_height);
1936 
1937 	return num_modes;
1938 }
1939 
vmw_user_object_ref(struct vmw_user_object * uo)1940 struct vmw_user_object *vmw_user_object_ref(struct vmw_user_object *uo)
1941 {
1942 	if (uo->buffer)
1943 		vmw_user_bo_ref(uo->buffer);
1944 	else if (uo->surface)
1945 		vmw_surface_reference(uo->surface);
1946 	return uo;
1947 }
1948 
vmw_user_object_unref(struct vmw_user_object * uo)1949 void vmw_user_object_unref(struct vmw_user_object *uo)
1950 {
1951 	if (uo->buffer)
1952 		vmw_user_bo_unref(&uo->buffer);
1953 	else if (uo->surface)
1954 		vmw_surface_unreference(&uo->surface);
1955 }
1956 
1957 struct vmw_bo *
vmw_user_object_buffer(struct vmw_user_object * uo)1958 vmw_user_object_buffer(struct vmw_user_object *uo)
1959 {
1960 	if (uo->buffer)
1961 		return uo->buffer;
1962 	else if (uo->surface)
1963 		return uo->surface->res.guest_memory_bo;
1964 	return NULL;
1965 }
1966 
1967 struct vmw_surface *
vmw_user_object_surface(struct vmw_user_object * uo)1968 vmw_user_object_surface(struct vmw_user_object *uo)
1969 {
1970 	if (uo->buffer)
1971 		return uo->buffer->dumb_surface;
1972 	return uo->surface;
1973 }
1974 
vmw_user_object_map(struct vmw_user_object * uo)1975 void *vmw_user_object_map(struct vmw_user_object *uo)
1976 {
1977 	struct vmw_bo *bo = vmw_user_object_buffer(uo);
1978 
1979 	WARN_ON(!bo);
1980 	return vmw_bo_map_and_cache(bo);
1981 }
1982 
vmw_user_object_map_size(struct vmw_user_object * uo,size_t size)1983 void *vmw_user_object_map_size(struct vmw_user_object *uo, size_t size)
1984 {
1985 	struct vmw_bo *bo = vmw_user_object_buffer(uo);
1986 
1987 	WARN_ON(!bo);
1988 	return vmw_bo_map_and_cache_size(bo, size);
1989 }
1990 
vmw_user_object_unmap(struct vmw_user_object * uo)1991 void vmw_user_object_unmap(struct vmw_user_object *uo)
1992 {
1993 	struct vmw_bo *bo = vmw_user_object_buffer(uo);
1994 	int ret;
1995 
1996 	WARN_ON(!bo);
1997 
1998 	/* Fence the mob creation so we are guarateed to have the mob */
1999 	ret = ttm_bo_reserve(&bo->tbo, false, false, NULL);
2000 	if (ret != 0)
2001 		return;
2002 
2003 	vmw_bo_unmap(bo);
2004 	vmw_bo_pin_reserved(bo, false);
2005 
2006 	ttm_bo_unreserve(&bo->tbo);
2007 }
2008 
vmw_user_object_is_mapped(struct vmw_user_object * uo)2009 bool vmw_user_object_is_mapped(struct vmw_user_object *uo)
2010 {
2011 	struct vmw_bo *bo;
2012 
2013 	if (!uo || vmw_user_object_is_null(uo))
2014 		return false;
2015 
2016 	bo = vmw_user_object_buffer(uo);
2017 
2018 	if (WARN_ON(!bo))
2019 		return false;
2020 
2021 	WARN_ON(bo->map.bo && !bo->map.virtual);
2022 	return bo->map.virtual;
2023 }
2024 
vmw_user_object_is_null(struct vmw_user_object * uo)2025 bool vmw_user_object_is_null(struct vmw_user_object *uo)
2026 {
2027 	return !uo->buffer && !uo->surface;
2028 }
2029