blob: 61824e360619c5d13650526d2aedf1dbcbfd5774 [file] [log] [blame]
Dirk Hohndel (VMware)dff96882018-05-07 01:16:26 +02001// SPDX-License-Identifier: GPL-2.0 OR MIT
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00002/**************************************************************************
3 *
Dirk Hohndel (VMware)dff96882018-05-07 01:16:26 +02004 * Copyright 2009-2015 VMware, Inc., Palo Alto, CA., USA
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00005 *
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"
Sinclair Yeh060e2ad2017-03-23 14:18:32 -070029#include <drm/drm_plane_helper.h>
Sinclair Yeh9c2542a2017-03-23 11:33:39 -070030#include <drm/drm_atomic.h>
31#include <drm/drm_atomic_helper.h>
Sinclair Yeh060e2ad2017-03-23 14:18:32 -070032#include <drm/drm_rect.h>
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000033
34/* Might need a hrtimer here? */
35#define VMWGFX_PRESENT_RATE ((HZ / 60 > 0) ? HZ / 60 : 1)
36
Sinclair Yehc8261a92015-06-26 01:23:42 -070037void vmw_du_cleanup(struct vmw_display_unit *du)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000038{
Sinclair Yeh36cc79b2017-03-23 11:28:11 -070039 drm_plane_cleanup(&du->primary);
40 drm_plane_cleanup(&du->cursor);
41
Thomas Wood34ea3d32014-05-29 16:57:41 +010042 drm_connector_unregister(&du->connector);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000043 drm_crtc_cleanup(&du->crtc);
44 drm_encoder_cleanup(&du->encoder);
45 drm_connector_cleanup(&du->connector);
46}
47
48/*
49 * Display Unit Cursor functions
50 */
51
Sinclair Yeh36cc79b2017-03-23 11:28:11 -070052static int vmw_cursor_update_image(struct vmw_private *dev_priv,
53 u32 *image, u32 width, u32 height,
54 u32 hotspotX, u32 hotspotY)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000055{
56 struct {
57 u32 cmd;
58 SVGAFifoCmdDefineAlphaCursor cursor;
59 } *cmd;
60 u32 image_size = width * height * 4;
61 u32 cmd_size = sizeof(*cmd) + image_size;
62
63 if (!image)
64 return -EINVAL;
65
66 cmd = vmw_fifo_reserve(dev_priv, cmd_size);
67 if (unlikely(cmd == NULL)) {
68 DRM_ERROR("Fifo reserve failed.\n");
69 return -ENOMEM;
70 }
71
72 memset(cmd, 0, sizeof(*cmd));
73
74 memcpy(&cmd[1], image, image_size);
75
Thomas Hellstromb9eb1a62015-04-02 02:39:45 -070076 cmd->cmd = SVGA_CMD_DEFINE_ALPHA_CURSOR;
77 cmd->cursor.id = 0;
78 cmd->cursor.width = width;
79 cmd->cursor.height = height;
80 cmd->cursor.hotspotX = hotspotX;
81 cmd->cursor.hotspotY = hotspotY;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000082
Thomas Hellstrom4e0858a2015-11-05 02:18:55 -080083 vmw_fifo_commit_flush(dev_priv, cmd_size);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000084
85 return 0;
86}
87
Sinclair Yeh36cc79b2017-03-23 11:28:11 -070088static int vmw_cursor_update_dmabuf(struct vmw_private *dev_priv,
89 struct vmw_dma_buffer *dmabuf,
90 u32 width, u32 height,
91 u32 hotspotX, u32 hotspotY)
Jakob Bornecrantz6a91d972011-11-28 13:19:10 +010092{
93 struct ttm_bo_kmap_obj map;
94 unsigned long kmap_offset;
95 unsigned long kmap_num;
96 void *virtual;
97 bool dummy;
98 int ret;
99
100 kmap_offset = 0;
101 kmap_num = (width*height*4 + PAGE_SIZE - 1) >> PAGE_SHIFT;
102
Christian Königdfd5e502016-04-06 11:12:03 +0200103 ret = ttm_bo_reserve(&dmabuf->base, true, false, NULL);
Jakob Bornecrantz6a91d972011-11-28 13:19:10 +0100104 if (unlikely(ret != 0)) {
105 DRM_ERROR("reserve failed\n");
106 return -EINVAL;
107 }
108
109 ret = ttm_bo_kmap(&dmabuf->base, kmap_offset, kmap_num, &map);
110 if (unlikely(ret != 0))
111 goto err_unreserve;
112
113 virtual = ttm_kmap_obj_virtual(&map, &dummy);
114 ret = vmw_cursor_update_image(dev_priv, virtual, width, height,
115 hotspotX, hotspotY);
116
117 ttm_bo_kunmap(&map);
118err_unreserve:
119 ttm_bo_unreserve(&dmabuf->base);
120
121 return ret;
122}
123
124
Sinclair Yeh36cc79b2017-03-23 11:28:11 -0700125static void vmw_cursor_update_position(struct vmw_private *dev_priv,
126 bool show, int x, int y)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000127{
Thomas Hellstromb76ff5e2015-10-28 10:44:04 +0100128 u32 *fifo_mem = dev_priv->mmio_virt;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000129 uint32_t count;
130
Sinclair Yeh36cc79b2017-03-23 11:28:11 -0700131 spin_lock(&dev_priv->cursor_lock);
Thomas Hellstromb76ff5e2015-10-28 10:44:04 +0100132 vmw_mmio_write(show ? 1 : 0, fifo_mem + SVGA_FIFO_CURSOR_ON);
133 vmw_mmio_write(x, fifo_mem + SVGA_FIFO_CURSOR_X);
134 vmw_mmio_write(y, fifo_mem + SVGA_FIFO_CURSOR_Y);
135 count = vmw_mmio_read(fifo_mem + SVGA_FIFO_CURSOR_COUNT);
136 vmw_mmio_write(++count, fifo_mem + SVGA_FIFO_CURSOR_COUNT);
Sinclair Yeh36cc79b2017-03-23 11:28:11 -0700137 spin_unlock(&dev_priv->cursor_lock);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000138}
139
Thomas Hellstrom8fbf9d92015-11-26 19:45:16 +0100140
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000141void vmw_kms_cursor_snoop(struct vmw_surface *srf,
142 struct ttm_object_file *tfile,
143 struct ttm_buffer_object *bo,
144 SVGA3dCmdHeader *header)
145{
146 struct ttm_bo_kmap_obj map;
147 unsigned long kmap_offset;
148 unsigned long kmap_num;
149 SVGA3dCopyBox *box;
150 unsigned box_count;
151 void *virtual;
152 bool dummy;
153 struct vmw_dma_cmd {
154 SVGA3dCmdHeader header;
155 SVGA3dCmdSurfaceDMA dma;
156 } *cmd;
Jakob Bornecrantz2ac86372011-11-03 21:03:08 +0100157 int i, ret;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000158
159 cmd = container_of(header, struct vmw_dma_cmd, header);
160
161 /* No snooper installed */
162 if (!srf->snooper.image)
163 return;
164
165 if (cmd->dma.host.face != 0 || cmd->dma.host.mipmap != 0) {
166 DRM_ERROR("face and mipmap for cursors should never != 0\n");
167 return;
168 }
169
170 if (cmd->header.size < 64) {
171 DRM_ERROR("at least one full copy box must be given\n");
172 return;
173 }
174
175 box = (SVGA3dCopyBox *)&cmd[1];
176 box_count = (cmd->header.size - sizeof(SVGA3dCmdSurfaceDMA)) /
177 sizeof(SVGA3dCopyBox);
178
Jakob Bornecrantz2ac86372011-11-03 21:03:08 +0100179 if (cmd->dma.guest.ptr.offset % PAGE_SIZE ||
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000180 box->x != 0 || box->y != 0 || box->z != 0 ||
181 box->srcx != 0 || box->srcy != 0 || box->srcz != 0 ||
Jakob Bornecrantz2ac86372011-11-03 21:03:08 +0100182 box->d != 1 || box_count != 1) {
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000183 /* TODO handle none page aligned offsets */
Jakob Bornecrantz2ac86372011-11-03 21:03:08 +0100184 /* TODO handle more dst & src != 0 */
185 /* TODO handle more then one copy */
186 DRM_ERROR("Cant snoop dma request for cursor!\n");
187 DRM_ERROR("(%u, %u, %u) (%u, %u, %u) (%ux%ux%u) %u %u\n",
188 box->srcx, box->srcy, box->srcz,
189 box->x, box->y, box->z,
190 box->w, box->h, box->d, box_count,
191 cmd->dma.guest.ptr.offset);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000192 return;
193 }
194
195 kmap_offset = cmd->dma.guest.ptr.offset >> PAGE_SHIFT;
196 kmap_num = (64*64*4) >> PAGE_SHIFT;
197
Christian Königdfd5e502016-04-06 11:12:03 +0200198 ret = ttm_bo_reserve(bo, true, false, NULL);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000199 if (unlikely(ret != 0)) {
200 DRM_ERROR("reserve failed\n");
201 return;
202 }
203
204 ret = ttm_bo_kmap(bo, kmap_offset, kmap_num, &map);
205 if (unlikely(ret != 0))
206 goto err_unreserve;
207
208 virtual = ttm_kmap_obj_virtual(&map, &dummy);
209
Jakob Bornecrantz2ac86372011-11-03 21:03:08 +0100210 if (box->w == 64 && cmd->dma.guest.pitch == 64*4) {
211 memcpy(srf->snooper.image, virtual, 64*64*4);
212 } else {
213 /* Image is unsigned pointer. */
214 for (i = 0; i < box->h; i++)
215 memcpy(srf->snooper.image + i * 64,
216 virtual + i * cmd->dma.guest.pitch,
217 box->w * 4);
218 }
219
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000220 srf->snooper.age++;
221
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000222 ttm_bo_kunmap(&map);
223err_unreserve:
224 ttm_bo_unreserve(bo);
225}
226
Thomas Hellstrom8fbf9d92015-11-26 19:45:16 +0100227/**
228 * vmw_kms_legacy_hotspot_clear - Clear legacy hotspots
229 *
230 * @dev_priv: Pointer to the device private struct.
231 *
232 * Clears all legacy hotspots.
233 */
234void vmw_kms_legacy_hotspot_clear(struct vmw_private *dev_priv)
235{
236 struct drm_device *dev = dev_priv->dev;
237 struct vmw_display_unit *du;
238 struct drm_crtc *crtc;
239
240 drm_modeset_lock_all(dev);
241 drm_for_each_crtc(crtc, dev) {
242 du = vmw_crtc_to_du(crtc);
243
244 du->hotspot_x = 0;
245 du->hotspot_y = 0;
246 }
247 drm_modeset_unlock_all(dev);
248}
249
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000250void vmw_kms_cursor_post_execbuf(struct vmw_private *dev_priv)
251{
252 struct drm_device *dev = dev_priv->dev;
253 struct vmw_display_unit *du;
254 struct drm_crtc *crtc;
255
256 mutex_lock(&dev->mode_config.mutex);
257
258 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
259 du = vmw_crtc_to_du(crtc);
260 if (!du->cursor_surface ||
261 du->cursor_age == du->cursor_surface->snooper.age)
262 continue;
263
264 du->cursor_age = du->cursor_surface->snooper.age;
265 vmw_cursor_update_image(dev_priv,
266 du->cursor_surface->snooper.image,
Thomas Hellstrom8fbf9d92015-11-26 19:45:16 +0100267 64, 64,
268 du->hotspot_x + du->core_hotspot_x,
269 du->hotspot_y + du->core_hotspot_y);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000270 }
271
272 mutex_unlock(&dev->mode_config.mutex);
273}
274
Sinclair Yeh36cc79b2017-03-23 11:28:11 -0700275
Sinclair Yeh36cc79b2017-03-23 11:28:11 -0700276void vmw_du_cursor_plane_destroy(struct drm_plane *plane)
277{
278 vmw_cursor_update_position(plane->dev->dev_private, false, 0, 0);
279
280 drm_plane_cleanup(plane);
281}
282
283
284void vmw_du_primary_plane_destroy(struct drm_plane *plane)
285{
286 drm_plane_cleanup(plane);
287
288 /* Planes are static in our case so we don't free it */
289}
290
291
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700292/**
293 * vmw_du_vps_unpin_surf - unpins resource associated with a framebuffer surface
294 *
295 * @vps: plane state associated with the display surface
296 * @unreference: true if we also want to unreference the display.
297 */
298void vmw_du_plane_unpin_surf(struct vmw_plane_state *vps,
299 bool unreference)
300{
301 if (vps->surf) {
302 if (vps->pinned) {
303 vmw_resource_unpin(&vps->surf->res);
304 vps->pinned--;
305 }
306
307 if (unreference) {
308 if (vps->pinned)
309 DRM_ERROR("Surface still pinned\n");
310 vmw_surface_unreference(&vps->surf);
311 }
312 }
313}
314
315
316/**
317 * vmw_du_plane_cleanup_fb - Unpins the cursor
318 *
319 * @plane: display plane
320 * @old_state: Contains the FB to clean up
321 *
322 * Unpins the framebuffer surface
323 *
324 * Returns 0 on success
325 */
326void
327vmw_du_plane_cleanup_fb(struct drm_plane *plane,
328 struct drm_plane_state *old_state)
329{
330 struct vmw_plane_state *vps = vmw_plane_state_to_vps(old_state);
331
332 vmw_du_plane_unpin_surf(vps, false);
333}
334
335
336/**
337 * vmw_du_cursor_plane_prepare_fb - Readies the cursor by referencing it
338 *
339 * @plane: display plane
340 * @new_state: info on the new plane state, including the FB
341 *
342 * Returns 0 on success
343 */
344int
345vmw_du_cursor_plane_prepare_fb(struct drm_plane *plane,
346 struct drm_plane_state *new_state)
347{
348 struct drm_framebuffer *fb = new_state->fb;
349 struct vmw_plane_state *vps = vmw_plane_state_to_vps(new_state);
350
351
352 if (vps->surf)
353 vmw_surface_unreference(&vps->surf);
354
355 if (vps->dmabuf)
356 vmw_dmabuf_unreference(&vps->dmabuf);
357
358 if (fb) {
359 if (vmw_framebuffer_to_vfb(fb)->dmabuf) {
360 vps->dmabuf = vmw_framebuffer_to_vfbd(fb)->buffer;
361 vmw_dmabuf_reference(vps->dmabuf);
362 } else {
363 vps->surf = vmw_framebuffer_to_vfbs(fb)->surface;
364 vmw_surface_reference(vps->surf);
365 }
366 }
367
368 return 0;
369}
370
371
372void
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700373vmw_du_cursor_plane_atomic_update(struct drm_plane *plane,
374 struct drm_plane_state *old_state)
375{
376 struct drm_crtc *crtc = plane->state->crtc ?: old_state->crtc;
377 struct vmw_private *dev_priv = vmw_priv(crtc->dev);
378 struct vmw_display_unit *du = vmw_crtc_to_du(crtc);
379 struct vmw_plane_state *vps = vmw_plane_state_to_vps(plane->state);
380 s32 hotspot_x, hotspot_y;
381 int ret = 0;
382
383
384 hotspot_x = du->hotspot_x;
385 hotspot_y = du->hotspot_y;
Sinclair Yeh14979ad2017-07-17 23:26:21 -0700386
Ville Syrjälä2bb01c42018-03-22 17:23:02 +0200387 if (plane->state->fb) {
388 hotspot_x += plane->state->fb->hot_x;
389 hotspot_y += plane->state->fb->hot_y;
Sinclair Yeh14979ad2017-07-17 23:26:21 -0700390 }
391
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700392 du->cursor_surface = vps->surf;
393 du->cursor_dmabuf = vps->dmabuf;
394
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700395 if (vps->surf) {
396 du->cursor_age = du->cursor_surface->snooper.age;
397
398 ret = vmw_cursor_update_image(dev_priv,
399 vps->surf->snooper.image,
Thomas Hellstrom25db8752018-01-16 08:54:30 +0100400 64, 64, hotspot_x,
401 hotspot_y);
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700402 } else if (vps->dmabuf) {
403 ret = vmw_cursor_update_dmabuf(dev_priv, vps->dmabuf,
404 plane->state->crtc_w,
405 plane->state->crtc_h,
406 hotspot_x, hotspot_y);
407 } else {
408 vmw_cursor_update_position(dev_priv, false, 0, 0);
409 return;
410 }
411
412 if (!ret) {
413 du->cursor_x = plane->state->crtc_x + du->set_gui_x;
414 du->cursor_y = plane->state->crtc_y + du->set_gui_y;
415
416 vmw_cursor_update_position(dev_priv, true,
417 du->cursor_x + hotspot_x,
418 du->cursor_y + hotspot_y);
Sinclair Yeh14979ad2017-07-17 23:26:21 -0700419
420 du->core_hotspot_x = hotspot_x - du->hotspot_x;
421 du->core_hotspot_y = hotspot_y - du->hotspot_y;
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700422 } else {
423 DRM_ERROR("Failed to update cursor image\n");
424 }
425}
426
427
428/**
429 * vmw_du_primary_plane_atomic_check - check if the new state is okay
430 *
431 * @plane: display plane
432 * @state: info on the new plane state, including the FB
433 *
434 * Check if the new state is settable given the current state. Other
435 * than what the atomic helper checks, we care about crtc fitting
436 * the FB and maintaining one active framebuffer.
437 *
438 * Returns 0 on success
439 */
440int vmw_du_primary_plane_atomic_check(struct drm_plane *plane,
441 struct drm_plane_state *state)
442{
Ville Syrjälä58a275aa92017-11-01 20:29:18 +0200443 struct drm_crtc_state *crtc_state = NULL;
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700444 struct drm_framebuffer *new_fb = state->fb;
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700445 int ret;
446
Ville Syrjälä58a275aa92017-11-01 20:29:18 +0200447 if (state->crtc)
448 crtc_state = drm_atomic_get_new_crtc_state(state->state, state->crtc);
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700449
Ville Syrjälä81af63a2018-01-23 19:08:57 +0200450 ret = drm_atomic_helper_check_plane_state(state, crtc_state,
Ville Syrjäläa01cb8b2017-11-01 22:16:19 +0200451 DRM_PLANE_HELPER_NO_SCALING,
452 DRM_PLANE_HELPER_NO_SCALING,
453 false, true);
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700454
455 if (!ret && new_fb) {
456 struct drm_crtc *crtc = state->crtc;
457 struct vmw_connector_state *vcs;
458 struct vmw_display_unit *du = vmw_crtc_to_du(crtc);
459 struct vmw_private *dev_priv = vmw_priv(crtc->dev);
460 struct vmw_framebuffer *vfb = vmw_framebuffer_to_vfb(new_fb);
461
462 vcs = vmw_connector_state_to_vcs(du->connector.state);
463
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700464 /* Only one active implicit framebuffer at a time. */
465 mutex_lock(&dev_priv->global_kms_state_mutex);
466 if (vcs->is_implicit && dev_priv->implicit_fb &&
467 !(dev_priv->num_implicit == 1 && du->active_implicit)
468 && dev_priv->implicit_fb != vfb) {
469 DRM_ERROR("Multiple implicit framebuffers "
470 "not supported.\n");
471 ret = -EINVAL;
472 }
473 mutex_unlock(&dev_priv->global_kms_state_mutex);
474 }
475
476
477 return ret;
478}
479
480
481/**
482 * vmw_du_cursor_plane_atomic_check - check if the new state is okay
483 *
484 * @plane: cursor plane
485 * @state: info on the new plane state
486 *
487 * This is a chance to fail if the new cursor state does not fit
488 * our requirements.
489 *
490 * Returns 0 on success
491 */
492int vmw_du_cursor_plane_atomic_check(struct drm_plane *plane,
493 struct drm_plane_state *new_state)
494{
495 int ret = 0;
496 struct vmw_surface *surface = NULL;
497 struct drm_framebuffer *fb = new_state->fb;
498
Thomas Hellstrom25db8752018-01-16 08:54:30 +0100499 struct drm_rect src = drm_plane_state_src(new_state);
500 struct drm_rect dest = drm_plane_state_dest(new_state);
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700501
502 /* Turning off */
503 if (!fb)
504 return ret;
505
Thomas Hellstrom25db8752018-01-16 08:54:30 +0100506 ret = drm_plane_helper_check_update(plane, new_state->crtc, fb,
507 &src, &dest,
508 DRM_MODE_ROTATE_0,
509 DRM_PLANE_HELPER_NO_SCALING,
510 DRM_PLANE_HELPER_NO_SCALING,
511 true, true, &new_state->visible);
512 if (!ret)
513 return ret;
514
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700515 /* A lot of the code assumes this */
516 if (new_state->crtc_w != 64 || new_state->crtc_h != 64) {
517 DRM_ERROR("Invalid cursor dimensions (%d, %d)\n",
518 new_state->crtc_w, new_state->crtc_h);
519 ret = -EINVAL;
520 }
521
522 if (!vmw_framebuffer_to_vfb(fb)->dmabuf)
523 surface = vmw_framebuffer_to_vfbs(fb)->surface;
524
525 if (surface && !surface->snooper.image) {
526 DRM_ERROR("surface not suitable for cursor\n");
527 ret = -EINVAL;
528 }
529
530 return ret;
531}
532
533
Sinclair Yeh06ec4192017-03-23 13:14:54 -0700534int vmw_du_crtc_atomic_check(struct drm_crtc *crtc,
535 struct drm_crtc_state *new_state)
536{
537 struct vmw_display_unit *du = vmw_crtc_to_du(new_state->crtc);
Ville Syrjäläea632722018-06-26 22:47:16 +0300538 int connector_mask = drm_connector_mask(&du->connector);
Sinclair Yeh06ec4192017-03-23 13:14:54 -0700539 bool has_primary = new_state->plane_mask &
Ville Syrjäläea632722018-06-26 22:47:16 +0300540 drm_plane_mask(crtc->primary);
Sinclair Yeh06ec4192017-03-23 13:14:54 -0700541
542 /* We always want to have an active plane with an active CRTC */
543 if (has_primary != new_state->enable)
544 return -EINVAL;
545
546
547 if (new_state->connector_mask != connector_mask &&
548 new_state->connector_mask != 0) {
549 DRM_ERROR("Invalid connectors configuration\n");
550 return -EINVAL;
551 }
552
553 /*
554 * Our virtual device does not have a dot clock, so use the logical
555 * clock value as the dot clock.
556 */
557 if (new_state->mode.crtc_clock == 0)
558 new_state->adjusted_mode.crtc_clock = new_state->mode.clock;
559
560 return 0;
561}
562
563
564void vmw_du_crtc_atomic_begin(struct drm_crtc *crtc,
565 struct drm_crtc_state *old_crtc_state)
566{
567}
568
569
570void vmw_du_crtc_atomic_flush(struct drm_crtc *crtc,
571 struct drm_crtc_state *old_crtc_state)
572{
573 struct drm_pending_vblank_event *event = crtc->state->event;
574
575 if (event) {
576 crtc->state->event = NULL;
577
578 spin_lock_irq(&crtc->dev->event_lock);
Deepak Rawat3cbe87f2018-01-16 08:27:17 +0100579 drm_crtc_send_vblank_event(crtc, event);
Sinclair Yeh06ec4192017-03-23 13:14:54 -0700580 spin_unlock_irq(&crtc->dev->event_lock);
581 }
Sinclair Yeh06ec4192017-03-23 13:14:54 -0700582}
583
584
Sinclair Yeh9c2542a2017-03-23 11:33:39 -0700585/**
586 * vmw_du_crtc_duplicate_state - duplicate crtc state
587 * @crtc: DRM crtc
588 *
589 * Allocates and returns a copy of the crtc state (both common and
590 * vmw-specific) for the specified crtc.
591 *
592 * Returns: The newly allocated crtc state, or NULL on failure.
593 */
594struct drm_crtc_state *
595vmw_du_crtc_duplicate_state(struct drm_crtc *crtc)
596{
597 struct drm_crtc_state *state;
598 struct vmw_crtc_state *vcs;
599
600 if (WARN_ON(!crtc->state))
601 return NULL;
602
603 vcs = kmemdup(crtc->state, sizeof(*vcs), GFP_KERNEL);
604
605 if (!vcs)
606 return NULL;
607
608 state = &vcs->base;
609
610 __drm_atomic_helper_crtc_duplicate_state(crtc, state);
611
612 return state;
613}
614
615
616/**
617 * vmw_du_crtc_reset - creates a blank vmw crtc state
618 * @crtc: DRM crtc
619 *
620 * Resets the atomic state for @crtc by freeing the state pointer (which
621 * might be NULL, e.g. at driver load time) and allocating a new empty state
622 * object.
623 */
624void vmw_du_crtc_reset(struct drm_crtc *crtc)
625{
626 struct vmw_crtc_state *vcs;
627
628
629 if (crtc->state) {
630 __drm_atomic_helper_crtc_destroy_state(crtc->state);
631
632 kfree(vmw_crtc_state_to_vcs(crtc->state));
633 }
634
635 vcs = kzalloc(sizeof(*vcs), GFP_KERNEL);
636
637 if (!vcs) {
638 DRM_ERROR("Cannot allocate vmw_crtc_state\n");
639 return;
640 }
641
642 crtc->state = &vcs->base;
643 crtc->state->crtc = crtc;
644}
645
646
647/**
648 * vmw_du_crtc_destroy_state - destroy crtc state
649 * @crtc: DRM crtc
650 * @state: state object to destroy
651 *
652 * Destroys the crtc state (both common and vmw-specific) for the
653 * specified plane.
654 */
655void
656vmw_du_crtc_destroy_state(struct drm_crtc *crtc,
657 struct drm_crtc_state *state)
658{
659 drm_atomic_helper_crtc_destroy_state(crtc, state);
660}
661
662
Sinclair Yehcc5ec452017-03-23 11:36:05 -0700663/**
664 * vmw_du_plane_duplicate_state - duplicate plane state
665 * @plane: drm plane
666 *
667 * Allocates and returns a copy of the plane state (both common and
668 * vmw-specific) for the specified plane.
669 *
670 * Returns: The newly allocated plane state, or NULL on failure.
671 */
672struct drm_plane_state *
673vmw_du_plane_duplicate_state(struct drm_plane *plane)
674{
675 struct drm_plane_state *state;
676 struct vmw_plane_state *vps;
677
678 vps = kmemdup(plane->state, sizeof(*vps), GFP_KERNEL);
679
680 if (!vps)
681 return NULL;
682
683 vps->pinned = 0;
Sinclair Yeh810b3e162017-03-23 15:39:16 -0700684 vps->cpp = 0;
685
Sinclair Yehcc5ec452017-03-23 11:36:05 -0700686 /* Each ref counted resource needs to be acquired again */
687 if (vps->surf)
688 (void) vmw_surface_reference(vps->surf);
689
690 if (vps->dmabuf)
691 (void) vmw_dmabuf_reference(vps->dmabuf);
692
693 state = &vps->base;
694
695 __drm_atomic_helper_plane_duplicate_state(plane, state);
696
697 return state;
698}
699
700
701/**
702 * vmw_du_plane_reset - creates a blank vmw plane state
703 * @plane: drm plane
704 *
705 * Resets the atomic state for @plane by freeing the state pointer (which might
706 * be NULL, e.g. at driver load time) and allocating a new empty state object.
707 */
708void vmw_du_plane_reset(struct drm_plane *plane)
709{
710 struct vmw_plane_state *vps;
711
712
713 if (plane->state)
714 vmw_du_plane_destroy_state(plane, plane->state);
715
716 vps = kzalloc(sizeof(*vps), GFP_KERNEL);
717
718 if (!vps) {
719 DRM_ERROR("Cannot allocate vmw_plane_state\n");
720 return;
721 }
722
Alexandru Gheorghee81eb982018-08-04 17:15:30 +0100723 __drm_atomic_helper_plane_reset(plane, &vps->base);
Sinclair Yehcc5ec452017-03-23 11:36:05 -0700724}
725
726
727/**
728 * vmw_du_plane_destroy_state - destroy plane state
729 * @plane: DRM plane
730 * @state: state object to destroy
731 *
732 * Destroys the plane state (both common and vmw-specific) for the
733 * specified plane.
734 */
735void
736vmw_du_plane_destroy_state(struct drm_plane *plane,
737 struct drm_plane_state *state)
738{
739 struct vmw_plane_state *vps = vmw_plane_state_to_vps(state);
740
741
Sinclair Yeh810b3e162017-03-23 15:39:16 -0700742 /* Should have been freed by cleanup_fb */
Sinclair Yehcc5ec452017-03-23 11:36:05 -0700743 if (vps->surf)
744 vmw_surface_unreference(&vps->surf);
745
746 if (vps->dmabuf)
747 vmw_dmabuf_unreference(&vps->dmabuf);
748
749 drm_atomic_helper_plane_destroy_state(plane, state);
750}
751
752
Sinclair Yehd7721ca2017-03-23 11:48:44 -0700753/**
754 * vmw_du_connector_duplicate_state - duplicate connector state
755 * @connector: DRM connector
756 *
757 * Allocates and returns a copy of the connector state (both common and
758 * vmw-specific) for the specified connector.
759 *
760 * Returns: The newly allocated connector state, or NULL on failure.
761 */
762struct drm_connector_state *
763vmw_du_connector_duplicate_state(struct drm_connector *connector)
764{
765 struct drm_connector_state *state;
766 struct vmw_connector_state *vcs;
767
768 if (WARN_ON(!connector->state))
769 return NULL;
770
771 vcs = kmemdup(connector->state, sizeof(*vcs), GFP_KERNEL);
772
773 if (!vcs)
774 return NULL;
775
776 state = &vcs->base;
777
778 __drm_atomic_helper_connector_duplicate_state(connector, state);
779
780 return state;
781}
782
783
784/**
785 * vmw_du_connector_reset - creates a blank vmw connector state
786 * @connector: DRM connector
787 *
788 * Resets the atomic state for @connector by freeing the state pointer (which
789 * might be NULL, e.g. at driver load time) and allocating a new empty state
790 * object.
791 */
792void vmw_du_connector_reset(struct drm_connector *connector)
793{
794 struct vmw_connector_state *vcs;
795
796
797 if (connector->state) {
798 __drm_atomic_helper_connector_destroy_state(connector->state);
799
800 kfree(vmw_connector_state_to_vcs(connector->state));
801 }
802
803 vcs = kzalloc(sizeof(*vcs), GFP_KERNEL);
804
805 if (!vcs) {
806 DRM_ERROR("Cannot allocate vmw_connector_state\n");
807 return;
808 }
809
810 __drm_atomic_helper_connector_reset(connector, &vcs->base);
811}
812
813
814/**
815 * vmw_du_connector_destroy_state - destroy connector state
816 * @connector: DRM connector
817 * @state: state object to destroy
818 *
819 * Destroys the connector state (both common and vmw-specific) for the
820 * specified plane.
821 */
822void
823vmw_du_connector_destroy_state(struct drm_connector *connector,
824 struct drm_connector_state *state)
825{
826 drm_atomic_helper_connector_destroy_state(connector, state);
827}
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000828/*
829 * Generic framebuffer code
830 */
831
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000832/*
833 * Surface framebuffer code
834 */
835
Rashika Kheria847c5962014-01-06 22:18:10 +0530836static void vmw_framebuffer_surface_destroy(struct drm_framebuffer *framebuffer)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000837{
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200838 struct vmw_framebuffer_surface *vfbs =
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000839 vmw_framebuffer_to_vfbs(framebuffer);
840
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000841 drm_framebuffer_cleanup(framebuffer);
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200842 vmw_surface_unreference(&vfbs->surface);
Thomas Hellstroma2787242015-06-29 12:55:07 -0700843 if (vfbs->base.user_obj)
844 ttm_base_object_unref(&vfbs->base.user_obj);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000845
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200846 kfree(vfbs);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000847}
848
Rashika Kheria847c5962014-01-06 22:18:10 +0530849static int vmw_framebuffer_surface_dirty(struct drm_framebuffer *framebuffer,
Thomas Hellstrom02b00162010-10-05 12:43:02 +0200850 struct drm_file *file_priv,
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000851 unsigned flags, unsigned color,
852 struct drm_clip_rect *clips,
853 unsigned num_clips)
854{
855 struct vmw_private *dev_priv = vmw_priv(framebuffer->dev);
856 struct vmw_framebuffer_surface *vfbs =
857 vmw_framebuffer_to_vfbs(framebuffer);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000858 struct drm_clip_rect norect;
Jakob Bornecrantz5deb65c2011-10-04 20:13:18 +0200859 int ret, inc = 1;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000860
Sinclair Yehc8261a92015-06-26 01:23:42 -0700861 /* Legacy Display Unit does not support 3D */
862 if (dev_priv->active_display_unit == vmw_du_legacy)
Jakob Bornecrantz01e81412011-10-04 20:13:24 +0200863 return -EINVAL;
864
Ville Syrjälä73e9efd2013-12-04 14:13:58 +0200865 drm_modeset_lock_all(dev_priv->dev);
866
Thomas Hellstrom294adf72014-02-27 12:34:51 +0100867 ret = ttm_read_lock(&dev_priv->reservation_sem, true);
Ville Syrjälä73e9efd2013-12-04 14:13:58 +0200868 if (unlikely(ret != 0)) {
869 drm_modeset_unlock_all(dev_priv->dev);
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200870 return ret;
Ville Syrjälä73e9efd2013-12-04 14:13:58 +0200871 }
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200872
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000873 if (!num_clips) {
874 num_clips = 1;
875 clips = &norect;
876 norect.x1 = norect.y1 = 0;
877 norect.x2 = framebuffer->width;
878 norect.y2 = framebuffer->height;
879 } else if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY) {
880 num_clips /= 2;
881 inc = 2; /* skip source rects */
882 }
883
Sinclair Yehc8261a92015-06-26 01:23:42 -0700884 if (dev_priv->active_display_unit == vmw_du_screen_object)
Thomas Hellstrom10b1e0c2015-06-26 02:14:27 -0700885 ret = vmw_kms_sou_do_surface_dirty(dev_priv, &vfbs->base,
886 clips, NULL, NULL, 0, 0,
Deepak Rawat91e9f352018-01-16 08:24:17 +0100887 num_clips, inc, NULL, NULL);
Sinclair Yeh35c05122015-06-26 01:42:06 -0700888 else
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -0700889 ret = vmw_kms_stdu_surface_dirty(dev_priv, &vfbs->base,
890 clips, NULL, NULL, 0, 0,
Deepak Rawat91e9f352018-01-16 08:24:17 +0100891 num_clips, inc, NULL, NULL);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000892
Thomas Hellstrom3eab3d92015-06-25 11:57:56 -0700893 vmw_fifo_flush(dev_priv, false);
Thomas Hellstrom294adf72014-02-27 12:34:51 +0100894 ttm_read_unlock(&dev_priv->reservation_sem);
Ville Syrjälä73e9efd2013-12-04 14:13:58 +0200895
896 drm_modeset_unlock_all(dev_priv->dev);
897
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000898 return 0;
899}
900
Thomas Hellstrom10b1e0c2015-06-26 02:14:27 -0700901/**
902 * vmw_kms_readback - Perform a readback from the screen system to
903 * a dma-buffer backed framebuffer.
904 *
905 * @dev_priv: Pointer to the device private structure.
906 * @file_priv: Pointer to a struct drm_file identifying the caller.
907 * Must be set to NULL if @user_fence_rep is NULL.
908 * @vfb: Pointer to the dma-buffer backed framebuffer.
909 * @user_fence_rep: User-space provided structure for fence information.
910 * Must be set to non-NULL if @file_priv is non-NULL.
911 * @vclips: Array of clip rects.
912 * @num_clips: Number of clip rects in @vclips.
913 *
914 * Returns 0 on success, negative error code on failure. -ERESTARTSYS if
915 * interrupted.
916 */
917int vmw_kms_readback(struct vmw_private *dev_priv,
918 struct drm_file *file_priv,
919 struct vmw_framebuffer *vfb,
920 struct drm_vmw_fence_rep __user *user_fence_rep,
921 struct drm_vmw_rect *vclips,
922 uint32_t num_clips)
923{
924 switch (dev_priv->active_display_unit) {
925 case vmw_du_screen_object:
926 return vmw_kms_sou_readback(dev_priv, file_priv, vfb,
Deepak Rawat91e9f352018-01-16 08:24:17 +0100927 user_fence_rep, vclips, num_clips,
928 NULL);
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -0700929 case vmw_du_screen_target:
930 return vmw_kms_stdu_dma(dev_priv, file_priv, vfb,
931 user_fence_rep, NULL, vclips, num_clips,
Deepak Rawat91e9f352018-01-16 08:24:17 +0100932 1, false, true, NULL);
Thomas Hellstrom10b1e0c2015-06-26 02:14:27 -0700933 default:
934 WARN_ONCE(true,
935 "Readback called with invalid display system.\n");
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -0700936}
Thomas Hellstrom10b1e0c2015-06-26 02:14:27 -0700937
938 return -ENOSYS;
939}
940
941
Ville Syrjäläd7955fc2015-12-15 12:21:15 +0100942static const struct drm_framebuffer_funcs vmw_framebuffer_surface_funcs = {
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000943 .destroy = vmw_framebuffer_surface_destroy,
944 .dirty = vmw_framebuffer_surface_dirty,
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000945};
946
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200947static int vmw_kms_new_framebuffer_surface(struct vmw_private *dev_priv,
948 struct vmw_surface *surface,
949 struct vmw_framebuffer **out,
Daniel Vetterdabdcdc2016-12-02 08:07:40 +0100950 const struct drm_mode_fb_cmd2
Sinclair Yehf89c6c32015-06-26 01:54:28 -0700951 *mode_cmd,
952 bool is_dmabuf_proxy)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000953
954{
955 struct drm_device *dev = dev_priv->dev;
956 struct vmw_framebuffer_surface *vfbs;
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200957 enum SVGA3dSurfaceFormat format;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000958 int ret;
Daniel Vetterdabdcdc2016-12-02 08:07:40 +0100959 struct drm_format_name_buf format_name;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000960
Sinclair Yehc8261a92015-06-26 01:23:42 -0700961 /* 3D is only supported on HWv8 and newer hosts */
962 if (dev_priv->active_display_unit == vmw_du_legacy)
Jakob Bornecrantz01e81412011-10-04 20:13:24 +0200963 return -ENOSYS;
964
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200965 /*
966 * Sanity checks.
967 */
968
Jakob Bornecrantze7ac9212011-11-28 13:19:12 +0100969 /* Surface must be marked as a scanout. */
970 if (unlikely(!surface->scanout))
971 return -EINVAL;
972
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200973 if (unlikely(surface->mip_levels[0] != 1 ||
974 surface->num_sizes != 1 ||
Thomas Hellstromb360a3c2014-01-15 08:51:36 +0100975 surface->base_size.width < mode_cmd->width ||
976 surface->base_size.height < mode_cmd->height ||
977 surface->base_size.depth != 1)) {
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200978 DRM_ERROR("Incompatible surface dimensions "
979 "for requested mode.\n");
980 return -EINVAL;
981 }
982
Daniel Vetterdabdcdc2016-12-02 08:07:40 +0100983 switch (mode_cmd->pixel_format) {
984 case DRM_FORMAT_ARGB8888:
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200985 format = SVGA3D_A8R8G8B8;
986 break;
Daniel Vetterdabdcdc2016-12-02 08:07:40 +0100987 case DRM_FORMAT_XRGB8888:
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200988 format = SVGA3D_X8R8G8B8;
989 break;
Daniel Vetterdabdcdc2016-12-02 08:07:40 +0100990 case DRM_FORMAT_RGB565:
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200991 format = SVGA3D_R5G6B5;
992 break;
Daniel Vetterdabdcdc2016-12-02 08:07:40 +0100993 case DRM_FORMAT_XRGB1555:
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200994 format = SVGA3D_A1R5G5B5;
995 break;
996 default:
Daniel Vetterdabdcdc2016-12-02 08:07:40 +0100997 DRM_ERROR("Invalid pixel format: %s\n",
998 drm_get_format_name(mode_cmd->pixel_format, &format_name));
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200999 return -EINVAL;
1000 }
1001
Thomas Hellstromd80efd52015-08-10 10:39:35 -07001002 /*
1003 * For DX, surface format validation is done when surface->scanout
1004 * is set.
1005 */
1006 if (!dev_priv->has_dx && format != surface->format) {
Thomas Hellstromd3216a02010-10-05 12:42:59 +02001007 DRM_ERROR("Invalid surface format for requested mode.\n");
1008 return -EINVAL;
1009 }
1010
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001011 vfbs = kzalloc(sizeof(*vfbs), GFP_KERNEL);
1012 if (!vfbs) {
1013 ret = -ENOMEM;
1014 goto out_err1;
1015 }
1016
Ville Syrjäläa3f913c2016-12-14 22:48:59 +02001017 drm_helper_mode_fill_fb_struct(dev, &vfbs->base.base, mode_cmd);
Sinclair Yeh05c95012015-08-11 22:53:39 -07001018 vfbs->surface = vmw_surface_reference(surface);
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001019 vfbs->base.user_handle = mode_cmd->handles[0];
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001020 vfbs->is_dmabuf_proxy = is_dmabuf_proxy;
Thomas Hellstrom3a939a52010-10-05 12:43:03 +02001021
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001022 *out = &vfbs->base;
1023
Daniel Vetter80f0b5a2012-12-13 23:39:01 +01001024 ret = drm_framebuffer_init(dev, &vfbs->base.base,
1025 &vmw_framebuffer_surface_funcs);
1026 if (ret)
Sinclair Yeh05c95012015-08-11 22:53:39 -07001027 goto out_err2;
Daniel Vetter80f0b5a2012-12-13 23:39:01 +01001028
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001029 return 0;
1030
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001031out_err2:
Sinclair Yeh05c95012015-08-11 22:53:39 -07001032 vmw_surface_unreference(&surface);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001033 kfree(vfbs);
1034out_err1:
1035 return ret;
1036}
1037
1038/*
1039 * Dmabuf framebuffer code
1040 */
1041
Rashika Kheria847c5962014-01-06 22:18:10 +05301042static void vmw_framebuffer_dmabuf_destroy(struct drm_framebuffer *framebuffer)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001043{
1044 struct vmw_framebuffer_dmabuf *vfbd =
1045 vmw_framebuffer_to_vfbd(framebuffer);
1046
1047 drm_framebuffer_cleanup(framebuffer);
1048 vmw_dmabuf_unreference(&vfbd->buffer);
Thomas Hellstroma2787242015-06-29 12:55:07 -07001049 if (vfbd->base.user_obj)
1050 ttm_base_object_unref(&vfbd->base.user_obj);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001051
1052 kfree(vfbd);
1053}
1054
Rashika Kheria847c5962014-01-06 22:18:10 +05301055static int vmw_framebuffer_dmabuf_dirty(struct drm_framebuffer *framebuffer,
Thomas Hellstrom02b00162010-10-05 12:43:02 +02001056 struct drm_file *file_priv,
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001057 unsigned flags, unsigned color,
1058 struct drm_clip_rect *clips,
1059 unsigned num_clips)
1060{
1061 struct vmw_private *dev_priv = vmw_priv(framebuffer->dev);
Jakob Bornecrantz5deb65c2011-10-04 20:13:18 +02001062 struct vmw_framebuffer_dmabuf *vfbd =
1063 vmw_framebuffer_to_vfbd(framebuffer);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001064 struct drm_clip_rect norect;
Jakob Bornecrantz5deb65c2011-10-04 20:13:18 +02001065 int ret, increment = 1;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001066
Ville Syrjälä73e9efd2013-12-04 14:13:58 +02001067 drm_modeset_lock_all(dev_priv->dev);
1068
Thomas Hellstrom294adf72014-02-27 12:34:51 +01001069 ret = ttm_read_lock(&dev_priv->reservation_sem, true);
Ville Syrjälä73e9efd2013-12-04 14:13:58 +02001070 if (unlikely(ret != 0)) {
1071 drm_modeset_unlock_all(dev_priv->dev);
Thomas Hellstrom3a939a52010-10-05 12:43:03 +02001072 return ret;
Ville Syrjälä73e9efd2013-12-04 14:13:58 +02001073 }
Thomas Hellstrom3a939a52010-10-05 12:43:03 +02001074
Thomas Hellstromdf1c93b2010-01-13 22:28:36 +01001075 if (!num_clips) {
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001076 num_clips = 1;
1077 clips = &norect;
1078 norect.x1 = norect.y1 = 0;
1079 norect.x2 = framebuffer->width;
1080 norect.y2 = framebuffer->height;
1081 } else if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY) {
1082 num_clips /= 2;
1083 increment = 2;
1084 }
1085
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001086 switch (dev_priv->active_display_unit) {
1087 case vmw_du_screen_target:
1088 ret = vmw_kms_stdu_dma(dev_priv, NULL, &vfbd->base, NULL,
1089 clips, NULL, num_clips, increment,
Deepak Rawat91e9f352018-01-16 08:24:17 +01001090 true, true, NULL);
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001091 break;
1092 case vmw_du_screen_object:
Thomas Hellstrom10b1e0c2015-06-26 02:14:27 -07001093 ret = vmw_kms_sou_do_dmabuf_dirty(dev_priv, &vfbd->base,
Thomas Hellstrom897b8182016-02-12 08:32:08 +01001094 clips, NULL, num_clips,
Deepak Rawat91e9f352018-01-16 08:24:17 +01001095 increment, true, NULL, NULL);
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001096 break;
Thomas Hellstrom352b20dc2015-06-29 12:57:37 -07001097 case vmw_du_legacy:
1098 ret = vmw_kms_ldu_do_dmabuf_dirty(dev_priv, &vfbd->base, 0, 0,
1099 clips, num_clips, increment);
1100 break;
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001101 default:
Thomas Hellstrom352b20dc2015-06-29 12:57:37 -07001102 ret = -EINVAL;
1103 WARN_ONCE(true, "Dirty called with invalid display system.\n");
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001104 break;
Jakob Bornecrantz56d1c782011-10-04 20:13:22 +02001105 }
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001106
Thomas Hellstrom3eab3d92015-06-25 11:57:56 -07001107 vmw_fifo_flush(dev_priv, false);
Thomas Hellstrom294adf72014-02-27 12:34:51 +01001108 ttm_read_unlock(&dev_priv->reservation_sem);
Ville Syrjälä73e9efd2013-12-04 14:13:58 +02001109
1110 drm_modeset_unlock_all(dev_priv->dev);
1111
Jakob Bornecrantz5deb65c2011-10-04 20:13:18 +02001112 return ret;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001113}
1114
Ville Syrjäläd7955fc2015-12-15 12:21:15 +01001115static const struct drm_framebuffer_funcs vmw_framebuffer_dmabuf_funcs = {
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001116 .destroy = vmw_framebuffer_dmabuf_destroy,
1117 .dirty = vmw_framebuffer_dmabuf_dirty,
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001118};
1119
Jakob Bornecrantz497a3ff2011-10-04 20:13:14 +02001120/**
Thomas Hellstromef86cfe2018-01-16 11:07:30 +01001121 * Pin the dmabuffer in a location suitable for access by the
1122 * display system.
Jakob Bornecrantz497a3ff2011-10-04 20:13:14 +02001123 */
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001124static int vmw_framebuffer_pin(struct vmw_framebuffer *vfb)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001125{
1126 struct vmw_private *dev_priv = vmw_priv(vfb->base.dev);
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001127 struct vmw_dma_buffer *buf;
Thomas Hellstromef86cfe2018-01-16 11:07:30 +01001128 struct ttm_placement *placement;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001129 int ret;
1130
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001131 buf = vfb->dmabuf ? vmw_framebuffer_to_vfbd(&vfb->base)->buffer :
1132 vmw_framebuffer_to_vfbs(&vfb->base)->surface->res.backup;
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +02001133
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001134 if (!buf)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001135 return 0;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001136
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001137 switch (dev_priv->active_display_unit) {
1138 case vmw_du_legacy:
1139 vmw_overlay_pause_all(dev_priv);
1140 ret = vmw_dmabuf_pin_in_start_of_vram(dev_priv, buf, false);
1141 vmw_overlay_resume_all(dev_priv);
1142 break;
1143 case vmw_du_screen_object:
1144 case vmw_du_screen_target:
Thomas Hellstromef86cfe2018-01-16 11:07:30 +01001145 if (vfb->dmabuf) {
1146 if (dev_priv->capabilities & SVGA_CAP_3D) {
1147 /*
1148 * Use surface DMA to get content to
1149 * sreen target surface.
1150 */
1151 placement = &vmw_vram_gmr_placement;
1152 } else {
1153 /* Use CPU blit. */
1154 placement = &vmw_sys_placement;
1155 }
1156 } else {
1157 /* Use surface / image update */
1158 placement = &vmw_mob_placement;
1159 }
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001160
Thomas Hellstromef86cfe2018-01-16 11:07:30 +01001161 return vmw_dmabuf_pin_in_placement(dev_priv, buf, placement,
1162 false);
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001163 default:
1164 return -EINVAL;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001165 }
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001166
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001167 return ret;
1168}
1169
1170static int vmw_framebuffer_unpin(struct vmw_framebuffer *vfb)
1171{
1172 struct vmw_private *dev_priv = vmw_priv(vfb->base.dev);
1173 struct vmw_dma_buffer *buf;
1174
1175 buf = vfb->dmabuf ? vmw_framebuffer_to_vfbd(&vfb->base)->buffer :
1176 vmw_framebuffer_to_vfbs(&vfb->base)->surface->res.backup;
1177
1178 if (WARN_ON(!buf))
1179 return 0;
1180
1181 return vmw_dmabuf_unpin(dev_priv, buf, false);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001182}
1183
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001184/**
1185 * vmw_create_dmabuf_proxy - create a proxy surface for the DMA buf
1186 *
1187 * @dev: DRM device
1188 * @mode_cmd: parameters for the new surface
1189 * @dmabuf_mob: MOB backing the DMA buf
1190 * @srf_out: newly created surface
1191 *
1192 * When the content FB is a DMA buf, we create a surface as a proxy to the
1193 * same buffer. This way we can do a surface copy rather than a surface DMA.
1194 * This is a more efficient approach
1195 *
1196 * RETURNS:
1197 * 0 on success, error code otherwise
1198 */
1199static int vmw_create_dmabuf_proxy(struct drm_device *dev,
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001200 const struct drm_mode_fb_cmd2 *mode_cmd,
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001201 struct vmw_dma_buffer *dmabuf_mob,
1202 struct vmw_surface **srf_out)
1203{
1204 uint32_t format;
Thomas Hellstrom8cd9f252017-01-19 10:53:02 -08001205 struct drm_vmw_size content_base_size = {0};
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001206 struct vmw_resource *res;
Thomas Hellstroma50e2bf2016-01-08 20:29:40 +01001207 unsigned int bytes_pp;
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001208 struct drm_format_name_buf format_name;
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001209 int ret;
1210
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001211 switch (mode_cmd->pixel_format) {
1212 case DRM_FORMAT_ARGB8888:
1213 case DRM_FORMAT_XRGB8888:
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001214 format = SVGA3D_X8R8G8B8;
Thomas Hellstroma50e2bf2016-01-08 20:29:40 +01001215 bytes_pp = 4;
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001216 break;
1217
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001218 case DRM_FORMAT_RGB565:
1219 case DRM_FORMAT_XRGB1555:
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001220 format = SVGA3D_R5G6B5;
Thomas Hellstroma50e2bf2016-01-08 20:29:40 +01001221 bytes_pp = 2;
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001222 break;
1223
1224 case 8:
1225 format = SVGA3D_P8;
Thomas Hellstroma50e2bf2016-01-08 20:29:40 +01001226 bytes_pp = 1;
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001227 break;
1228
1229 default:
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001230 DRM_ERROR("Invalid framebuffer format %s\n",
1231 drm_get_format_name(mode_cmd->pixel_format, &format_name));
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001232 return -EINVAL;
1233 }
1234
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001235 content_base_size.width = mode_cmd->pitches[0] / bytes_pp;
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001236 content_base_size.height = mode_cmd->height;
1237 content_base_size.depth = 1;
1238
1239 ret = vmw_surface_gb_priv_define(dev,
1240 0, /* kernel visible only */
1241 0, /* flags */
1242 format,
1243 true, /* can be a scanout buffer */
1244 1, /* num of mip levels */
1245 0,
Thomas Hellstromd80efd52015-08-10 10:39:35 -07001246 0,
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001247 content_base_size,
1248 srf_out);
1249 if (ret) {
1250 DRM_ERROR("Failed to allocate proxy content buffer\n");
1251 return ret;
1252 }
1253
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001254 res = &(*srf_out)->res;
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001255
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001256 /* Reserve and switch the backing mob. */
1257 mutex_lock(&res->dev_priv->cmdbuf_mutex);
1258 (void) vmw_resource_reserve(res, false, true);
1259 vmw_dmabuf_unreference(&res->backup);
1260 res->backup = vmw_dmabuf_reference(dmabuf_mob);
1261 res->backup_offset = 0;
Thomas Hellstromd80efd52015-08-10 10:39:35 -07001262 vmw_resource_unreserve(res, false, NULL, 0);
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001263 mutex_unlock(&res->dev_priv->cmdbuf_mutex);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001264
1265 return 0;
1266}
1267
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001268
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001269
Thomas Hellstromd3216a02010-10-05 12:42:59 +02001270static int vmw_kms_new_framebuffer_dmabuf(struct vmw_private *dev_priv,
1271 struct vmw_dma_buffer *dmabuf,
1272 struct vmw_framebuffer **out,
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001273 const struct drm_mode_fb_cmd2
Thomas Hellstromd3216a02010-10-05 12:42:59 +02001274 *mode_cmd)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001275
1276{
1277 struct drm_device *dev = dev_priv->dev;
1278 struct vmw_framebuffer_dmabuf *vfbd;
Thomas Hellstromd3216a02010-10-05 12:42:59 +02001279 unsigned int requested_size;
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001280 struct drm_format_name_buf format_name;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001281 int ret;
1282
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001283 requested_size = mode_cmd->height * mode_cmd->pitches[0];
Thomas Hellstromd3216a02010-10-05 12:42:59 +02001284 if (unlikely(requested_size > dmabuf->base.num_pages * PAGE_SIZE)) {
1285 DRM_ERROR("Screen buffer object size is too small "
1286 "for requested mode.\n");
1287 return -EINVAL;
1288 }
1289
Jakob Bornecrantzc337ada2011-10-04 20:13:34 +02001290 /* Limited framebuffer color depth support for screen objects */
Sinclair Yehc8261a92015-06-26 01:23:42 -07001291 if (dev_priv->active_display_unit == vmw_du_screen_object) {
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001292 switch (mode_cmd->pixel_format) {
1293 case DRM_FORMAT_XRGB8888:
1294 case DRM_FORMAT_ARGB8888:
1295 break;
1296 case DRM_FORMAT_XRGB1555:
1297 case DRM_FORMAT_RGB565:
1298 break;
Jakob Bornecrantzc337ada2011-10-04 20:13:34 +02001299 default:
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001300 DRM_ERROR("Invalid pixel format: %s\n",
1301 drm_get_format_name(mode_cmd->pixel_format, &format_name));
Jakob Bornecrantzc337ada2011-10-04 20:13:34 +02001302 return -EINVAL;
1303 }
1304 }
1305
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001306 vfbd = kzalloc(sizeof(*vfbd), GFP_KERNEL);
1307 if (!vfbd) {
1308 ret = -ENOMEM;
1309 goto out_err1;
1310 }
1311
Ville Syrjäläa3f913c2016-12-14 22:48:59 +02001312 drm_helper_mode_fill_fb_struct(dev, &vfbd->base.base, mode_cmd);
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +02001313 vfbd->base.dmabuf = true;
Sinclair Yeh05c95012015-08-11 22:53:39 -07001314 vfbd->buffer = vmw_dmabuf_reference(dmabuf);
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001315 vfbd->base.user_handle = mode_cmd->handles[0];
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001316 *out = &vfbd->base;
1317
Daniel Vetter80f0b5a2012-12-13 23:39:01 +01001318 ret = drm_framebuffer_init(dev, &vfbd->base.base,
1319 &vmw_framebuffer_dmabuf_funcs);
1320 if (ret)
Sinclair Yeh05c95012015-08-11 22:53:39 -07001321 goto out_err2;
Daniel Vetter80f0b5a2012-12-13 23:39:01 +01001322
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001323 return 0;
1324
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001325out_err2:
Sinclair Yeh05c95012015-08-11 22:53:39 -07001326 vmw_dmabuf_unreference(&dmabuf);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001327 kfree(vfbd);
1328out_err1:
1329 return ret;
1330}
1331
Sinclair Yeh810b3e162017-03-23 15:39:16 -07001332
1333/**
1334 * vmw_kms_srf_ok - check if a surface can be created
1335 *
1336 * @width: requested width
1337 * @height: requested height
1338 *
1339 * Surfaces need to be less than texture size
1340 */
1341static bool
1342vmw_kms_srf_ok(struct vmw_private *dev_priv, uint32_t width, uint32_t height)
1343{
1344 if (width > dev_priv->texture_max_width ||
1345 height > dev_priv->texture_max_height)
1346 return false;
1347
1348 return true;
1349}
1350
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001351/**
1352 * vmw_kms_new_framebuffer - Create a new framebuffer.
1353 *
1354 * @dev_priv: Pointer to device private struct.
1355 * @dmabuf: Pointer to dma buffer to wrap the kms framebuffer around.
1356 * Either @dmabuf or @surface must be NULL.
1357 * @surface: Pointer to a surface to wrap the kms framebuffer around.
1358 * Either @dmabuf or @surface must be NULL.
1359 * @only_2d: No presents will occur to this dma buffer based framebuffer. This
1360 * Helps the code to do some important optimizations.
1361 * @mode_cmd: Frame-buffer metadata.
1362 */
1363struct vmw_framebuffer *
1364vmw_kms_new_framebuffer(struct vmw_private *dev_priv,
1365 struct vmw_dma_buffer *dmabuf,
1366 struct vmw_surface *surface,
1367 bool only_2d,
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001368 const struct drm_mode_fb_cmd2 *mode_cmd)
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001369{
Sinclair Yeh05c95012015-08-11 22:53:39 -07001370 struct vmw_framebuffer *vfb = NULL;
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001371 bool is_dmabuf_proxy = false;
1372 int ret;
1373
1374 /*
1375 * We cannot use the SurfaceDMA command in an non-accelerated VM,
1376 * therefore, wrap the DMA buf in a surface so we can use the
1377 * SurfaceCopy command.
1378 */
Sinclair Yeh810b3e162017-03-23 15:39:16 -07001379 if (vmw_kms_srf_ok(dev_priv, mode_cmd->width, mode_cmd->height) &&
1380 dmabuf && only_2d &&
Sinclair Yehbbd5fef2017-06-02 07:44:53 +02001381 mode_cmd->width > 64 && /* Don't create a proxy for cursor */
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001382 dev_priv->active_display_unit == vmw_du_screen_target) {
1383 ret = vmw_create_dmabuf_proxy(dev_priv->dev, mode_cmd,
1384 dmabuf, &surface);
1385 if (ret)
1386 return ERR_PTR(ret);
1387
1388 is_dmabuf_proxy = true;
1389 }
1390
1391 /* Create the new framebuffer depending one what we have */
Sinclair Yeh05c95012015-08-11 22:53:39 -07001392 if (surface) {
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001393 ret = vmw_kms_new_framebuffer_surface(dev_priv, surface, &vfb,
1394 mode_cmd,
1395 is_dmabuf_proxy);
Sinclair Yeh05c95012015-08-11 22:53:39 -07001396
1397 /*
1398 * vmw_create_dmabuf_proxy() adds a reference that is no longer
1399 * needed
1400 */
1401 if (is_dmabuf_proxy)
1402 vmw_surface_unreference(&surface);
1403 } else if (dmabuf) {
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001404 ret = vmw_kms_new_framebuffer_dmabuf(dev_priv, dmabuf, &vfb,
1405 mode_cmd);
Sinclair Yeh05c95012015-08-11 22:53:39 -07001406 } else {
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001407 BUG();
Sinclair Yeh05c95012015-08-11 22:53:39 -07001408 }
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001409
1410 if (ret)
1411 return ERR_PTR(ret);
1412
1413 vfb->pin = vmw_framebuffer_pin;
1414 vfb->unpin = vmw_framebuffer_unpin;
1415
1416 return vfb;
1417}
1418
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001419/*
1420 * Generic Kernel modesetting functions
1421 */
1422
1423static struct drm_framebuffer *vmw_kms_fb_create(struct drm_device *dev,
1424 struct drm_file *file_priv,
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001425 const struct drm_mode_fb_cmd2 *mode_cmd)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001426{
1427 struct vmw_private *dev_priv = vmw_priv(dev);
1428 struct ttm_object_file *tfile = vmw_fpriv(file_priv)->tfile;
1429 struct vmw_framebuffer *vfb = NULL;
1430 struct vmw_surface *surface = NULL;
1431 struct vmw_dma_buffer *bo = NULL;
Thomas Hellstrom90ff18b2011-10-04 20:13:32 +02001432 struct ttm_base_object *user_obj;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001433 int ret;
1434
Thomas Hellstromd3216a02010-10-05 12:42:59 +02001435 /**
1436 * This code should be conditioned on Screen Objects not being used.
1437 * If screen objects are used, we can allocate a GMR to hold the
1438 * requested framebuffer.
1439 */
1440
Xi Wang8a783892011-12-21 05:18:33 -05001441 if (!vmw_kms_validate_mode_vram(dev_priv,
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001442 mode_cmd->pitches[0],
1443 mode_cmd->height)) {
Sinclair Yehc8261a92015-06-26 01:23:42 -07001444 DRM_ERROR("Requested mode exceed bounding box limit.\n");
Jakob Bornecrantzd9826402011-11-03 21:03:04 +01001445 return ERR_PTR(-ENOMEM);
Thomas Hellstromd3216a02010-10-05 12:42:59 +02001446 }
1447
Thomas Hellstrom90ff18b2011-10-04 20:13:32 +02001448 /*
1449 * Take a reference on the user object of the resource
1450 * backing the kms fb. This ensures that user-space handle
1451 * lookups on that resource will always work as long as
1452 * it's registered with a kms framebuffer. This is important,
1453 * since vmw_execbuf_process identifies resources in the
1454 * command stream using user-space handles.
1455 */
1456
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001457 user_obj = ttm_base_object_lookup(tfile, mode_cmd->handles[0]);
Thomas Hellstrom90ff18b2011-10-04 20:13:32 +02001458 if (unlikely(user_obj == NULL)) {
1459 DRM_ERROR("Could not locate requested kms frame buffer.\n");
1460 return ERR_PTR(-ENOENT);
1461 }
1462
Thomas Hellstromd3216a02010-10-05 12:42:59 +02001463 /**
1464 * End conditioned code.
1465 */
1466
Jakob Bornecrantze7ac9212011-11-28 13:19:12 +01001467 /* returns either a dmabuf or surface */
1468 ret = vmw_user_lookup_handle(dev_priv, tfile,
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001469 mode_cmd->handles[0],
Jakob Bornecrantze7ac9212011-11-28 13:19:12 +01001470 &surface, &bo);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001471 if (ret)
Jakob Bornecrantze7ac9212011-11-28 13:19:12 +01001472 goto err_out;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001473
Sinclair Yeh810b3e162017-03-23 15:39:16 -07001474
1475 if (!bo &&
1476 !vmw_kms_srf_ok(dev_priv, mode_cmd->width, mode_cmd->height)) {
1477 DRM_ERROR("Surface size cannot exceed %dx%d",
1478 dev_priv->texture_max_width,
1479 dev_priv->texture_max_height);
1480 goto err_out;
1481 }
1482
1483
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001484 vfb = vmw_kms_new_framebuffer(dev_priv, bo, surface,
1485 !(dev_priv->capabilities & SVGA_CAP_3D),
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001486 mode_cmd);
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001487 if (IS_ERR(vfb)) {
1488 ret = PTR_ERR(vfb);
1489 goto err_out;
1490 }
Jakob Bornecrantz5ffdb652010-01-30 03:38:08 +00001491
Jakob Bornecrantze7ac9212011-11-28 13:19:12 +01001492err_out:
1493 /* vmw_user_lookup_handle takes one ref so does new_fb */
1494 if (bo)
1495 vmw_dmabuf_unreference(&bo);
1496 if (surface)
1497 vmw_surface_unreference(&surface);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001498
1499 if (ret) {
1500 DRM_ERROR("failed to create vmw_framebuffer: %i\n", ret);
Thomas Hellstrom90ff18b2011-10-04 20:13:32 +02001501 ttm_base_object_unref(&user_obj);
Chris Wilsoncce13ff2010-08-08 13:36:38 +01001502 return ERR_PTR(ret);
Thomas Hellstrom90ff18b2011-10-04 20:13:32 +02001503 } else
1504 vfb->user_obj = user_obj;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001505
1506 return &vfb->base;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001507}
1508
Sinclair Yehc46a3062017-03-23 14:24:53 -07001509
1510
1511/**
1512 * vmw_kms_atomic_check_modeset- validate state object for modeset changes
1513 *
1514 * @dev: DRM device
1515 * @state: the driver state object
1516 *
1517 * This is a simple wrapper around drm_atomic_helper_check_modeset() for
1518 * us to assign a value to mode->crtc_clock so that
1519 * drm_calc_timestamping_constants() won't throw an error message
1520 *
1521 * RETURNS
1522 * Zero for success or -errno
1523 */
Maarten Lankhorstbdc362f2017-07-12 10:13:33 +02001524static int
Sinclair Yehc46a3062017-03-23 14:24:53 -07001525vmw_kms_atomic_check_modeset(struct drm_device *dev,
1526 struct drm_atomic_state *state)
1527{
1528 struct drm_crtc_state *crtc_state;
1529 struct drm_crtc *crtc;
1530 struct vmw_private *dev_priv = vmw_priv(dev);
1531 int i;
1532
Maarten Lankhorstbdc362f2017-07-12 10:13:33 +02001533 for_each_new_crtc_in_state(state, crtc, crtc_state, i) {
Sinclair Yehc46a3062017-03-23 14:24:53 -07001534 unsigned long requested_bb_mem = 0;
1535
1536 if (dev_priv->active_display_unit == vmw_du_screen_target) {
Ville Syrjälä06168442018-05-25 21:50:33 +03001537 struct drm_plane *plane = crtc->primary;
1538 struct drm_plane_state *plane_state;
1539
1540 plane_state = drm_atomic_get_new_plane_state(state, plane);
1541
1542 if (plane_state && plane_state->fb) {
1543 int cpp = plane_state->fb->format->cpp[0];
Sinclair Yehc46a3062017-03-23 14:24:53 -07001544
1545 requested_bb_mem += crtc->mode.hdisplay * cpp *
1546 crtc->mode.vdisplay;
1547 }
1548
1549 if (requested_bb_mem > dev_priv->prim_bb_mem)
1550 return -EINVAL;
1551 }
1552 }
1553
1554 return drm_atomic_helper_check(dev, state);
1555}
1556
Laurent Pincharte6ecefa2012-05-17 13:27:23 +02001557static const struct drm_mode_config_funcs vmw_kms_funcs = {
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001558 .fb_create = vmw_kms_fb_create,
Sinclair Yehc46a3062017-03-23 14:24:53 -07001559 .atomic_check = vmw_kms_atomic_check_modeset,
Deepak Rawat904efd92018-01-16 08:48:09 +01001560 .atomic_commit = drm_atomic_helper_commit,
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001561};
1562
Thomas Hellstromb9eb1a62015-04-02 02:39:45 -07001563static int vmw_kms_generic_present(struct vmw_private *dev_priv,
1564 struct drm_file *file_priv,
1565 struct vmw_framebuffer *vfb,
1566 struct vmw_surface *surface,
1567 uint32_t sid,
1568 int32_t destX, int32_t destY,
1569 struct drm_vmw_rect *clips,
1570 uint32_t num_clips)
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +02001571{
Thomas Hellstrom10b1e0c2015-06-26 02:14:27 -07001572 return vmw_kms_sou_do_surface_dirty(dev_priv, vfb, NULL, clips,
1573 &surface->res, destX, destY,
Deepak Rawat91e9f352018-01-16 08:24:17 +01001574 num_clips, 1, NULL, NULL);
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +02001575}
1576
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001577
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001578int vmw_kms_present(struct vmw_private *dev_priv,
1579 struct drm_file *file_priv,
1580 struct vmw_framebuffer *vfb,
1581 struct vmw_surface *surface,
1582 uint32_t sid,
1583 int32_t destX, int32_t destY,
1584 struct drm_vmw_rect *clips,
1585 uint32_t num_clips)
1586{
Sinclair Yeh35c05122015-06-26 01:42:06 -07001587 int ret;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001588
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001589 switch (dev_priv->active_display_unit) {
1590 case vmw_du_screen_target:
1591 ret = vmw_kms_stdu_surface_dirty(dev_priv, vfb, NULL, clips,
1592 &surface->res, destX, destY,
Deepak Rawat91e9f352018-01-16 08:24:17 +01001593 num_clips, 1, NULL, NULL);
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001594 break;
1595 case vmw_du_screen_object:
1596 ret = vmw_kms_generic_present(dev_priv, file_priv, vfb, surface,
1597 sid, destX, destY, clips,
1598 num_clips);
1599 break;
1600 default:
1601 WARN_ONCE(true,
1602 "Present called with invalid display system.\n");
1603 ret = -ENOSYS;
1604 break;
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +02001605 }
Sinclair Yeh35c05122015-06-26 01:42:06 -07001606 if (ret)
1607 return ret;
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +02001608
Sinclair Yeh35c05122015-06-26 01:42:06 -07001609 vmw_fifo_flush(dev_priv, false);
Michel Dänzer0bef23f2011-08-31 07:42:50 +00001610
Sinclair Yeh35c05122015-06-26 01:42:06 -07001611 return 0;
Thomas Hellstrom7c4f7782010-06-01 11:38:17 +02001612}
1613
Thomas Hellstrom578e6092016-02-12 09:45:42 +01001614static void
1615vmw_kms_create_hotplug_mode_update_property(struct vmw_private *dev_priv)
1616{
1617 if (dev_priv->hotplug_mode_update_property)
1618 return;
1619
1620 dev_priv->hotplug_mode_update_property =
1621 drm_property_create_range(dev_priv->dev,
1622 DRM_MODE_PROP_IMMUTABLE,
1623 "hotplug_mode_update", 0, 1);
1624
1625 if (!dev_priv->hotplug_mode_update_property)
1626 return;
1627
1628}
1629
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +02001630int vmw_kms_init(struct vmw_private *dev_priv)
1631{
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001632 struct drm_device *dev = dev_priv->dev;
1633 int ret;
1634
1635 drm_mode_config_init(dev);
1636 dev->mode_config.funcs = &vmw_kms_funcs;
1637 dev->mode_config.min_width = 1;
1638 dev->mode_config.min_height = 1;
Sinclair Yeh65ade7d2015-07-16 10:49:13 -07001639 dev->mode_config.max_width = dev_priv->texture_max_width;
1640 dev->mode_config.max_height = dev_priv->texture_max_height;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001641
Thomas Hellstrom578e6092016-02-12 09:45:42 +01001642 drm_mode_create_suggested_offset_properties(dev);
1643 vmw_kms_create_hotplug_mode_update_property(dev_priv);
1644
Sinclair Yeh35c05122015-06-26 01:42:06 -07001645 ret = vmw_kms_stdu_init_display(dev_priv);
1646 if (ret) {
1647 ret = vmw_kms_sou_init_display(dev_priv);
1648 if (ret) /* Fallback */
1649 ret = vmw_kms_ldu_init_display(dev_priv);
1650 }
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001651
Sinclair Yehc8261a92015-06-26 01:23:42 -07001652 return ret;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001653}
1654
1655int vmw_kms_close(struct vmw_private *dev_priv)
1656{
Daniel Vetter5f58e972017-06-26 18:19:48 +02001657 int ret = 0;
Sinclair Yehc8261a92015-06-26 01:23:42 -07001658
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001659 /*
1660 * Docs says we should take the lock before calling this function
1661 * but since it destroys encoders and our destructor calls
1662 * drm_encoder_cleanup which takes the lock we deadlock.
1663 */
1664 drm_mode_config_cleanup(dev_priv->dev);
Daniel Vetter5f58e972017-06-26 18:19:48 +02001665 if (dev_priv->active_display_unit == vmw_du_legacy)
Sinclair Yehc8261a92015-06-26 01:23:42 -07001666 ret = vmw_kms_ldu_close_display(dev_priv);
1667
1668 return ret;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001669}
1670
1671int vmw_kms_cursor_bypass_ioctl(struct drm_device *dev, void *data,
1672 struct drm_file *file_priv)
1673{
1674 struct drm_vmw_cursor_bypass_arg *arg = data;
1675 struct vmw_display_unit *du;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001676 struct drm_crtc *crtc;
1677 int ret = 0;
1678
1679
1680 mutex_lock(&dev->mode_config.mutex);
1681 if (arg->flags & DRM_VMW_CURSOR_BYPASS_ALL) {
1682
1683 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
1684 du = vmw_crtc_to_du(crtc);
1685 du->hotspot_x = arg->xhot;
1686 du->hotspot_y = arg->yhot;
1687 }
1688
1689 mutex_unlock(&dev->mode_config.mutex);
1690 return 0;
1691 }
1692
Keith Packard418da172017-03-14 23:25:07 -07001693 crtc = drm_crtc_find(dev, file_priv, arg->crtc_id);
Rob Clarka4cd5d62014-07-17 23:30:02 -04001694 if (!crtc) {
Ville Syrjälä4ae87ff2013-10-17 13:35:05 +03001695 ret = -ENOENT;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001696 goto out;
1697 }
1698
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001699 du = vmw_crtc_to_du(crtc);
1700
1701 du->hotspot_x = arg->xhot;
1702 du->hotspot_y = arg->yhot;
1703
1704out:
1705 mutex_unlock(&dev->mode_config.mutex);
1706
1707 return ret;
1708}
1709
1710int vmw_kms_write_svga(struct vmw_private *vmw_priv,
1711 unsigned width, unsigned height, unsigned pitch,
1712 unsigned bpp, unsigned depth)
1713{
1714 if (vmw_priv->capabilities & SVGA_CAP_PITCHLOCK)
1715 vmw_write(vmw_priv, SVGA_REG_PITCHLOCK, pitch);
1716 else if (vmw_fifo_have_pitchlock(vmw_priv))
Thomas Hellstromb76ff5e2015-10-28 10:44:04 +01001717 vmw_mmio_write(pitch, vmw_priv->mmio_virt +
1718 SVGA_FIFO_PITCHLOCK);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001719 vmw_write(vmw_priv, SVGA_REG_WIDTH, width);
1720 vmw_write(vmw_priv, SVGA_REG_HEIGHT, height);
1721 vmw_write(vmw_priv, SVGA_REG_BITS_PER_PIXEL, bpp);
1722
1723 if (vmw_read(vmw_priv, SVGA_REG_DEPTH) != depth) {
1724 DRM_ERROR("Invalid depth %u for %u bpp, host expects %u\n",
1725 depth, bpp, vmw_read(vmw_priv, SVGA_REG_DEPTH));
1726 return -EINVAL;
1727 }
1728
1729 return 0;
1730}
1731
1732int vmw_kms_save_vga(struct vmw_private *vmw_priv)
1733{
1734 struct vmw_vga_topology_state *save;
1735 uint32_t i;
1736
1737 vmw_priv->vga_width = vmw_read(vmw_priv, SVGA_REG_WIDTH);
1738 vmw_priv->vga_height = vmw_read(vmw_priv, SVGA_REG_HEIGHT);
1739 vmw_priv->vga_bpp = vmw_read(vmw_priv, SVGA_REG_BITS_PER_PIXEL);
1740 if (vmw_priv->capabilities & SVGA_CAP_PITCHLOCK)
1741 vmw_priv->vga_pitchlock =
1742 vmw_read(vmw_priv, SVGA_REG_PITCHLOCK);
1743 else if (vmw_fifo_have_pitchlock(vmw_priv))
Thomas Hellstromb76ff5e2015-10-28 10:44:04 +01001744 vmw_priv->vga_pitchlock = vmw_mmio_read(vmw_priv->mmio_virt +
1745 SVGA_FIFO_PITCHLOCK);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001746
1747 if (!(vmw_priv->capabilities & SVGA_CAP_DISPLAY_TOPOLOGY))
1748 return 0;
1749
1750 vmw_priv->num_displays = vmw_read(vmw_priv,
1751 SVGA_REG_NUM_GUEST_DISPLAYS);
1752
1753 if (vmw_priv->num_displays == 0)
1754 vmw_priv->num_displays = 1;
1755
1756 for (i = 0; i < vmw_priv->num_displays; ++i) {
1757 save = &vmw_priv->vga_save[i];
1758 vmw_write(vmw_priv, SVGA_REG_DISPLAY_ID, i);
1759 save->primary = vmw_read(vmw_priv, SVGA_REG_DISPLAY_IS_PRIMARY);
1760 save->pos_x = vmw_read(vmw_priv, SVGA_REG_DISPLAY_POSITION_X);
1761 save->pos_y = vmw_read(vmw_priv, SVGA_REG_DISPLAY_POSITION_Y);
1762 save->width = vmw_read(vmw_priv, SVGA_REG_DISPLAY_WIDTH);
1763 save->height = vmw_read(vmw_priv, SVGA_REG_DISPLAY_HEIGHT);
1764 vmw_write(vmw_priv, SVGA_REG_DISPLAY_ID, SVGA_ID_INVALID);
1765 if (i == 0 && vmw_priv->num_displays == 1 &&
1766 save->width == 0 && save->height == 0) {
1767
1768 /*
1769 * It should be fairly safe to assume that these
1770 * values are uninitialized.
1771 */
1772
1773 save->width = vmw_priv->vga_width - save->pos_x;
1774 save->height = vmw_priv->vga_height - save->pos_y;
1775 }
1776 }
1777
1778 return 0;
1779}
1780
1781int vmw_kms_restore_vga(struct vmw_private *vmw_priv)
1782{
1783 struct vmw_vga_topology_state *save;
1784 uint32_t i;
1785
1786 vmw_write(vmw_priv, SVGA_REG_WIDTH, vmw_priv->vga_width);
1787 vmw_write(vmw_priv, SVGA_REG_HEIGHT, vmw_priv->vga_height);
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +02001788 vmw_write(vmw_priv, SVGA_REG_BITS_PER_PIXEL, vmw_priv->vga_bpp);
1789 if (vmw_priv->capabilities & SVGA_CAP_PITCHLOCK)
1790 vmw_write(vmw_priv, SVGA_REG_PITCHLOCK,
1791 vmw_priv->vga_pitchlock);
1792 else if (vmw_fifo_have_pitchlock(vmw_priv))
Thomas Hellstromb76ff5e2015-10-28 10:44:04 +01001793 vmw_mmio_write(vmw_priv->vga_pitchlock,
1794 vmw_priv->mmio_virt + SVGA_FIFO_PITCHLOCK);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001795
Thomas Hellstrom7c4f7782010-06-01 11:38:17 +02001796 if (!(vmw_priv->capabilities & SVGA_CAP_DISPLAY_TOPOLOGY))
1797 return 0;
1798
1799 for (i = 0; i < vmw_priv->num_displays; ++i) {
1800 save = &vmw_priv->vga_save[i];
1801 vmw_write(vmw_priv, SVGA_REG_DISPLAY_ID, i);
1802 vmw_write(vmw_priv, SVGA_REG_DISPLAY_IS_PRIMARY, save->primary);
1803 vmw_write(vmw_priv, SVGA_REG_DISPLAY_POSITION_X, save->pos_x);
1804 vmw_write(vmw_priv, SVGA_REG_DISPLAY_POSITION_Y, save->pos_y);
1805 vmw_write(vmw_priv, SVGA_REG_DISPLAY_WIDTH, save->width);
1806 vmw_write(vmw_priv, SVGA_REG_DISPLAY_HEIGHT, save->height);
1807 vmw_write(vmw_priv, SVGA_REG_DISPLAY_ID, SVGA_ID_INVALID);
1808 }
1809
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001810 return 0;
1811}
Jakob Bornecrantzd8bd19d2010-06-01 11:54:20 +02001812
Thomas Hellstrome133e7372010-10-05 12:43:04 +02001813bool vmw_kms_validate_mode_vram(struct vmw_private *dev_priv,
1814 uint32_t pitch,
1815 uint32_t height)
1816{
Sinclair Yeh35c05122015-06-26 01:42:06 -07001817 return ((u64) pitch * (u64) height) < (u64)
1818 ((dev_priv->active_display_unit == vmw_du_screen_target) ?
1819 dev_priv->prim_bb_mem : dev_priv->vram_size);
Thomas Hellstrome133e7372010-10-05 12:43:04 +02001820}
1821
Jakob Bornecrantz1c482ab2011-10-17 11:59:45 +02001822
1823/**
1824 * Function called by DRM code called with vbl_lock held.
1825 */
Thierry Reding88e72712015-09-24 18:35:31 +02001826u32 vmw_get_vblank_counter(struct drm_device *dev, unsigned int pipe)
Thomas Hellstrom7a1c2f62010-10-01 10:21:49 +02001827{
1828 return 0;
1829}
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001830
Jakob Bornecrantz1c482ab2011-10-17 11:59:45 +02001831/**
1832 * Function called by DRM code called with vbl_lock held.
1833 */
Thierry Reding88e72712015-09-24 18:35:31 +02001834int vmw_enable_vblank(struct drm_device *dev, unsigned int pipe)
Jakob Bornecrantz1c482ab2011-10-17 11:59:45 +02001835{
Woody Suwalski2b0bc682018-01-17 09:07:47 +01001836 return -EINVAL;
Jakob Bornecrantz1c482ab2011-10-17 11:59:45 +02001837}
1838
1839/**
1840 * Function called by DRM code called with vbl_lock held.
1841 */
Thierry Reding88e72712015-09-24 18:35:31 +02001842void vmw_disable_vblank(struct drm_device *dev, unsigned int pipe)
Jakob Bornecrantz1c482ab2011-10-17 11:59:45 +02001843{
1844}
1845
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001846
1847/*
1848 * Small shared kms functions.
1849 */
1850
Rashika Kheria847c5962014-01-06 22:18:10 +05301851static int vmw_du_update_layout(struct vmw_private *dev_priv, unsigned num,
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001852 struct drm_vmw_rect *rects)
1853{
1854 struct drm_device *dev = dev_priv->dev;
1855 struct vmw_display_unit *du;
1856 struct drm_connector *con;
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001857
1858 mutex_lock(&dev->mode_config.mutex);
1859
1860#if 0
Thomas Hellstrom6ea77d12011-10-04 20:13:36 +02001861 {
1862 unsigned int i;
1863
1864 DRM_INFO("%s: new layout ", __func__);
1865 for (i = 0; i < num; i++)
1866 DRM_INFO("(%i, %i %ux%u) ", rects[i].x, rects[i].y,
1867 rects[i].w, rects[i].h);
1868 DRM_INFO("\n");
1869 }
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001870#endif
1871
1872 list_for_each_entry(con, &dev->mode_config.connector_list, head) {
1873 du = vmw_connector_to_du(con);
1874 if (num > du->unit) {
1875 du->pref_width = rects[du->unit].w;
1876 du->pref_height = rects[du->unit].h;
1877 du->pref_active = true;
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02001878 du->gui_x = rects[du->unit].x;
1879 du->gui_y = rects[du->unit].y;
Thomas Hellstrom578e6092016-02-12 09:45:42 +01001880 drm_object_property_set_value
1881 (&con->base, dev->mode_config.suggested_x_property,
1882 du->gui_x);
1883 drm_object_property_set_value
1884 (&con->base, dev->mode_config.suggested_y_property,
1885 du->gui_y);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001886 } else {
1887 du->pref_width = 800;
1888 du->pref_height = 600;
1889 du->pref_active = false;
Thomas Hellstrom578e6092016-02-12 09:45:42 +01001890 drm_object_property_set_value
1891 (&con->base, dev->mode_config.suggested_x_property,
1892 0);
1893 drm_object_property_set_value
1894 (&con->base, dev->mode_config.suggested_y_property,
1895 0);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001896 }
1897 con->status = vmw_du_connector_detect(con, true);
1898 }
1899
1900 mutex_unlock(&dev->mode_config.mutex);
Thomas Hellstrom578e6092016-02-12 09:45:42 +01001901 drm_sysfs_hotplug_event(dev);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001902
1903 return 0;
1904}
1905
Maarten Lankhorst7ea77282016-06-07 12:49:30 +02001906int vmw_du_crtc_gamma_set(struct drm_crtc *crtc,
1907 u16 *r, u16 *g, u16 *b,
Daniel Vetter6d124ff2017-04-03 10:33:01 +02001908 uint32_t size,
1909 struct drm_modeset_acquire_ctx *ctx)
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001910{
1911 struct vmw_private *dev_priv = vmw_priv(crtc->dev);
1912 int i;
1913
1914 for (i = 0; i < size; i++) {
1915 DRM_DEBUG("%d r/g/b = 0x%04x / 0x%04x / 0x%04x\n", i,
1916 r[i], g[i], b[i]);
1917 vmw_write(dev_priv, SVGA_PALETTE_BASE + i * 3 + 0, r[i] >> 8);
1918 vmw_write(dev_priv, SVGA_PALETTE_BASE + i * 3 + 1, g[i] >> 8);
1919 vmw_write(dev_priv, SVGA_PALETTE_BASE + i * 3 + 2, b[i] >> 8);
1920 }
Maarten Lankhorst7ea77282016-06-07 12:49:30 +02001921
1922 return 0;
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001923}
1924
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02001925int vmw_du_connector_dpms(struct drm_connector *connector, int mode)
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001926{
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02001927 return 0;
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001928}
1929
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001930enum drm_connector_status
1931vmw_du_connector_detect(struct drm_connector *connector, bool force)
1932{
1933 uint32_t num_displays;
1934 struct drm_device *dev = connector->dev;
1935 struct vmw_private *dev_priv = vmw_priv(dev);
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02001936 struct vmw_display_unit *du = vmw_connector_to_du(connector);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001937
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001938 num_displays = vmw_read(dev_priv, SVGA_REG_NUM_DISPLAYS);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001939
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02001940 return ((vmw_connector_to_du(connector)->unit < num_displays &&
1941 du->pref_active) ?
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001942 connector_status_connected : connector_status_disconnected);
1943}
1944
1945static struct drm_display_mode vmw_kms_connector_builtin[] = {
1946 /* 640x480@60Hz */
1947 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25175, 640, 656,
1948 752, 800, 0, 480, 489, 492, 525, 0,
1949 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
1950 /* 800x600@60Hz */
1951 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 40000, 800, 840,
1952 968, 1056, 0, 600, 601, 605, 628, 0,
1953 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
1954 /* 1024x768@60Hz */
1955 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 65000, 1024, 1048,
1956 1184, 1344, 0, 768, 771, 777, 806, 0,
1957 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
1958 /* 1152x864@75Hz */
1959 { DRM_MODE("1152x864", DRM_MODE_TYPE_DRIVER, 108000, 1152, 1216,
1960 1344, 1600, 0, 864, 865, 868, 900, 0,
1961 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
1962 /* 1280x768@60Hz */
1963 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 79500, 1280, 1344,
1964 1472, 1664, 0, 768, 771, 778, 798, 0,
1965 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
1966 /* 1280x800@60Hz */
1967 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 83500, 1280, 1352,
1968 1480, 1680, 0, 800, 803, 809, 831, 0,
1969 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
1970 /* 1280x960@60Hz */
1971 { DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1376,
1972 1488, 1800, 0, 960, 961, 964, 1000, 0,
1973 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
1974 /* 1280x1024@60Hz */
1975 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1328,
1976 1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
1977 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
1978 /* 1360x768@60Hz */
1979 { DRM_MODE("1360x768", DRM_MODE_TYPE_DRIVER, 85500, 1360, 1424,
1980 1536, 1792, 0, 768, 771, 777, 795, 0,
1981 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
1982 /* 1440x1050@60Hz */
1983 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 121750, 1400, 1488,
1984 1632, 1864, 0, 1050, 1053, 1057, 1089, 0,
1985 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
1986 /* 1440x900@60Hz */
1987 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 106500, 1440, 1520,
1988 1672, 1904, 0, 900, 903, 909, 934, 0,
1989 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
1990 /* 1600x1200@60Hz */
1991 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 162000, 1600, 1664,
1992 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
1993 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
1994 /* 1680x1050@60Hz */
1995 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 146250, 1680, 1784,
1996 1960, 2240, 0, 1050, 1053, 1059, 1089, 0,
1997 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
1998 /* 1792x1344@60Hz */
1999 { DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER, 204750, 1792, 1920,
2000 2120, 2448, 0, 1344, 1345, 1348, 1394, 0,
2001 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
2002 /* 1853x1392@60Hz */
2003 { DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER, 218250, 1856, 1952,
2004 2176, 2528, 0, 1392, 1393, 1396, 1439, 0,
2005 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
2006 /* 1920x1200@60Hz */
2007 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 193250, 1920, 2056,
2008 2256, 2592, 0, 1200, 1203, 1209, 1245, 0,
2009 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
2010 /* 1920x1440@60Hz */
2011 { DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER, 234000, 1920, 2048,
2012 2256, 2600, 0, 1440, 1441, 1444, 1500, 0,
2013 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
2014 /* 2560x1600@60Hz */
2015 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 348500, 2560, 2752,
2016 3032, 3504, 0, 1600, 1603, 1609, 1658, 0,
2017 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
2018 /* Terminate */
2019 { DRM_MODE("", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) },
2020};
2021
Thomas Hellstrom1543b4dd2011-11-02 09:43:10 +01002022/**
2023 * vmw_guess_mode_timing - Provide fake timings for a
2024 * 60Hz vrefresh mode.
2025 *
2026 * @mode - Pointer to a struct drm_display_mode with hdisplay and vdisplay
2027 * members filled in.
2028 */
Thomas Hellstroma2787242015-06-29 12:55:07 -07002029void vmw_guess_mode_timing(struct drm_display_mode *mode)
Thomas Hellstrom1543b4dd2011-11-02 09:43:10 +01002030{
2031 mode->hsync_start = mode->hdisplay + 50;
2032 mode->hsync_end = mode->hsync_start + 50;
2033 mode->htotal = mode->hsync_end + 50;
2034
2035 mode->vsync_start = mode->vdisplay + 50;
2036 mode->vsync_end = mode->vsync_start + 50;
2037 mode->vtotal = mode->vsync_end + 50;
2038
2039 mode->clock = (u32)mode->htotal * (u32)mode->vtotal / 100 * 6;
2040 mode->vrefresh = drm_mode_vrefresh(mode);
2041}
2042
2043
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002044int vmw_du_connector_fill_modes(struct drm_connector *connector,
2045 uint32_t max_width, uint32_t max_height)
2046{
2047 struct vmw_display_unit *du = vmw_connector_to_du(connector);
2048 struct drm_device *dev = connector->dev;
2049 struct vmw_private *dev_priv = vmw_priv(dev);
2050 struct drm_display_mode *mode = NULL;
2051 struct drm_display_mode *bmode;
2052 struct drm_display_mode prefmode = { DRM_MODE("preferred",
2053 DRM_MODE_TYPE_DRIVER | DRM_MODE_TYPE_PREFERRED,
2054 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2055 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC)
2056 };
2057 int i;
Sinclair Yeh7c20d212016-06-29 11:29:47 -07002058 u32 assumed_bpp = 4;
Sinclair Yeh9a723842014-10-31 09:58:06 +01002059
Sinclair Yeh04319d82016-06-29 12:15:48 -07002060 if (dev_priv->assume_16bpp)
2061 assumed_bpp = 2;
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002062
Sinclair Yeh35c05122015-06-26 01:42:06 -07002063 if (dev_priv->active_display_unit == vmw_du_screen_target) {
2064 max_width = min(max_width, dev_priv->stdu_max_width);
Sinclair Yeh28c95422017-03-27 11:12:27 -07002065 max_width = min(max_width, dev_priv->texture_max_width);
2066
Sinclair Yeh35c05122015-06-26 01:42:06 -07002067 max_height = min(max_height, dev_priv->stdu_max_height);
Sinclair Yeh28c95422017-03-27 11:12:27 -07002068 max_height = min(max_height, dev_priv->texture_max_height);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002069 }
2070
2071 /* Add preferred mode */
Sinclair Yehc8261a92015-06-26 01:23:42 -07002072 mode = drm_mode_duplicate(dev, &prefmode);
2073 if (!mode)
2074 return 0;
2075 mode->hdisplay = du->pref_width;
2076 mode->vdisplay = du->pref_height;
2077 vmw_guess_mode_timing(mode);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002078
Sinclair Yehc8261a92015-06-26 01:23:42 -07002079 if (vmw_kms_validate_mode_vram(dev_priv,
2080 mode->hdisplay * assumed_bpp,
2081 mode->vdisplay)) {
2082 drm_mode_probed_add(connector, mode);
2083 } else {
2084 drm_mode_destroy(dev, mode);
2085 mode = NULL;
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002086 }
2087
Sinclair Yehc8261a92015-06-26 01:23:42 -07002088 if (du->pref_mode) {
2089 list_del_init(&du->pref_mode->head);
2090 drm_mode_destroy(dev, du->pref_mode);
2091 }
2092
2093 /* mode might be null here, this is intended */
2094 du->pref_mode = mode;
2095
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002096 for (i = 0; vmw_kms_connector_builtin[i].type != 0; i++) {
2097 bmode = &vmw_kms_connector_builtin[i];
2098 if (bmode->hdisplay > max_width ||
2099 bmode->vdisplay > max_height)
2100 continue;
2101
Sinclair Yeh9a723842014-10-31 09:58:06 +01002102 if (!vmw_kms_validate_mode_vram(dev_priv,
2103 bmode->hdisplay * assumed_bpp,
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002104 bmode->vdisplay))
2105 continue;
2106
2107 mode = drm_mode_duplicate(dev, bmode);
2108 if (!mode)
2109 return 0;
2110 mode->vrefresh = drm_mode_vrefresh(mode);
2111
2112 drm_mode_probed_add(connector, mode);
2113 }
2114
Daniel Vetter97e14fb2018-07-09 10:40:08 +02002115 drm_connector_list_update(connector);
Thomas Hellstromf6b05002015-06-29 12:59:58 -07002116 /* Move the prefered mode first, help apps pick the right mode. */
2117 drm_mode_sort(&connector->modes);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002118
2119 return 1;
2120}
2121
2122int vmw_du_connector_set_property(struct drm_connector *connector,
2123 struct drm_property *property,
2124 uint64_t val)
2125{
Thomas Hellstrom76404ac2016-02-12 09:55:45 +01002126 struct vmw_display_unit *du = vmw_connector_to_du(connector);
2127 struct vmw_private *dev_priv = vmw_priv(connector->dev);
2128
2129 if (property == dev_priv->implicit_placement_property)
2130 du->is_implicit = val;
2131
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002132 return 0;
2133}
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002134
2135
Sinclair Yeh9c2542a2017-03-23 11:33:39 -07002136
Sinclair Yehd7721ca2017-03-23 11:48:44 -07002137/**
2138 * vmw_du_connector_atomic_set_property - Atomic version of get property
2139 *
2140 * @crtc - crtc the property is associated with
2141 *
2142 * Returns:
2143 * Zero on success, negative errno on failure.
2144 */
2145int
2146vmw_du_connector_atomic_set_property(struct drm_connector *connector,
2147 struct drm_connector_state *state,
2148 struct drm_property *property,
2149 uint64_t val)
2150{
2151 struct vmw_private *dev_priv = vmw_priv(connector->dev);
2152 struct vmw_connector_state *vcs = vmw_connector_state_to_vcs(state);
2153 struct vmw_display_unit *du = vmw_connector_to_du(connector);
2154
2155
2156 if (property == dev_priv->implicit_placement_property) {
2157 vcs->is_implicit = val;
2158
2159 /*
2160 * We should really be doing a drm_atomic_commit() to
2161 * commit the new state, but since this doesn't cause
2162 * an immedate state change, this is probably ok
2163 */
2164 du->is_implicit = vcs->is_implicit;
2165 } else {
2166 return -EINVAL;
2167 }
2168
2169 return 0;
2170}
2171
2172
2173/**
2174 * vmw_du_connector_atomic_get_property - Atomic version of get property
2175 *
2176 * @connector - connector the property is associated with
2177 *
2178 * Returns:
2179 * Zero on success, negative errno on failure.
2180 */
2181int
2182vmw_du_connector_atomic_get_property(struct drm_connector *connector,
2183 const struct drm_connector_state *state,
2184 struct drm_property *property,
2185 uint64_t *val)
2186{
2187 struct vmw_private *dev_priv = vmw_priv(connector->dev);
2188 struct vmw_connector_state *vcs = vmw_connector_state_to_vcs(state);
2189
2190 if (property == dev_priv->implicit_placement_property)
2191 *val = vcs->is_implicit;
2192 else {
2193 DRM_ERROR("Invalid Property %s\n", property->name);
2194 return -EINVAL;
2195 }
2196
2197 return 0;
2198}
2199
2200
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002201int vmw_kms_update_layout_ioctl(struct drm_device *dev, void *data,
2202 struct drm_file *file_priv)
2203{
2204 struct vmw_private *dev_priv = vmw_priv(dev);
2205 struct drm_vmw_update_layout_arg *arg =
2206 (struct drm_vmw_update_layout_arg *)data;
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002207 void __user *user_rects;
2208 struct drm_vmw_rect *rects;
2209 unsigned rects_size;
2210 int ret;
2211 int i;
Sinclair Yeh65ade7d2015-07-16 10:49:13 -07002212 u64 total_pixels = 0;
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002213 struct drm_mode_config *mode_config = &dev->mode_config;
Sinclair Yehc8261a92015-06-26 01:23:42 -07002214 struct drm_vmw_rect bounding_box = {0};
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002215
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002216 if (!arg->num_outputs) {
2217 struct drm_vmw_rect def_rect = {0, 0, 800, 600};
2218 vmw_du_update_layout(dev_priv, 1, &def_rect);
Thomas Hellstrom5151adb2015-03-09 01:56:21 -07002219 return 0;
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002220 }
2221
2222 rects_size = arg->num_outputs * sizeof(struct drm_vmw_rect);
Xi Wangbab9efc2011-11-28 12:25:43 +01002223 rects = kcalloc(arg->num_outputs, sizeof(struct drm_vmw_rect),
2224 GFP_KERNEL);
Thomas Hellstrom5151adb2015-03-09 01:56:21 -07002225 if (unlikely(!rects))
2226 return -ENOMEM;
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002227
2228 user_rects = (void __user *)(unsigned long)arg->rects;
2229 ret = copy_from_user(rects, user_rects, rects_size);
2230 if (unlikely(ret != 0)) {
2231 DRM_ERROR("Failed to get rects.\n");
2232 ret = -EFAULT;
2233 goto out_free;
2234 }
2235
2236 for (i = 0; i < arg->num_outputs; ++i) {
Xi Wangbab9efc2011-11-28 12:25:43 +01002237 if (rects[i].x < 0 ||
2238 rects[i].y < 0 ||
2239 rects[i].x + rects[i].w > mode_config->max_width ||
2240 rects[i].y + rects[i].h > mode_config->max_height) {
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002241 DRM_ERROR("Invalid GUI layout.\n");
2242 ret = -EINVAL;
2243 goto out_free;
2244 }
Sinclair Yehc8261a92015-06-26 01:23:42 -07002245
2246 /*
2247 * bounding_box.w and bunding_box.h are used as
2248 * lower-right coordinates
2249 */
2250 if (rects[i].x + rects[i].w > bounding_box.w)
2251 bounding_box.w = rects[i].x + rects[i].w;
2252
2253 if (rects[i].y + rects[i].h > bounding_box.h)
2254 bounding_box.h = rects[i].y + rects[i].h;
Sinclair Yeh65ade7d2015-07-16 10:49:13 -07002255
2256 total_pixels += (u64) rects[i].w * (u64) rects[i].h;
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002257 }
2258
Sinclair Yeh65ade7d2015-07-16 10:49:13 -07002259 if (dev_priv->active_display_unit == vmw_du_screen_target) {
2260 /*
2261 * For Screen Targets, the limits for a toplogy are:
2262 * 1. Bounding box (assuming 32bpp) must be < prim_bb_mem
2263 * 2. Total pixels (assuming 32bpp) must be < prim_bb_mem
2264 */
Thomas Hellstrom0f580382017-01-19 11:01:04 -08002265 u64 bb_mem = (u64) bounding_box.w * bounding_box.h * 4;
Sinclair Yeh65ade7d2015-07-16 10:49:13 -07002266 u64 pixel_mem = total_pixels * 4;
2267
2268 if (bb_mem > dev_priv->prim_bb_mem) {
2269 DRM_ERROR("Topology is beyond supported limits.\n");
Sinclair Yeh35c05122015-06-26 01:42:06 -07002270 ret = -EINVAL;
2271 goto out_free;
2272 }
2273
Sinclair Yeh65ade7d2015-07-16 10:49:13 -07002274 if (pixel_mem > dev_priv->prim_bb_mem) {
2275 DRM_ERROR("Combined output size too large\n");
2276 ret = -EINVAL;
2277 goto out_free;
2278 }
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002279 }
2280
2281 vmw_du_update_layout(dev_priv, arg->num_outputs, rects);
2282
2283out_free:
2284 kfree(rects);
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002285 return ret;
2286}
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002287
2288/**
2289 * vmw_kms_helper_dirty - Helper to build commands and perform actions based
2290 * on a set of cliprects and a set of display units.
2291 *
2292 * @dev_priv: Pointer to a device private structure.
2293 * @framebuffer: Pointer to the framebuffer on which to perform the actions.
2294 * @clips: A set of struct drm_clip_rect. Either this os @vclips must be NULL.
2295 * Cliprects are given in framebuffer coordinates.
2296 * @vclips: A set of struct drm_vmw_rect cliprects. Either this or @clips must
2297 * be NULL. Cliprects are given in source coordinates.
2298 * @dest_x: X coordinate offset for the crtc / destination clip rects.
2299 * @dest_y: Y coordinate offset for the crtc / destination clip rects.
2300 * @num_clips: Number of cliprects in the @clips or @vclips array.
2301 * @increment: Integer with which to increment the clip counter when looping.
2302 * Used to skip a predetermined number of clip rects.
2303 * @dirty: Closure structure. See the description of struct vmw_kms_dirty.
2304 */
2305int vmw_kms_helper_dirty(struct vmw_private *dev_priv,
2306 struct vmw_framebuffer *framebuffer,
2307 const struct drm_clip_rect *clips,
2308 const struct drm_vmw_rect *vclips,
2309 s32 dest_x, s32 dest_y,
2310 int num_clips,
2311 int increment,
2312 struct vmw_kms_dirty *dirty)
2313{
2314 struct vmw_display_unit *units[VMWGFX_NUM_DISPLAY_UNITS];
2315 struct drm_crtc *crtc;
2316 u32 num_units = 0;
2317 u32 i, k;
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002318
2319 dirty->dev_priv = dev_priv;
2320
Deepak Rawat91e9f352018-01-16 08:24:17 +01002321 /* If crtc is passed, no need to iterate over other display units */
2322 if (dirty->crtc) {
2323 units[num_units++] = vmw_crtc_to_du(dirty->crtc);
2324 } else {
2325 list_for_each_entry(crtc, &dev_priv->dev->mode_config.crtc_list,
2326 head) {
Ville Syrjälä464ce092018-05-25 21:50:34 +03002327 struct drm_plane *plane = crtc->primary;
2328
2329 if (plane->state->fb == &framebuffer->base)
2330 units[num_units++] = vmw_crtc_to_du(crtc);
Deepak Rawat91e9f352018-01-16 08:24:17 +01002331 }
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002332 }
2333
2334 for (k = 0; k < num_units; k++) {
2335 struct vmw_display_unit *unit = units[k];
2336 s32 crtc_x = unit->crtc.x;
2337 s32 crtc_y = unit->crtc.y;
2338 s32 crtc_width = unit->crtc.mode.hdisplay;
2339 s32 crtc_height = unit->crtc.mode.vdisplay;
2340 const struct drm_clip_rect *clips_ptr = clips;
2341 const struct drm_vmw_rect *vclips_ptr = vclips;
2342
2343 dirty->unit = unit;
2344 if (dirty->fifo_reserve_size > 0) {
2345 dirty->cmd = vmw_fifo_reserve(dev_priv,
2346 dirty->fifo_reserve_size);
2347 if (!dirty->cmd) {
2348 DRM_ERROR("Couldn't reserve fifo space "
2349 "for dirty blits.\n");
Christian Engelmayerf3b8c0c2015-09-19 00:32:24 +02002350 return -ENOMEM;
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002351 }
2352 memset(dirty->cmd, 0, dirty->fifo_reserve_size);
2353 }
2354 dirty->num_hits = 0;
2355 for (i = 0; i < num_clips; i++, clips_ptr += increment,
2356 vclips_ptr += increment) {
2357 s32 clip_left;
2358 s32 clip_top;
2359
2360 /*
2361 * Select clip array type. Note that integer type
2362 * in @clips is unsigned short, whereas in @vclips
2363 * it's 32-bit.
2364 */
2365 if (clips) {
2366 dirty->fb_x = (s32) clips_ptr->x1;
2367 dirty->fb_y = (s32) clips_ptr->y1;
2368 dirty->unit_x2 = (s32) clips_ptr->x2 + dest_x -
2369 crtc_x;
2370 dirty->unit_y2 = (s32) clips_ptr->y2 + dest_y -
2371 crtc_y;
2372 } else {
2373 dirty->fb_x = vclips_ptr->x;
2374 dirty->fb_y = vclips_ptr->y;
2375 dirty->unit_x2 = dirty->fb_x + vclips_ptr->w +
2376 dest_x - crtc_x;
2377 dirty->unit_y2 = dirty->fb_y + vclips_ptr->h +
2378 dest_y - crtc_y;
2379 }
2380
2381 dirty->unit_x1 = dirty->fb_x + dest_x - crtc_x;
2382 dirty->unit_y1 = dirty->fb_y + dest_y - crtc_y;
2383
2384 /* Skip this clip if it's outside the crtc region */
2385 if (dirty->unit_x1 >= crtc_width ||
2386 dirty->unit_y1 >= crtc_height ||
2387 dirty->unit_x2 <= 0 || dirty->unit_y2 <= 0)
2388 continue;
2389
2390 /* Clip right and bottom to crtc limits */
2391 dirty->unit_x2 = min_t(s32, dirty->unit_x2,
2392 crtc_width);
2393 dirty->unit_y2 = min_t(s32, dirty->unit_y2,
2394 crtc_height);
2395
2396 /* Clip left and top to crtc limits */
2397 clip_left = min_t(s32, dirty->unit_x1, 0);
2398 clip_top = min_t(s32, dirty->unit_y1, 0);
2399 dirty->unit_x1 -= clip_left;
2400 dirty->unit_y1 -= clip_top;
2401 dirty->fb_x -= clip_left;
2402 dirty->fb_y -= clip_top;
2403
2404 dirty->clip(dirty);
2405 }
2406
2407 dirty->fifo_commit(dirty);
2408 }
2409
2410 return 0;
2411}
2412
2413/**
2414 * vmw_kms_helper_buffer_prepare - Reserve and validate a buffer object before
2415 * command submission.
2416 *
2417 * @dev_priv. Pointer to a device private structure.
2418 * @buf: The buffer object
2419 * @interruptible: Whether to perform waits as interruptible.
2420 * @validate_as_mob: Whether the buffer should be validated as a MOB. If false,
2421 * The buffer will be validated as a GMR. Already pinned buffers will not be
2422 * validated.
2423 *
2424 * Returns 0 on success, negative error code on failure, -ERESTARTSYS if
2425 * interrupted by a signal.
2426 */
2427int vmw_kms_helper_buffer_prepare(struct vmw_private *dev_priv,
2428 struct vmw_dma_buffer *buf,
2429 bool interruptible,
Thomas Hellstromef86cfe2018-01-16 11:07:30 +01002430 bool validate_as_mob,
2431 bool for_cpu_blit)
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002432{
Thomas Hellstromef86cfe2018-01-16 11:07:30 +01002433 struct ttm_operation_ctx ctx = {
2434 .interruptible = interruptible,
2435 .no_wait_gpu = false};
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002436 struct ttm_buffer_object *bo = &buf->base;
2437 int ret;
2438
Christian Königdfd5e502016-04-06 11:12:03 +02002439 ttm_bo_reserve(bo, false, false, NULL);
Thomas Hellstromef86cfe2018-01-16 11:07:30 +01002440 if (for_cpu_blit)
2441 ret = ttm_bo_validate(bo, &vmw_nonfixed_placement, &ctx);
2442 else
2443 ret = vmw_validate_single_buffer(dev_priv, bo, interruptible,
2444 validate_as_mob);
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002445 if (ret)
2446 ttm_bo_unreserve(bo);
2447
2448 return ret;
2449}
2450
2451/**
2452 * vmw_kms_helper_buffer_revert - Undo the actions of
2453 * vmw_kms_helper_buffer_prepare.
2454 *
2455 * @res: Pointer to the buffer object.
2456 *
2457 * Helper to be used if an error forces the caller to undo the actions of
2458 * vmw_kms_helper_buffer_prepare.
2459 */
2460void vmw_kms_helper_buffer_revert(struct vmw_dma_buffer *buf)
2461{
2462 if (buf)
2463 ttm_bo_unreserve(&buf->base);
2464}
2465
2466/**
2467 * vmw_kms_helper_buffer_finish - Unreserve and fence a buffer object after
2468 * kms command submission.
2469 *
2470 * @dev_priv: Pointer to a device private structure.
2471 * @file_priv: Pointer to a struct drm_file representing the caller's
2472 * connection. Must be set to NULL if @user_fence_rep is NULL, and conversely
2473 * if non-NULL, @user_fence_rep must be non-NULL.
2474 * @buf: The buffer object.
2475 * @out_fence: Optional pointer to a fence pointer. If non-NULL, a
2476 * ref-counted fence pointer is returned here.
2477 * @user_fence_rep: Optional pointer to a user-space provided struct
2478 * drm_vmw_fence_rep. If provided, @file_priv must also be provided and the
2479 * function copies fence data to user-space in a fail-safe manner.
2480 */
2481void vmw_kms_helper_buffer_finish(struct vmw_private *dev_priv,
2482 struct drm_file *file_priv,
2483 struct vmw_dma_buffer *buf,
2484 struct vmw_fence_obj **out_fence,
2485 struct drm_vmw_fence_rep __user *
2486 user_fence_rep)
2487{
2488 struct vmw_fence_obj *fence;
2489 uint32_t handle;
2490 int ret;
2491
2492 ret = vmw_execbuf_fence_commands(file_priv, dev_priv, &fence,
2493 file_priv ? &handle : NULL);
2494 if (buf)
2495 vmw_fence_single_bo(&buf->base, fence);
2496 if (file_priv)
2497 vmw_execbuf_copy_fence_user(dev_priv, vmw_fpriv(file_priv),
2498 ret, user_fence_rep, fence,
Sinclair Yehc906965d2017-07-05 01:49:32 -07002499 handle, -1, NULL);
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002500 if (out_fence)
2501 *out_fence = fence;
2502 else
2503 vmw_fence_obj_unreference(&fence);
2504
2505 vmw_kms_helper_buffer_revert(buf);
2506}
2507
2508
2509/**
2510 * vmw_kms_helper_resource_revert - Undo the actions of
2511 * vmw_kms_helper_resource_prepare.
2512 *
2513 * @res: Pointer to the resource. Typically a surface.
2514 *
2515 * Helper to be used if an error forces the caller to undo the actions of
2516 * vmw_kms_helper_resource_prepare.
2517 */
Thomas Hellstrom73a88252018-03-21 10:18:38 +01002518void vmw_kms_helper_resource_revert(struct vmw_validation_ctx *ctx)
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002519{
Thomas Hellstrom73a88252018-03-21 10:18:38 +01002520 struct vmw_resource *res = ctx->res;
2521
2522 vmw_kms_helper_buffer_revert(ctx->buf);
2523 vmw_dmabuf_unreference(&ctx->buf);
Thomas Hellstromd80efd52015-08-10 10:39:35 -07002524 vmw_resource_unreserve(res, false, NULL, 0);
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002525 mutex_unlock(&res->dev_priv->cmdbuf_mutex);
2526}
2527
2528/**
2529 * vmw_kms_helper_resource_prepare - Reserve and validate a resource before
2530 * command submission.
2531 *
2532 * @res: Pointer to the resource. Typically a surface.
2533 * @interruptible: Whether to perform waits as interruptible.
2534 *
2535 * Reserves and validates also the backup buffer if a guest-backed resource.
2536 * Returns 0 on success, negative error code on failure. -ERESTARTSYS if
2537 * interrupted by a signal.
2538 */
2539int vmw_kms_helper_resource_prepare(struct vmw_resource *res,
Thomas Hellstrom73a88252018-03-21 10:18:38 +01002540 bool interruptible,
2541 struct vmw_validation_ctx *ctx)
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002542{
2543 int ret = 0;
2544
Thomas Hellstrom73a88252018-03-21 10:18:38 +01002545 ctx->buf = NULL;
2546 ctx->res = res;
2547
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002548 if (interruptible)
2549 ret = mutex_lock_interruptible(&res->dev_priv->cmdbuf_mutex);
2550 else
2551 mutex_lock(&res->dev_priv->cmdbuf_mutex);
2552
2553 if (unlikely(ret != 0))
2554 return -ERESTARTSYS;
2555
2556 ret = vmw_resource_reserve(res, interruptible, false);
2557 if (ret)
2558 goto out_unlock;
2559
2560 if (res->backup) {
2561 ret = vmw_kms_helper_buffer_prepare(res->dev_priv, res->backup,
2562 interruptible,
Thomas Hellstromef86cfe2018-01-16 11:07:30 +01002563 res->dev_priv->has_mob,
2564 false);
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002565 if (ret)
2566 goto out_unreserve;
Thomas Hellstrom73a88252018-03-21 10:18:38 +01002567
2568 ctx->buf = vmw_dmabuf_reference(res->backup);
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002569 }
2570 ret = vmw_resource_validate(res);
2571 if (ret)
2572 goto out_revert;
2573 return 0;
2574
2575out_revert:
Thomas Hellstrom73a88252018-03-21 10:18:38 +01002576 vmw_kms_helper_buffer_revert(ctx->buf);
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002577out_unreserve:
Thomas Hellstromd80efd52015-08-10 10:39:35 -07002578 vmw_resource_unreserve(res, false, NULL, 0);
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002579out_unlock:
2580 mutex_unlock(&res->dev_priv->cmdbuf_mutex);
2581 return ret;
2582}
2583
2584/**
2585 * vmw_kms_helper_resource_finish - Unreserve and fence a resource after
2586 * kms command submission.
2587 *
2588 * @res: Pointer to the resource. Typically a surface.
2589 * @out_fence: Optional pointer to a fence pointer. If non-NULL, a
2590 * ref-counted fence pointer is returned here.
2591 */
Thomas Hellstrom73a88252018-03-21 10:18:38 +01002592void vmw_kms_helper_resource_finish(struct vmw_validation_ctx *ctx,
2593 struct vmw_fence_obj **out_fence)
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002594{
Thomas Hellstrom73a88252018-03-21 10:18:38 +01002595 struct vmw_resource *res = ctx->res;
2596
2597 if (ctx->buf || out_fence)
2598 vmw_kms_helper_buffer_finish(res->dev_priv, NULL, ctx->buf,
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002599 out_fence, NULL);
2600
Thomas Hellstrom13f149d2018-04-26 09:59:30 +02002601 vmw_dmabuf_unreference(&ctx->buf);
Thomas Hellstromd80efd52015-08-10 10:39:35 -07002602 vmw_resource_unreserve(res, false, NULL, 0);
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002603 mutex_unlock(&res->dev_priv->cmdbuf_mutex);
2604}
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07002605
2606/**
2607 * vmw_kms_update_proxy - Helper function to update a proxy surface from
2608 * its backing MOB.
2609 *
2610 * @res: Pointer to the surface resource
2611 * @clips: Clip rects in framebuffer (surface) space.
2612 * @num_clips: Number of clips in @clips.
2613 * @increment: Integer with which to increment the clip counter when looping.
2614 * Used to skip a predetermined number of clip rects.
2615 *
2616 * This function makes sure the proxy surface is updated from its backing MOB
2617 * using the region given by @clips. The surface resource @res and its backing
2618 * MOB needs to be reserved and validated on call.
2619 */
2620int vmw_kms_update_proxy(struct vmw_resource *res,
2621 const struct drm_clip_rect *clips,
2622 unsigned num_clips,
2623 int increment)
2624{
2625 struct vmw_private *dev_priv = res->dev_priv;
2626 struct drm_vmw_size *size = &vmw_res_to_srf(res)->base_size;
2627 struct {
2628 SVGA3dCmdHeader header;
2629 SVGA3dCmdUpdateGBImage body;
2630 } *cmd;
2631 SVGA3dBox *box;
2632 size_t copy_size = 0;
2633 int i;
2634
2635 if (!clips)
2636 return 0;
2637
2638 cmd = vmw_fifo_reserve(dev_priv, sizeof(*cmd) * num_clips);
2639 if (!cmd) {
2640 DRM_ERROR("Couldn't reserve fifo space for proxy surface "
2641 "update.\n");
2642 return -ENOMEM;
2643 }
2644
2645 for (i = 0; i < num_clips; ++i, clips += increment, ++cmd) {
2646 box = &cmd->body.box;
2647
2648 cmd->header.id = SVGA_3D_CMD_UPDATE_GB_IMAGE;
2649 cmd->header.size = sizeof(cmd->body);
2650 cmd->body.image.sid = res->id;
2651 cmd->body.image.face = 0;
2652 cmd->body.image.mipmap = 0;
2653
2654 if (clips->x1 > size->width || clips->x2 > size->width ||
2655 clips->y1 > size->height || clips->y2 > size->height) {
2656 DRM_ERROR("Invalid clips outsize of framebuffer.\n");
2657 return -EINVAL;
2658 }
2659
2660 box->x = clips->x1;
2661 box->y = clips->y1;
2662 box->z = 0;
2663 box->w = clips->x2 - clips->x1;
2664 box->h = clips->y2 - clips->y1;
2665 box->d = 1;
2666
2667 copy_size += sizeof(*cmd);
2668 }
2669
2670 vmw_fifo_commit(dev_priv, copy_size);
2671
2672 return 0;
2673}
Thomas Hellstroma2787242015-06-29 12:55:07 -07002674
2675int vmw_kms_fbdev_init_data(struct vmw_private *dev_priv,
2676 unsigned unit,
2677 u32 max_width,
2678 u32 max_height,
2679 struct drm_connector **p_con,
2680 struct drm_crtc **p_crtc,
2681 struct drm_display_mode **p_mode)
2682{
2683 struct drm_connector *con;
2684 struct vmw_display_unit *du;
2685 struct drm_display_mode *mode;
2686 int i = 0;
Thomas Hellstrom21fbd082018-04-26 09:48:55 +02002687 int ret = 0;
Thomas Hellstroma2787242015-06-29 12:55:07 -07002688
Thomas Hellstrom21fbd082018-04-26 09:48:55 +02002689 mutex_lock(&dev_priv->dev->mode_config.mutex);
Thomas Hellstroma2787242015-06-29 12:55:07 -07002690 list_for_each_entry(con, &dev_priv->dev->mode_config.connector_list,
2691 head) {
2692 if (i == unit)
2693 break;
2694
2695 ++i;
2696 }
2697
2698 if (i != unit) {
2699 DRM_ERROR("Could not find initial display unit.\n");
Thomas Hellstrom21fbd082018-04-26 09:48:55 +02002700 ret = -EINVAL;
2701 goto out_unlock;
Thomas Hellstroma2787242015-06-29 12:55:07 -07002702 }
2703
2704 if (list_empty(&con->modes))
2705 (void) vmw_du_connector_fill_modes(con, max_width, max_height);
2706
2707 if (list_empty(&con->modes)) {
2708 DRM_ERROR("Could not find initial display mode.\n");
Thomas Hellstrom21fbd082018-04-26 09:48:55 +02002709 ret = -EINVAL;
2710 goto out_unlock;
Thomas Hellstroma2787242015-06-29 12:55:07 -07002711 }
2712
2713 du = vmw_connector_to_du(con);
2714 *p_con = con;
2715 *p_crtc = &du->crtc;
2716
2717 list_for_each_entry(mode, &con->modes, head) {
2718 if (mode->type & DRM_MODE_TYPE_PREFERRED)
2719 break;
2720 }
2721
2722 if (mode->type & DRM_MODE_TYPE_PREFERRED)
2723 *p_mode = mode;
2724 else {
2725 WARN_ONCE(true, "Could not find initial preferred mode.\n");
2726 *p_mode = list_first_entry(&con->modes,
2727 struct drm_display_mode,
2728 head);
2729 }
2730
Thomas Hellstrom21fbd082018-04-26 09:48:55 +02002731 out_unlock:
2732 mutex_unlock(&dev_priv->dev->mode_config.mutex);
2733
2734 return ret;
Thomas Hellstroma2787242015-06-29 12:55:07 -07002735}
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002736
2737/**
2738 * vmw_kms_del_active - unregister a crtc binding to the implicit framebuffer
2739 *
2740 * @dev_priv: Pointer to a device private struct.
2741 * @du: The display unit of the crtc.
2742 */
2743void vmw_kms_del_active(struct vmw_private *dev_priv,
2744 struct vmw_display_unit *du)
2745{
Thomas Hellstrom93cd1682016-05-03 11:24:35 +02002746 mutex_lock(&dev_priv->global_kms_state_mutex);
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002747 if (du->active_implicit) {
2748 if (--(dev_priv->num_implicit) == 0)
2749 dev_priv->implicit_fb = NULL;
2750 du->active_implicit = false;
2751 }
Thomas Hellstrom93cd1682016-05-03 11:24:35 +02002752 mutex_unlock(&dev_priv->global_kms_state_mutex);
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002753}
2754
2755/**
2756 * vmw_kms_add_active - register a crtc binding to an implicit framebuffer
2757 *
2758 * @vmw_priv: Pointer to a device private struct.
2759 * @du: The display unit of the crtc.
2760 * @vfb: The implicit framebuffer
2761 *
2762 * Registers a binding to an implicit framebuffer.
2763 */
2764void vmw_kms_add_active(struct vmw_private *dev_priv,
2765 struct vmw_display_unit *du,
2766 struct vmw_framebuffer *vfb)
2767{
Thomas Hellstrom93cd1682016-05-03 11:24:35 +02002768 mutex_lock(&dev_priv->global_kms_state_mutex);
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002769 WARN_ON_ONCE(!dev_priv->num_implicit && dev_priv->implicit_fb);
2770
2771 if (!du->active_implicit && du->is_implicit) {
2772 dev_priv->implicit_fb = vfb;
2773 du->active_implicit = true;
2774 dev_priv->num_implicit++;
2775 }
Thomas Hellstrom93cd1682016-05-03 11:24:35 +02002776 mutex_unlock(&dev_priv->global_kms_state_mutex);
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002777}
2778
2779/**
2780 * vmw_kms_screen_object_flippable - Check whether we can page-flip a crtc.
2781 *
2782 * @dev_priv: Pointer to device-private struct.
2783 * @crtc: The crtc we want to flip.
2784 *
2785 * Returns true or false depending whether it's OK to flip this crtc
2786 * based on the criterion that we must not have more than one implicit
2787 * frame-buffer at any one time.
2788 */
2789bool vmw_kms_crtc_flippable(struct vmw_private *dev_priv,
2790 struct drm_crtc *crtc)
2791{
2792 struct vmw_display_unit *du = vmw_crtc_to_du(crtc);
Thomas Hellstrom93cd1682016-05-03 11:24:35 +02002793 bool ret;
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002794
Thomas Hellstrom93cd1682016-05-03 11:24:35 +02002795 mutex_lock(&dev_priv->global_kms_state_mutex);
2796 ret = !du->is_implicit || dev_priv->num_implicit == 1;
2797 mutex_unlock(&dev_priv->global_kms_state_mutex);
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002798
Thomas Hellstrom93cd1682016-05-03 11:24:35 +02002799 return ret;
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002800}
2801
2802/**
2803 * vmw_kms_update_implicit_fb - Update the implicit fb.
2804 *
2805 * @dev_priv: Pointer to device-private struct.
2806 * @crtc: The crtc the new implicit frame-buffer is bound to.
2807 */
2808void vmw_kms_update_implicit_fb(struct vmw_private *dev_priv,
2809 struct drm_crtc *crtc)
2810{
2811 struct vmw_display_unit *du = vmw_crtc_to_du(crtc);
Ville Syrjäläec8a31a2018-05-25 21:50:35 +03002812 struct drm_plane *plane = crtc->primary;
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002813 struct vmw_framebuffer *vfb;
2814
Thomas Hellstrom93cd1682016-05-03 11:24:35 +02002815 mutex_lock(&dev_priv->global_kms_state_mutex);
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002816
2817 if (!du->is_implicit)
Thomas Hellstrom93cd1682016-05-03 11:24:35 +02002818 goto out_unlock;
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002819
Ville Syrjäläec8a31a2018-05-25 21:50:35 +03002820 vfb = vmw_framebuffer_to_vfb(plane->state->fb);
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002821 WARN_ON_ONCE(dev_priv->num_implicit != 1 &&
2822 dev_priv->implicit_fb != vfb);
2823
2824 dev_priv->implicit_fb = vfb;
Thomas Hellstrom93cd1682016-05-03 11:24:35 +02002825out_unlock:
2826 mutex_unlock(&dev_priv->global_kms_state_mutex);
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002827}
Thomas Hellstrom76404ac2016-02-12 09:55:45 +01002828
2829/**
2830 * vmw_kms_create_implicit_placement_proparty - Set up the implicit placement
2831 * property.
2832 *
2833 * @dev_priv: Pointer to a device private struct.
2834 * @immutable: Whether the property is immutable.
2835 *
2836 * Sets up the implicit placement property unless it's already set up.
2837 */
2838void
2839vmw_kms_create_implicit_placement_property(struct vmw_private *dev_priv,
2840 bool immutable)
2841{
2842 if (dev_priv->implicit_placement_property)
2843 return;
2844
2845 dev_priv->implicit_placement_property =
2846 drm_property_create_range(dev_priv->dev,
2847 immutable ?
2848 DRM_MODE_PROP_IMMUTABLE : 0,
2849 "implicit_placement", 0, 1);
2850
2851}
Sinclair Yeh904bb5e2017-03-23 14:29:22 -07002852
2853
2854/**
2855 * vmw_kms_set_config - Wrapper around drm_atomic_helper_set_config
2856 *
2857 * @set: The configuration to set.
2858 *
2859 * The vmwgfx Xorg driver doesn't assign the mode::type member, which
2860 * when drm_mode_set_crtcinfo is called as part of the configuration setting
2861 * causes it to return incorrect crtc dimensions causing severe problems in
2862 * the vmwgfx modesetting. So explicitly clear that member before calling
2863 * into drm_atomic_helper_set_config.
2864 */
Dave Airlie320d8c32017-04-03 16:30:24 +10002865int vmw_kms_set_config(struct drm_mode_set *set,
2866 struct drm_modeset_acquire_ctx *ctx)
Sinclair Yeh904bb5e2017-03-23 14:29:22 -07002867{
2868 if (set && set->mode)
2869 set->mode->type = 0;
2870
Dave Airlie320d8c32017-04-03 16:30:24 +10002871 return drm_atomic_helper_set_config(set, ctx);
Sinclair Yeh904bb5e2017-03-23 14:29:22 -07002872}
Thomas Hellstromc3b9b162018-03-22 10:26:37 +01002873
2874
2875/**
2876 * vmw_kms_suspend - Save modesetting state and turn modesetting off.
2877 *
2878 * @dev: Pointer to the drm device
2879 * Return: 0 on success. Negative error code on failure.
2880 */
2881int vmw_kms_suspend(struct drm_device *dev)
2882{
2883 struct vmw_private *dev_priv = vmw_priv(dev);
2884
2885 dev_priv->suspend_state = drm_atomic_helper_suspend(dev);
2886 if (IS_ERR(dev_priv->suspend_state)) {
2887 int ret = PTR_ERR(dev_priv->suspend_state);
2888
2889 DRM_ERROR("Failed kms suspend: %d\n", ret);
2890 dev_priv->suspend_state = NULL;
2891
2892 return ret;
2893 }
2894
2895 return 0;
2896}
2897
2898
2899/**
2900 * vmw_kms_resume - Re-enable modesetting and restore state
2901 *
2902 * @dev: Pointer to the drm device
2903 * Return: 0 on success. Negative error code on failure.
2904 *
2905 * State is resumed from a previous vmw_kms_suspend(). It's illegal
2906 * to call this function without a previous vmw_kms_suspend().
2907 */
2908int vmw_kms_resume(struct drm_device *dev)
2909{
2910 struct vmw_private *dev_priv = vmw_priv(dev);
2911 int ret;
2912
2913 if (WARN_ON(!dev_priv->suspend_state))
2914 return 0;
2915
2916 ret = drm_atomic_helper_resume(dev, dev_priv->suspend_state);
2917 dev_priv->suspend_state = NULL;
2918
2919 return ret;
2920}
Dave Airlie2b4f44ee2018-03-28 14:30:41 +10002921
2922/**
Thomas Hellstrom140bcaa2018-03-08 10:07:37 +01002923 * vmw_kms_lost_device - Notify kms that modesetting capabilities will be lost
2924 *
2925 * @dev: Pointer to the drm device
2926 */
2927void vmw_kms_lost_device(struct drm_device *dev)
2928{
2929 drm_atomic_helper_shutdown(dev);
2930}