blob: 5d50e45ae2742608ca639805d815cbff3ef29faa [file] [log] [blame]
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001/**************************************************************************
2 *
Sinclair Yeh54fbde82015-07-29 12:38:02 -07003 * Copyright © 2009-2015 VMware, Inc., Palo Alto, CA., USA
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00004 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
21 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
22 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
23 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
24 * USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28#include "vmwgfx_kms.h"
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
Jakob Bornecrantz56d1c782011-10-04 20:13:22 +020034
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000035/* Might need a hrtimer here? */
36#define VMWGFX_PRESENT_RATE ((HZ / 60 > 0) ? HZ / 60 : 1)
37
Sinclair Yehc8261a92015-06-26 01:23:42 -070038void vmw_du_cleanup(struct vmw_display_unit *du)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000039{
Sinclair Yeh36cc79b2017-03-23 11:28:11 -070040 drm_plane_cleanup(&du->primary);
41 drm_plane_cleanup(&du->cursor);
42
Thomas Wood34ea3d32014-05-29 16:57:41 +010043 drm_connector_unregister(&du->connector);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000044 drm_crtc_cleanup(&du->crtc);
45 drm_encoder_cleanup(&du->encoder);
46 drm_connector_cleanup(&du->connector);
47}
48
49/*
50 * Display Unit Cursor functions
51 */
52
Sinclair Yeh36cc79b2017-03-23 11:28:11 -070053static int vmw_cursor_update_image(struct vmw_private *dev_priv,
54 u32 *image, u32 width, u32 height,
55 u32 hotspotX, u32 hotspotY)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000056{
57 struct {
58 u32 cmd;
59 SVGAFifoCmdDefineAlphaCursor cursor;
60 } *cmd;
61 u32 image_size = width * height * 4;
62 u32 cmd_size = sizeof(*cmd) + image_size;
63
64 if (!image)
65 return -EINVAL;
66
67 cmd = vmw_fifo_reserve(dev_priv, cmd_size);
68 if (unlikely(cmd == NULL)) {
69 DRM_ERROR("Fifo reserve failed.\n");
70 return -ENOMEM;
71 }
72
73 memset(cmd, 0, sizeof(*cmd));
74
75 memcpy(&cmd[1], image, image_size);
76
Thomas Hellstromb9eb1a62015-04-02 02:39:45 -070077 cmd->cmd = SVGA_CMD_DEFINE_ALPHA_CURSOR;
78 cmd->cursor.id = 0;
79 cmd->cursor.width = width;
80 cmd->cursor.height = height;
81 cmd->cursor.hotspotX = hotspotX;
82 cmd->cursor.hotspotY = hotspotY;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000083
Thomas Hellstrom4e0858a2015-11-05 02:18:55 -080084 vmw_fifo_commit_flush(dev_priv, cmd_size);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000085
86 return 0;
87}
88
Sinclair Yeh36cc79b2017-03-23 11:28:11 -070089static int vmw_cursor_update_dmabuf(struct vmw_private *dev_priv,
90 struct vmw_dma_buffer *dmabuf,
91 u32 width, u32 height,
92 u32 hotspotX, u32 hotspotY)
Jakob Bornecrantz6a91d972011-11-28 13:19:10 +010093{
94 struct ttm_bo_kmap_obj map;
95 unsigned long kmap_offset;
96 unsigned long kmap_num;
97 void *virtual;
98 bool dummy;
99 int ret;
100
101 kmap_offset = 0;
102 kmap_num = (width*height*4 + PAGE_SIZE - 1) >> PAGE_SHIFT;
103
Christian Königdfd5e502016-04-06 11:12:03 +0200104 ret = ttm_bo_reserve(&dmabuf->base, true, false, NULL);
Jakob Bornecrantz6a91d972011-11-28 13:19:10 +0100105 if (unlikely(ret != 0)) {
106 DRM_ERROR("reserve failed\n");
107 return -EINVAL;
108 }
109
110 ret = ttm_bo_kmap(&dmabuf->base, kmap_offset, kmap_num, &map);
111 if (unlikely(ret != 0))
112 goto err_unreserve;
113
114 virtual = ttm_kmap_obj_virtual(&map, &dummy);
115 ret = vmw_cursor_update_image(dev_priv, virtual, width, height,
116 hotspotX, hotspotY);
117
118 ttm_bo_kunmap(&map);
119err_unreserve:
120 ttm_bo_unreserve(&dmabuf->base);
121
122 return ret;
123}
124
125
Sinclair Yeh36cc79b2017-03-23 11:28:11 -0700126static void vmw_cursor_update_position(struct vmw_private *dev_priv,
127 bool show, int x, int y)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000128{
Thomas Hellstromb76ff5e2015-10-28 10:44:04 +0100129 u32 *fifo_mem = dev_priv->mmio_virt;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000130 uint32_t count;
131
Sinclair Yeh36cc79b2017-03-23 11:28:11 -0700132 spin_lock(&dev_priv->cursor_lock);
Thomas Hellstromb76ff5e2015-10-28 10:44:04 +0100133 vmw_mmio_write(show ? 1 : 0, fifo_mem + SVGA_FIFO_CURSOR_ON);
134 vmw_mmio_write(x, fifo_mem + SVGA_FIFO_CURSOR_X);
135 vmw_mmio_write(y, fifo_mem + SVGA_FIFO_CURSOR_Y);
136 count = vmw_mmio_read(fifo_mem + SVGA_FIFO_CURSOR_COUNT);
137 vmw_mmio_write(++count, fifo_mem + SVGA_FIFO_CURSOR_COUNT);
Sinclair Yeh36cc79b2017-03-23 11:28:11 -0700138 spin_unlock(&dev_priv->cursor_lock);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000139}
140
Thomas Hellstrom8fbf9d92015-11-26 19:45:16 +0100141
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000142void vmw_kms_cursor_snoop(struct vmw_surface *srf,
143 struct ttm_object_file *tfile,
144 struct ttm_buffer_object *bo,
145 SVGA3dCmdHeader *header)
146{
147 struct ttm_bo_kmap_obj map;
148 unsigned long kmap_offset;
149 unsigned long kmap_num;
150 SVGA3dCopyBox *box;
151 unsigned box_count;
152 void *virtual;
153 bool dummy;
154 struct vmw_dma_cmd {
155 SVGA3dCmdHeader header;
156 SVGA3dCmdSurfaceDMA dma;
157 } *cmd;
Jakob Bornecrantz2ac86372011-11-03 21:03:08 +0100158 int i, ret;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000159
160 cmd = container_of(header, struct vmw_dma_cmd, header);
161
162 /* No snooper installed */
163 if (!srf->snooper.image)
164 return;
165
166 if (cmd->dma.host.face != 0 || cmd->dma.host.mipmap != 0) {
167 DRM_ERROR("face and mipmap for cursors should never != 0\n");
168 return;
169 }
170
171 if (cmd->header.size < 64) {
172 DRM_ERROR("at least one full copy box must be given\n");
173 return;
174 }
175
176 box = (SVGA3dCopyBox *)&cmd[1];
177 box_count = (cmd->header.size - sizeof(SVGA3dCmdSurfaceDMA)) /
178 sizeof(SVGA3dCopyBox);
179
Jakob Bornecrantz2ac86372011-11-03 21:03:08 +0100180 if (cmd->dma.guest.ptr.offset % PAGE_SIZE ||
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000181 box->x != 0 || box->y != 0 || box->z != 0 ||
182 box->srcx != 0 || box->srcy != 0 || box->srcz != 0 ||
Jakob Bornecrantz2ac86372011-11-03 21:03:08 +0100183 box->d != 1 || box_count != 1) {
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000184 /* TODO handle none page aligned offsets */
Jakob Bornecrantz2ac86372011-11-03 21:03:08 +0100185 /* TODO handle more dst & src != 0 */
186 /* TODO handle more then one copy */
187 DRM_ERROR("Cant snoop dma request for cursor!\n");
188 DRM_ERROR("(%u, %u, %u) (%u, %u, %u) (%ux%ux%u) %u %u\n",
189 box->srcx, box->srcy, box->srcz,
190 box->x, box->y, box->z,
191 box->w, box->h, box->d, box_count,
192 cmd->dma.guest.ptr.offset);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000193 return;
194 }
195
196 kmap_offset = cmd->dma.guest.ptr.offset >> PAGE_SHIFT;
197 kmap_num = (64*64*4) >> PAGE_SHIFT;
198
Christian Königdfd5e502016-04-06 11:12:03 +0200199 ret = ttm_bo_reserve(bo, true, false, NULL);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000200 if (unlikely(ret != 0)) {
201 DRM_ERROR("reserve failed\n");
202 return;
203 }
204
205 ret = ttm_bo_kmap(bo, kmap_offset, kmap_num, &map);
206 if (unlikely(ret != 0))
207 goto err_unreserve;
208
209 virtual = ttm_kmap_obj_virtual(&map, &dummy);
210
Jakob Bornecrantz2ac86372011-11-03 21:03:08 +0100211 if (box->w == 64 && cmd->dma.guest.pitch == 64*4) {
212 memcpy(srf->snooper.image, virtual, 64*64*4);
213 } else {
214 /* Image is unsigned pointer. */
215 for (i = 0; i < box->h; i++)
216 memcpy(srf->snooper.image + i * 64,
217 virtual + i * cmd->dma.guest.pitch,
218 box->w * 4);
219 }
220
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000221 srf->snooper.age++;
222
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000223 ttm_bo_kunmap(&map);
224err_unreserve:
225 ttm_bo_unreserve(bo);
226}
227
Thomas Hellstrom8fbf9d92015-11-26 19:45:16 +0100228/**
229 * vmw_kms_legacy_hotspot_clear - Clear legacy hotspots
230 *
231 * @dev_priv: Pointer to the device private struct.
232 *
233 * Clears all legacy hotspots.
234 */
235void vmw_kms_legacy_hotspot_clear(struct vmw_private *dev_priv)
236{
237 struct drm_device *dev = dev_priv->dev;
238 struct vmw_display_unit *du;
239 struct drm_crtc *crtc;
240
241 drm_modeset_lock_all(dev);
242 drm_for_each_crtc(crtc, dev) {
243 du = vmw_crtc_to_du(crtc);
244
245 du->hotspot_x = 0;
246 du->hotspot_y = 0;
247 }
248 drm_modeset_unlock_all(dev);
249}
250
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000251void vmw_kms_cursor_post_execbuf(struct vmw_private *dev_priv)
252{
253 struct drm_device *dev = dev_priv->dev;
254 struct vmw_display_unit *du;
255 struct drm_crtc *crtc;
256
257 mutex_lock(&dev->mode_config.mutex);
258
259 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
260 du = vmw_crtc_to_du(crtc);
261 if (!du->cursor_surface ||
262 du->cursor_age == du->cursor_surface->snooper.age)
263 continue;
264
265 du->cursor_age = du->cursor_surface->snooper.age;
266 vmw_cursor_update_image(dev_priv,
267 du->cursor_surface->snooper.image,
Thomas Hellstrom8fbf9d92015-11-26 19:45:16 +0100268 64, 64,
269 du->hotspot_x + du->core_hotspot_x,
270 du->hotspot_y + du->core_hotspot_y);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000271 }
272
273 mutex_unlock(&dev->mode_config.mutex);
274}
275
Sinclair Yeh36cc79b2017-03-23 11:28:11 -0700276
Sinclair Yeh36cc79b2017-03-23 11:28:11 -0700277void vmw_du_cursor_plane_destroy(struct drm_plane *plane)
278{
279 vmw_cursor_update_position(plane->dev->dev_private, false, 0, 0);
280
281 drm_plane_cleanup(plane);
282}
283
284
285void vmw_du_primary_plane_destroy(struct drm_plane *plane)
286{
287 drm_plane_cleanup(plane);
288
289 /* Planes are static in our case so we don't free it */
290}
291
292
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700293/**
294 * vmw_du_vps_unpin_surf - unpins resource associated with a framebuffer surface
295 *
296 * @vps: plane state associated with the display surface
297 * @unreference: true if we also want to unreference the display.
298 */
299void vmw_du_plane_unpin_surf(struct vmw_plane_state *vps,
300 bool unreference)
301{
302 if (vps->surf) {
303 if (vps->pinned) {
304 vmw_resource_unpin(&vps->surf->res);
305 vps->pinned--;
306 }
307
308 if (unreference) {
309 if (vps->pinned)
310 DRM_ERROR("Surface still pinned\n");
311 vmw_surface_unreference(&vps->surf);
312 }
313 }
314}
315
316
317/**
318 * vmw_du_plane_cleanup_fb - Unpins the cursor
319 *
320 * @plane: display plane
321 * @old_state: Contains the FB to clean up
322 *
323 * Unpins the framebuffer surface
324 *
325 * Returns 0 on success
326 */
327void
328vmw_du_plane_cleanup_fb(struct drm_plane *plane,
329 struct drm_plane_state *old_state)
330{
331 struct vmw_plane_state *vps = vmw_plane_state_to_vps(old_state);
332
333 vmw_du_plane_unpin_surf(vps, false);
334}
335
336
337/**
338 * vmw_du_cursor_plane_prepare_fb - Readies the cursor by referencing it
339 *
340 * @plane: display plane
341 * @new_state: info on the new plane state, including the FB
342 *
343 * Returns 0 on success
344 */
345int
346vmw_du_cursor_plane_prepare_fb(struct drm_plane *plane,
347 struct drm_plane_state *new_state)
348{
349 struct drm_framebuffer *fb = new_state->fb;
350 struct vmw_plane_state *vps = vmw_plane_state_to_vps(new_state);
351
352
353 if (vps->surf)
354 vmw_surface_unreference(&vps->surf);
355
356 if (vps->dmabuf)
357 vmw_dmabuf_unreference(&vps->dmabuf);
358
359 if (fb) {
360 if (vmw_framebuffer_to_vfb(fb)->dmabuf) {
361 vps->dmabuf = vmw_framebuffer_to_vfbd(fb)->buffer;
362 vmw_dmabuf_reference(vps->dmabuf);
363 } else {
364 vps->surf = vmw_framebuffer_to_vfbs(fb)->surface;
365 vmw_surface_reference(vps->surf);
366 }
367 }
368
369 return 0;
370}
371
372
373void
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700374vmw_du_cursor_plane_atomic_update(struct drm_plane *plane,
375 struct drm_plane_state *old_state)
376{
377 struct drm_crtc *crtc = plane->state->crtc ?: old_state->crtc;
378 struct vmw_private *dev_priv = vmw_priv(crtc->dev);
379 struct vmw_display_unit *du = vmw_crtc_to_du(crtc);
380 struct vmw_plane_state *vps = vmw_plane_state_to_vps(plane->state);
381 s32 hotspot_x, hotspot_y;
382 int ret = 0;
383
384
385 hotspot_x = du->hotspot_x;
386 hotspot_y = du->hotspot_y;
Sinclair Yeh14979ad2017-07-17 23:26:21 -0700387
388 if (plane->fb) {
389 hotspot_x += plane->fb->hot_x;
390 hotspot_y += plane->fb->hot_y;
391 }
392
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700393 du->cursor_surface = vps->surf;
394 du->cursor_dmabuf = vps->dmabuf;
395
396 /* setup new image */
397 if (vps->surf) {
398 du->cursor_age = du->cursor_surface->snooper.age;
399
400 ret = vmw_cursor_update_image(dev_priv,
401 vps->surf->snooper.image,
402 64, 64, hotspot_x, hotspot_y);
403 } else if (vps->dmabuf) {
404 ret = vmw_cursor_update_dmabuf(dev_priv, vps->dmabuf,
405 plane->state->crtc_w,
406 plane->state->crtc_h,
407 hotspot_x, hotspot_y);
408 } else {
409 vmw_cursor_update_position(dev_priv, false, 0, 0);
410 return;
411 }
412
413 if (!ret) {
414 du->cursor_x = plane->state->crtc_x + du->set_gui_x;
415 du->cursor_y = plane->state->crtc_y + du->set_gui_y;
416
417 vmw_cursor_update_position(dev_priv, true,
418 du->cursor_x + hotspot_x,
419 du->cursor_y + hotspot_y);
Sinclair Yeh14979ad2017-07-17 23:26:21 -0700420
421 du->core_hotspot_x = hotspot_x - du->hotspot_x;
422 du->core_hotspot_y = hotspot_y - du->hotspot_y;
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700423 } else {
424 DRM_ERROR("Failed to update cursor image\n");
425 }
426}
427
428
429/**
430 * vmw_du_primary_plane_atomic_check - check if the new state is okay
431 *
432 * @plane: display plane
433 * @state: info on the new plane state, including the FB
434 *
435 * Check if the new state is settable given the current state. Other
436 * than what the atomic helper checks, we care about crtc fitting
437 * the FB and maintaining one active framebuffer.
438 *
439 * Returns 0 on success
440 */
441int vmw_du_primary_plane_atomic_check(struct drm_plane *plane,
442 struct drm_plane_state *state)
443{
444 struct drm_framebuffer *new_fb = state->fb;
445 bool visible;
446
447 struct drm_rect src = {
448 .x1 = state->src_x,
449 .y1 = state->src_y,
450 .x2 = state->src_x + state->src_w,
451 .y2 = state->src_y + state->src_h,
452 };
453 struct drm_rect dest = {
454 .x1 = state->crtc_x,
455 .y1 = state->crtc_y,
456 .x2 = state->crtc_x + state->crtc_w,
457 .y2 = state->crtc_y + state->crtc_h,
458 };
459 struct drm_rect clip = dest;
460 int ret;
461
462 ret = drm_plane_helper_check_update(plane, state->crtc, new_fb,
463 &src, &dest, &clip,
Robert Fossc2c446a2017-05-19 16:50:17 -0400464 DRM_MODE_ROTATE_0,
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700465 DRM_PLANE_HELPER_NO_SCALING,
466 DRM_PLANE_HELPER_NO_SCALING,
467 false, true, &visible);
468
469
470 if (!ret && new_fb) {
471 struct drm_crtc *crtc = state->crtc;
472 struct vmw_connector_state *vcs;
473 struct vmw_display_unit *du = vmw_crtc_to_du(crtc);
474 struct vmw_private *dev_priv = vmw_priv(crtc->dev);
475 struct vmw_framebuffer *vfb = vmw_framebuffer_to_vfb(new_fb);
476
477 vcs = vmw_connector_state_to_vcs(du->connector.state);
478
479 if ((dest.x2 > new_fb->width ||
480 dest.y2 > new_fb->height)) {
481 DRM_ERROR("CRTC area outside of framebuffer\n");
482 return -EINVAL;
483 }
484
485 /* Only one active implicit framebuffer at a time. */
486 mutex_lock(&dev_priv->global_kms_state_mutex);
487 if (vcs->is_implicit && dev_priv->implicit_fb &&
488 !(dev_priv->num_implicit == 1 && du->active_implicit)
489 && dev_priv->implicit_fb != vfb) {
490 DRM_ERROR("Multiple implicit framebuffers "
491 "not supported.\n");
492 ret = -EINVAL;
493 }
494 mutex_unlock(&dev_priv->global_kms_state_mutex);
495 }
496
497
498 return ret;
499}
500
501
502/**
503 * vmw_du_cursor_plane_atomic_check - check if the new state is okay
504 *
505 * @plane: cursor plane
506 * @state: info on the new plane state
507 *
508 * This is a chance to fail if the new cursor state does not fit
509 * our requirements.
510 *
511 * Returns 0 on success
512 */
513int vmw_du_cursor_plane_atomic_check(struct drm_plane *plane,
514 struct drm_plane_state *new_state)
515{
516 int ret = 0;
517 struct vmw_surface *surface = NULL;
518 struct drm_framebuffer *fb = new_state->fb;
519
520
521 /* Turning off */
522 if (!fb)
523 return ret;
524
525 /* A lot of the code assumes this */
526 if (new_state->crtc_w != 64 || new_state->crtc_h != 64) {
527 DRM_ERROR("Invalid cursor dimensions (%d, %d)\n",
528 new_state->crtc_w, new_state->crtc_h);
529 ret = -EINVAL;
530 }
531
532 if (!vmw_framebuffer_to_vfb(fb)->dmabuf)
533 surface = vmw_framebuffer_to_vfbs(fb)->surface;
534
535 if (surface && !surface->snooper.image) {
536 DRM_ERROR("surface not suitable for cursor\n");
537 ret = -EINVAL;
538 }
539
540 return ret;
541}
542
543
Sinclair Yeh06ec4192017-03-23 13:14:54 -0700544int vmw_du_crtc_atomic_check(struct drm_crtc *crtc,
545 struct drm_crtc_state *new_state)
546{
547 struct vmw_display_unit *du = vmw_crtc_to_du(new_state->crtc);
548 int connector_mask = 1 << drm_connector_index(&du->connector);
549 bool has_primary = new_state->plane_mask &
550 BIT(drm_plane_index(crtc->primary));
551
552 /* We always want to have an active plane with an active CRTC */
553 if (has_primary != new_state->enable)
554 return -EINVAL;
555
556
557 if (new_state->connector_mask != connector_mask &&
558 new_state->connector_mask != 0) {
559 DRM_ERROR("Invalid connectors configuration\n");
560 return -EINVAL;
561 }
562
563 /*
564 * Our virtual device does not have a dot clock, so use the logical
565 * clock value as the dot clock.
566 */
567 if (new_state->mode.crtc_clock == 0)
568 new_state->adjusted_mode.crtc_clock = new_state->mode.clock;
569
570 return 0;
571}
572
573
574void vmw_du_crtc_atomic_begin(struct drm_crtc *crtc,
575 struct drm_crtc_state *old_crtc_state)
576{
577}
578
579
580void vmw_du_crtc_atomic_flush(struct drm_crtc *crtc,
581 struct drm_crtc_state *old_crtc_state)
582{
583 struct drm_pending_vblank_event *event = crtc->state->event;
584
585 if (event) {
586 crtc->state->event = NULL;
587
588 spin_lock_irq(&crtc->dev->event_lock);
589 if (drm_crtc_vblank_get(crtc) == 0)
590 drm_crtc_arm_vblank_event(crtc, event);
591 else
592 drm_crtc_send_vblank_event(crtc, event);
593 spin_unlock_irq(&crtc->dev->event_lock);
594 }
595
596}
597
598
Sinclair Yeh9c2542a2017-03-23 11:33:39 -0700599/**
600 * vmw_du_crtc_duplicate_state - duplicate crtc state
601 * @crtc: DRM crtc
602 *
603 * Allocates and returns a copy of the crtc state (both common and
604 * vmw-specific) for the specified crtc.
605 *
606 * Returns: The newly allocated crtc state, or NULL on failure.
607 */
608struct drm_crtc_state *
609vmw_du_crtc_duplicate_state(struct drm_crtc *crtc)
610{
611 struct drm_crtc_state *state;
612 struct vmw_crtc_state *vcs;
613
614 if (WARN_ON(!crtc->state))
615 return NULL;
616
617 vcs = kmemdup(crtc->state, sizeof(*vcs), GFP_KERNEL);
618
619 if (!vcs)
620 return NULL;
621
622 state = &vcs->base;
623
624 __drm_atomic_helper_crtc_duplicate_state(crtc, state);
625
626 return state;
627}
628
629
630/**
631 * vmw_du_crtc_reset - creates a blank vmw crtc state
632 * @crtc: DRM crtc
633 *
634 * Resets the atomic state for @crtc by freeing the state pointer (which
635 * might be NULL, e.g. at driver load time) and allocating a new empty state
636 * object.
637 */
638void vmw_du_crtc_reset(struct drm_crtc *crtc)
639{
640 struct vmw_crtc_state *vcs;
641
642
643 if (crtc->state) {
644 __drm_atomic_helper_crtc_destroy_state(crtc->state);
645
646 kfree(vmw_crtc_state_to_vcs(crtc->state));
647 }
648
649 vcs = kzalloc(sizeof(*vcs), GFP_KERNEL);
650
651 if (!vcs) {
652 DRM_ERROR("Cannot allocate vmw_crtc_state\n");
653 return;
654 }
655
656 crtc->state = &vcs->base;
657 crtc->state->crtc = crtc;
658}
659
660
661/**
662 * vmw_du_crtc_destroy_state - destroy crtc state
663 * @crtc: DRM crtc
664 * @state: state object to destroy
665 *
666 * Destroys the crtc state (both common and vmw-specific) for the
667 * specified plane.
668 */
669void
670vmw_du_crtc_destroy_state(struct drm_crtc *crtc,
671 struct drm_crtc_state *state)
672{
673 drm_atomic_helper_crtc_destroy_state(crtc, state);
674}
675
676
Sinclair Yehcc5ec452017-03-23 11:36:05 -0700677/**
678 * vmw_du_plane_duplicate_state - duplicate plane state
679 * @plane: drm plane
680 *
681 * Allocates and returns a copy of the plane state (both common and
682 * vmw-specific) for the specified plane.
683 *
684 * Returns: The newly allocated plane state, or NULL on failure.
685 */
686struct drm_plane_state *
687vmw_du_plane_duplicate_state(struct drm_plane *plane)
688{
689 struct drm_plane_state *state;
690 struct vmw_plane_state *vps;
691
692 vps = kmemdup(plane->state, sizeof(*vps), GFP_KERNEL);
693
694 if (!vps)
695 return NULL;
696
697 vps->pinned = 0;
698
Sinclair Yeh810b3e162017-03-23 15:39:16 -0700699 /* Mapping is managed by prepare_fb/cleanup_fb */
700 memset(&vps->guest_map, 0, sizeof(vps->guest_map));
701 memset(&vps->host_map, 0, sizeof(vps->host_map));
702 vps->cpp = 0;
703
Sinclair Yehcc5ec452017-03-23 11:36:05 -0700704 /* Each ref counted resource needs to be acquired again */
705 if (vps->surf)
706 (void) vmw_surface_reference(vps->surf);
707
708 if (vps->dmabuf)
709 (void) vmw_dmabuf_reference(vps->dmabuf);
710
711 state = &vps->base;
712
713 __drm_atomic_helper_plane_duplicate_state(plane, state);
714
715 return state;
716}
717
718
719/**
720 * vmw_du_plane_reset - creates a blank vmw plane state
721 * @plane: drm plane
722 *
723 * Resets the atomic state for @plane by freeing the state pointer (which might
724 * be NULL, e.g. at driver load time) and allocating a new empty state object.
725 */
726void vmw_du_plane_reset(struct drm_plane *plane)
727{
728 struct vmw_plane_state *vps;
729
730
731 if (plane->state)
732 vmw_du_plane_destroy_state(plane, plane->state);
733
734 vps = kzalloc(sizeof(*vps), GFP_KERNEL);
735
736 if (!vps) {
737 DRM_ERROR("Cannot allocate vmw_plane_state\n");
738 return;
739 }
740
741 plane->state = &vps->base;
742 plane->state->plane = plane;
Robert Fossc2c446a2017-05-19 16:50:17 -0400743 plane->state->rotation = DRM_MODE_ROTATE_0;
Sinclair Yehcc5ec452017-03-23 11:36:05 -0700744}
745
746
747/**
748 * vmw_du_plane_destroy_state - destroy plane state
749 * @plane: DRM plane
750 * @state: state object to destroy
751 *
752 * Destroys the plane state (both common and vmw-specific) for the
753 * specified plane.
754 */
755void
756vmw_du_plane_destroy_state(struct drm_plane *plane,
757 struct drm_plane_state *state)
758{
759 struct vmw_plane_state *vps = vmw_plane_state_to_vps(state);
760
761
Sinclair Yeh810b3e162017-03-23 15:39:16 -0700762 /* Should have been freed by cleanup_fb */
763 if (vps->guest_map.virtual) {
764 DRM_ERROR("Guest mapping not freed\n");
765 ttm_bo_kunmap(&vps->guest_map);
766 }
767
768 if (vps->host_map.virtual) {
769 DRM_ERROR("Host mapping not freed\n");
770 ttm_bo_kunmap(&vps->host_map);
771 }
772
Sinclair Yehcc5ec452017-03-23 11:36:05 -0700773 if (vps->surf)
774 vmw_surface_unreference(&vps->surf);
775
776 if (vps->dmabuf)
777 vmw_dmabuf_unreference(&vps->dmabuf);
778
779 drm_atomic_helper_plane_destroy_state(plane, state);
780}
781
782
Sinclair Yehd7721ca2017-03-23 11:48:44 -0700783/**
784 * vmw_du_connector_duplicate_state - duplicate connector state
785 * @connector: DRM connector
786 *
787 * Allocates and returns a copy of the connector state (both common and
788 * vmw-specific) for the specified connector.
789 *
790 * Returns: The newly allocated connector state, or NULL on failure.
791 */
792struct drm_connector_state *
793vmw_du_connector_duplicate_state(struct drm_connector *connector)
794{
795 struct drm_connector_state *state;
796 struct vmw_connector_state *vcs;
797
798 if (WARN_ON(!connector->state))
799 return NULL;
800
801 vcs = kmemdup(connector->state, sizeof(*vcs), GFP_KERNEL);
802
803 if (!vcs)
804 return NULL;
805
806 state = &vcs->base;
807
808 __drm_atomic_helper_connector_duplicate_state(connector, state);
809
810 return state;
811}
812
813
814/**
815 * vmw_du_connector_reset - creates a blank vmw connector state
816 * @connector: DRM connector
817 *
818 * Resets the atomic state for @connector by freeing the state pointer (which
819 * might be NULL, e.g. at driver load time) and allocating a new empty state
820 * object.
821 */
822void vmw_du_connector_reset(struct drm_connector *connector)
823{
824 struct vmw_connector_state *vcs;
825
826
827 if (connector->state) {
828 __drm_atomic_helper_connector_destroy_state(connector->state);
829
830 kfree(vmw_connector_state_to_vcs(connector->state));
831 }
832
833 vcs = kzalloc(sizeof(*vcs), GFP_KERNEL);
834
835 if (!vcs) {
836 DRM_ERROR("Cannot allocate vmw_connector_state\n");
837 return;
838 }
839
840 __drm_atomic_helper_connector_reset(connector, &vcs->base);
841}
842
843
844/**
845 * vmw_du_connector_destroy_state - destroy connector state
846 * @connector: DRM connector
847 * @state: state object to destroy
848 *
849 * Destroys the connector state (both common and vmw-specific) for the
850 * specified plane.
851 */
852void
853vmw_du_connector_destroy_state(struct drm_connector *connector,
854 struct drm_connector_state *state)
855{
856 drm_atomic_helper_connector_destroy_state(connector, state);
857}
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000858/*
859 * Generic framebuffer code
860 */
861
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000862/*
863 * Surface framebuffer code
864 */
865
Rashika Kheria847c5962014-01-06 22:18:10 +0530866static void vmw_framebuffer_surface_destroy(struct drm_framebuffer *framebuffer)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000867{
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200868 struct vmw_framebuffer_surface *vfbs =
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000869 vmw_framebuffer_to_vfbs(framebuffer);
870
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000871 drm_framebuffer_cleanup(framebuffer);
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200872 vmw_surface_unreference(&vfbs->surface);
Thomas Hellstroma2787242015-06-29 12:55:07 -0700873 if (vfbs->base.user_obj)
874 ttm_base_object_unref(&vfbs->base.user_obj);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000875
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200876 kfree(vfbs);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000877}
878
Rashika Kheria847c5962014-01-06 22:18:10 +0530879static int vmw_framebuffer_surface_dirty(struct drm_framebuffer *framebuffer,
Thomas Hellstrom02b00162010-10-05 12:43:02 +0200880 struct drm_file *file_priv,
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000881 unsigned flags, unsigned color,
882 struct drm_clip_rect *clips,
883 unsigned num_clips)
884{
885 struct vmw_private *dev_priv = vmw_priv(framebuffer->dev);
886 struct vmw_framebuffer_surface *vfbs =
887 vmw_framebuffer_to_vfbs(framebuffer);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000888 struct drm_clip_rect norect;
Jakob Bornecrantz5deb65c2011-10-04 20:13:18 +0200889 int ret, inc = 1;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000890
Sinclair Yehc8261a92015-06-26 01:23:42 -0700891 /* Legacy Display Unit does not support 3D */
892 if (dev_priv->active_display_unit == vmw_du_legacy)
Jakob Bornecrantz01e81412011-10-04 20:13:24 +0200893 return -EINVAL;
894
Ville Syrjälä73e9efd2013-12-04 14:13:58 +0200895 drm_modeset_lock_all(dev_priv->dev);
896
Thomas Hellstrom294adf72014-02-27 12:34:51 +0100897 ret = ttm_read_lock(&dev_priv->reservation_sem, true);
Ville Syrjälä73e9efd2013-12-04 14:13:58 +0200898 if (unlikely(ret != 0)) {
899 drm_modeset_unlock_all(dev_priv->dev);
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200900 return ret;
Ville Syrjälä73e9efd2013-12-04 14:13:58 +0200901 }
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200902
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000903 if (!num_clips) {
904 num_clips = 1;
905 clips = &norect;
906 norect.x1 = norect.y1 = 0;
907 norect.x2 = framebuffer->width;
908 norect.y2 = framebuffer->height;
909 } else if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY) {
910 num_clips /= 2;
911 inc = 2; /* skip source rects */
912 }
913
Sinclair Yehc8261a92015-06-26 01:23:42 -0700914 if (dev_priv->active_display_unit == vmw_du_screen_object)
Thomas Hellstrom10b1e0c2015-06-26 02:14:27 -0700915 ret = vmw_kms_sou_do_surface_dirty(dev_priv, &vfbs->base,
916 clips, NULL, NULL, 0, 0,
917 num_clips, inc, NULL);
Sinclair Yeh35c05122015-06-26 01:42:06 -0700918 else
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -0700919 ret = vmw_kms_stdu_surface_dirty(dev_priv, &vfbs->base,
920 clips, NULL, NULL, 0, 0,
921 num_clips, inc, NULL);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000922
Thomas Hellstrom3eab3d92015-06-25 11:57:56 -0700923 vmw_fifo_flush(dev_priv, false);
Thomas Hellstrom294adf72014-02-27 12:34:51 +0100924 ttm_read_unlock(&dev_priv->reservation_sem);
Ville Syrjälä73e9efd2013-12-04 14:13:58 +0200925
926 drm_modeset_unlock_all(dev_priv->dev);
927
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000928 return 0;
929}
930
Thomas Hellstrom10b1e0c2015-06-26 02:14:27 -0700931/**
932 * vmw_kms_readback - Perform a readback from the screen system to
933 * a dma-buffer backed framebuffer.
934 *
935 * @dev_priv: Pointer to the device private structure.
936 * @file_priv: Pointer to a struct drm_file identifying the caller.
937 * Must be set to NULL if @user_fence_rep is NULL.
938 * @vfb: Pointer to the dma-buffer backed framebuffer.
939 * @user_fence_rep: User-space provided structure for fence information.
940 * Must be set to non-NULL if @file_priv is non-NULL.
941 * @vclips: Array of clip rects.
942 * @num_clips: Number of clip rects in @vclips.
943 *
944 * Returns 0 on success, negative error code on failure. -ERESTARTSYS if
945 * interrupted.
946 */
947int vmw_kms_readback(struct vmw_private *dev_priv,
948 struct drm_file *file_priv,
949 struct vmw_framebuffer *vfb,
950 struct drm_vmw_fence_rep __user *user_fence_rep,
951 struct drm_vmw_rect *vclips,
952 uint32_t num_clips)
953{
954 switch (dev_priv->active_display_unit) {
955 case vmw_du_screen_object:
956 return vmw_kms_sou_readback(dev_priv, file_priv, vfb,
957 user_fence_rep, vclips, num_clips);
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -0700958 case vmw_du_screen_target:
959 return vmw_kms_stdu_dma(dev_priv, file_priv, vfb,
960 user_fence_rep, NULL, vclips, num_clips,
961 1, false, true);
Thomas Hellstrom10b1e0c2015-06-26 02:14:27 -0700962 default:
963 WARN_ONCE(true,
964 "Readback called with invalid display system.\n");
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -0700965}
Thomas Hellstrom10b1e0c2015-06-26 02:14:27 -0700966
967 return -ENOSYS;
968}
969
970
Ville Syrjäläd7955fc2015-12-15 12:21:15 +0100971static const struct drm_framebuffer_funcs vmw_framebuffer_surface_funcs = {
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000972 .destroy = vmw_framebuffer_surface_destroy,
973 .dirty = vmw_framebuffer_surface_dirty,
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000974};
975
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200976static int vmw_kms_new_framebuffer_surface(struct vmw_private *dev_priv,
977 struct vmw_surface *surface,
978 struct vmw_framebuffer **out,
Daniel Vetterdabdcdc2016-12-02 08:07:40 +0100979 const struct drm_mode_fb_cmd2
Sinclair Yehf89c6c32015-06-26 01:54:28 -0700980 *mode_cmd,
981 bool is_dmabuf_proxy)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000982
983{
984 struct drm_device *dev = dev_priv->dev;
985 struct vmw_framebuffer_surface *vfbs;
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200986 enum SVGA3dSurfaceFormat format;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000987 int ret;
Daniel Vetterdabdcdc2016-12-02 08:07:40 +0100988 struct drm_format_name_buf format_name;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000989
Sinclair Yehc8261a92015-06-26 01:23:42 -0700990 /* 3D is only supported on HWv8 and newer hosts */
991 if (dev_priv->active_display_unit == vmw_du_legacy)
Jakob Bornecrantz01e81412011-10-04 20:13:24 +0200992 return -ENOSYS;
993
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200994 /*
995 * Sanity checks.
996 */
997
Jakob Bornecrantze7ac9212011-11-28 13:19:12 +0100998 /* Surface must be marked as a scanout. */
999 if (unlikely(!surface->scanout))
1000 return -EINVAL;
1001
Thomas Hellstromd3216a02010-10-05 12:42:59 +02001002 if (unlikely(surface->mip_levels[0] != 1 ||
1003 surface->num_sizes != 1 ||
Thomas Hellstromb360a3c2014-01-15 08:51:36 +01001004 surface->base_size.width < mode_cmd->width ||
1005 surface->base_size.height < mode_cmd->height ||
1006 surface->base_size.depth != 1)) {
Thomas Hellstromd3216a02010-10-05 12:42:59 +02001007 DRM_ERROR("Incompatible surface dimensions "
1008 "for requested mode.\n");
1009 return -EINVAL;
1010 }
1011
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001012 switch (mode_cmd->pixel_format) {
1013 case DRM_FORMAT_ARGB8888:
Thomas Hellstromd3216a02010-10-05 12:42:59 +02001014 format = SVGA3D_A8R8G8B8;
1015 break;
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001016 case DRM_FORMAT_XRGB8888:
Thomas Hellstromd3216a02010-10-05 12:42:59 +02001017 format = SVGA3D_X8R8G8B8;
1018 break;
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001019 case DRM_FORMAT_RGB565:
Thomas Hellstromd3216a02010-10-05 12:42:59 +02001020 format = SVGA3D_R5G6B5;
1021 break;
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001022 case DRM_FORMAT_XRGB1555:
Thomas Hellstromd3216a02010-10-05 12:42:59 +02001023 format = SVGA3D_A1R5G5B5;
1024 break;
1025 default:
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001026 DRM_ERROR("Invalid pixel format: %s\n",
1027 drm_get_format_name(mode_cmd->pixel_format, &format_name));
Thomas Hellstromd3216a02010-10-05 12:42:59 +02001028 return -EINVAL;
1029 }
1030
Thomas Hellstromd80efd52015-08-10 10:39:35 -07001031 /*
1032 * For DX, surface format validation is done when surface->scanout
1033 * is set.
1034 */
1035 if (!dev_priv->has_dx && format != surface->format) {
Thomas Hellstromd3216a02010-10-05 12:42:59 +02001036 DRM_ERROR("Invalid surface format for requested mode.\n");
1037 return -EINVAL;
1038 }
1039
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001040 vfbs = kzalloc(sizeof(*vfbs), GFP_KERNEL);
1041 if (!vfbs) {
1042 ret = -ENOMEM;
1043 goto out_err1;
1044 }
1045
Ville Syrjäläa3f913c2016-12-14 22:48:59 +02001046 drm_helper_mode_fill_fb_struct(dev, &vfbs->base.base, mode_cmd);
Sinclair Yeh05c95012015-08-11 22:53:39 -07001047 vfbs->surface = vmw_surface_reference(surface);
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001048 vfbs->base.user_handle = mode_cmd->handles[0];
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001049 vfbs->is_dmabuf_proxy = is_dmabuf_proxy;
Thomas Hellstrom3a939a52010-10-05 12:43:03 +02001050
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001051 *out = &vfbs->base;
1052
Daniel Vetter80f0b5a2012-12-13 23:39:01 +01001053 ret = drm_framebuffer_init(dev, &vfbs->base.base,
1054 &vmw_framebuffer_surface_funcs);
1055 if (ret)
Sinclair Yeh05c95012015-08-11 22:53:39 -07001056 goto out_err2;
Daniel Vetter80f0b5a2012-12-13 23:39:01 +01001057
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001058 return 0;
1059
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001060out_err2:
Sinclair Yeh05c95012015-08-11 22:53:39 -07001061 vmw_surface_unreference(&surface);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001062 kfree(vfbs);
1063out_err1:
1064 return ret;
1065}
1066
1067/*
1068 * Dmabuf framebuffer code
1069 */
1070
Rashika Kheria847c5962014-01-06 22:18:10 +05301071static void vmw_framebuffer_dmabuf_destroy(struct drm_framebuffer *framebuffer)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001072{
1073 struct vmw_framebuffer_dmabuf *vfbd =
1074 vmw_framebuffer_to_vfbd(framebuffer);
1075
1076 drm_framebuffer_cleanup(framebuffer);
1077 vmw_dmabuf_unreference(&vfbd->buffer);
Thomas Hellstroma2787242015-06-29 12:55:07 -07001078 if (vfbd->base.user_obj)
1079 ttm_base_object_unref(&vfbd->base.user_obj);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001080
1081 kfree(vfbd);
1082}
1083
Rashika Kheria847c5962014-01-06 22:18:10 +05301084static int vmw_framebuffer_dmabuf_dirty(struct drm_framebuffer *framebuffer,
Thomas Hellstrom02b00162010-10-05 12:43:02 +02001085 struct drm_file *file_priv,
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001086 unsigned flags, unsigned color,
1087 struct drm_clip_rect *clips,
1088 unsigned num_clips)
1089{
1090 struct vmw_private *dev_priv = vmw_priv(framebuffer->dev);
Jakob Bornecrantz5deb65c2011-10-04 20:13:18 +02001091 struct vmw_framebuffer_dmabuf *vfbd =
1092 vmw_framebuffer_to_vfbd(framebuffer);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001093 struct drm_clip_rect norect;
Jakob Bornecrantz5deb65c2011-10-04 20:13:18 +02001094 int ret, increment = 1;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001095
Ville Syrjälä73e9efd2013-12-04 14:13:58 +02001096 drm_modeset_lock_all(dev_priv->dev);
1097
Thomas Hellstrom294adf72014-02-27 12:34:51 +01001098 ret = ttm_read_lock(&dev_priv->reservation_sem, true);
Ville Syrjälä73e9efd2013-12-04 14:13:58 +02001099 if (unlikely(ret != 0)) {
1100 drm_modeset_unlock_all(dev_priv->dev);
Thomas Hellstrom3a939a52010-10-05 12:43:03 +02001101 return ret;
Ville Syrjälä73e9efd2013-12-04 14:13:58 +02001102 }
Thomas Hellstrom3a939a52010-10-05 12:43:03 +02001103
Thomas Hellstromdf1c93b2010-01-13 22:28:36 +01001104 if (!num_clips) {
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001105 num_clips = 1;
1106 clips = &norect;
1107 norect.x1 = norect.y1 = 0;
1108 norect.x2 = framebuffer->width;
1109 norect.y2 = framebuffer->height;
1110 } else if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY) {
1111 num_clips /= 2;
1112 increment = 2;
1113 }
1114
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001115 switch (dev_priv->active_display_unit) {
1116 case vmw_du_screen_target:
1117 ret = vmw_kms_stdu_dma(dev_priv, NULL, &vfbd->base, NULL,
1118 clips, NULL, num_clips, increment,
1119 true, true);
1120 break;
1121 case vmw_du_screen_object:
Thomas Hellstrom10b1e0c2015-06-26 02:14:27 -07001122 ret = vmw_kms_sou_do_dmabuf_dirty(dev_priv, &vfbd->base,
Thomas Hellstrom897b8182016-02-12 08:32:08 +01001123 clips, NULL, num_clips,
1124 increment, true, NULL);
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001125 break;
Thomas Hellstrom352b20dc2015-06-29 12:57:37 -07001126 case vmw_du_legacy:
1127 ret = vmw_kms_ldu_do_dmabuf_dirty(dev_priv, &vfbd->base, 0, 0,
1128 clips, num_clips, increment);
1129 break;
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001130 default:
Thomas Hellstrom352b20dc2015-06-29 12:57:37 -07001131 ret = -EINVAL;
1132 WARN_ONCE(true, "Dirty called with invalid display system.\n");
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001133 break;
Jakob Bornecrantz56d1c782011-10-04 20:13:22 +02001134 }
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001135
Thomas Hellstrom3eab3d92015-06-25 11:57:56 -07001136 vmw_fifo_flush(dev_priv, false);
Thomas Hellstrom294adf72014-02-27 12:34:51 +01001137 ttm_read_unlock(&dev_priv->reservation_sem);
Ville Syrjälä73e9efd2013-12-04 14:13:58 +02001138
1139 drm_modeset_unlock_all(dev_priv->dev);
1140
Jakob Bornecrantz5deb65c2011-10-04 20:13:18 +02001141 return ret;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001142}
1143
Ville Syrjäläd7955fc2015-12-15 12:21:15 +01001144static const struct drm_framebuffer_funcs vmw_framebuffer_dmabuf_funcs = {
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001145 .destroy = vmw_framebuffer_dmabuf_destroy,
1146 .dirty = vmw_framebuffer_dmabuf_dirty,
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001147};
1148
Jakob Bornecrantz497a3ff2011-10-04 20:13:14 +02001149/**
Jakob Bornecrantz497a3ff2011-10-04 20:13:14 +02001150 * Pin the dmabuffer to the start of vram.
1151 */
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001152static int vmw_framebuffer_pin(struct vmw_framebuffer *vfb)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001153{
1154 struct vmw_private *dev_priv = vmw_priv(vfb->base.dev);
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001155 struct vmw_dma_buffer *buf;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001156 int ret;
1157
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001158 buf = vfb->dmabuf ? vmw_framebuffer_to_vfbd(&vfb->base)->buffer :
1159 vmw_framebuffer_to_vfbs(&vfb->base)->surface->res.backup;
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +02001160
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001161 if (!buf)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001162 return 0;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001163
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001164 switch (dev_priv->active_display_unit) {
1165 case vmw_du_legacy:
1166 vmw_overlay_pause_all(dev_priv);
1167 ret = vmw_dmabuf_pin_in_start_of_vram(dev_priv, buf, false);
1168 vmw_overlay_resume_all(dev_priv);
1169 break;
1170 case vmw_du_screen_object:
1171 case vmw_du_screen_target:
1172 if (vfb->dmabuf)
1173 return vmw_dmabuf_pin_in_vram_or_gmr(dev_priv, buf,
1174 false);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001175
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001176 return vmw_dmabuf_pin_in_placement(dev_priv, buf,
1177 &vmw_mob_placement, false);
1178 default:
1179 return -EINVAL;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001180 }
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001181
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001182 return ret;
1183}
1184
1185static int vmw_framebuffer_unpin(struct vmw_framebuffer *vfb)
1186{
1187 struct vmw_private *dev_priv = vmw_priv(vfb->base.dev);
1188 struct vmw_dma_buffer *buf;
1189
1190 buf = vfb->dmabuf ? vmw_framebuffer_to_vfbd(&vfb->base)->buffer :
1191 vmw_framebuffer_to_vfbs(&vfb->base)->surface->res.backup;
1192
1193 if (WARN_ON(!buf))
1194 return 0;
1195
1196 return vmw_dmabuf_unpin(dev_priv, buf, false);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001197}
1198
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001199/**
1200 * vmw_create_dmabuf_proxy - create a proxy surface for the DMA buf
1201 *
1202 * @dev: DRM device
1203 * @mode_cmd: parameters for the new surface
1204 * @dmabuf_mob: MOB backing the DMA buf
1205 * @srf_out: newly created surface
1206 *
1207 * When the content FB is a DMA buf, we create a surface as a proxy to the
1208 * same buffer. This way we can do a surface copy rather than a surface DMA.
1209 * This is a more efficient approach
1210 *
1211 * RETURNS:
1212 * 0 on success, error code otherwise
1213 */
1214static int vmw_create_dmabuf_proxy(struct drm_device *dev,
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001215 const struct drm_mode_fb_cmd2 *mode_cmd,
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001216 struct vmw_dma_buffer *dmabuf_mob,
1217 struct vmw_surface **srf_out)
1218{
1219 uint32_t format;
Thomas Hellstrom8cd9f252017-01-19 10:53:02 -08001220 struct drm_vmw_size content_base_size = {0};
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001221 struct vmw_resource *res;
Thomas Hellstroma50e2bf2016-01-08 20:29:40 +01001222 unsigned int bytes_pp;
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001223 struct drm_format_name_buf format_name;
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001224 int ret;
1225
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001226 switch (mode_cmd->pixel_format) {
1227 case DRM_FORMAT_ARGB8888:
1228 case DRM_FORMAT_XRGB8888:
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001229 format = SVGA3D_X8R8G8B8;
Thomas Hellstroma50e2bf2016-01-08 20:29:40 +01001230 bytes_pp = 4;
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001231 break;
1232
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001233 case DRM_FORMAT_RGB565:
1234 case DRM_FORMAT_XRGB1555:
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001235 format = SVGA3D_R5G6B5;
Thomas Hellstroma50e2bf2016-01-08 20:29:40 +01001236 bytes_pp = 2;
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001237 break;
1238
1239 case 8:
1240 format = SVGA3D_P8;
Thomas Hellstroma50e2bf2016-01-08 20:29:40 +01001241 bytes_pp = 1;
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001242 break;
1243
1244 default:
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001245 DRM_ERROR("Invalid framebuffer format %s\n",
1246 drm_get_format_name(mode_cmd->pixel_format, &format_name));
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001247 return -EINVAL;
1248 }
1249
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001250 content_base_size.width = mode_cmd->pitches[0] / bytes_pp;
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001251 content_base_size.height = mode_cmd->height;
1252 content_base_size.depth = 1;
1253
1254 ret = vmw_surface_gb_priv_define(dev,
1255 0, /* kernel visible only */
1256 0, /* flags */
1257 format,
1258 true, /* can be a scanout buffer */
1259 1, /* num of mip levels */
1260 0,
Thomas Hellstromd80efd52015-08-10 10:39:35 -07001261 0,
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001262 content_base_size,
1263 srf_out);
1264 if (ret) {
1265 DRM_ERROR("Failed to allocate proxy content buffer\n");
1266 return ret;
1267 }
1268
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001269 res = &(*srf_out)->res;
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001270
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001271 /* Reserve and switch the backing mob. */
1272 mutex_lock(&res->dev_priv->cmdbuf_mutex);
1273 (void) vmw_resource_reserve(res, false, true);
1274 vmw_dmabuf_unreference(&res->backup);
1275 res->backup = vmw_dmabuf_reference(dmabuf_mob);
1276 res->backup_offset = 0;
Thomas Hellstromd80efd52015-08-10 10:39:35 -07001277 vmw_resource_unreserve(res, false, NULL, 0);
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001278 mutex_unlock(&res->dev_priv->cmdbuf_mutex);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001279
1280 return 0;
1281}
1282
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001283
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001284
Thomas Hellstromd3216a02010-10-05 12:42:59 +02001285static int vmw_kms_new_framebuffer_dmabuf(struct vmw_private *dev_priv,
1286 struct vmw_dma_buffer *dmabuf,
1287 struct vmw_framebuffer **out,
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001288 const struct drm_mode_fb_cmd2
Thomas Hellstromd3216a02010-10-05 12:42:59 +02001289 *mode_cmd)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001290
1291{
1292 struct drm_device *dev = dev_priv->dev;
1293 struct vmw_framebuffer_dmabuf *vfbd;
Thomas Hellstromd3216a02010-10-05 12:42:59 +02001294 unsigned int requested_size;
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001295 struct drm_format_name_buf format_name;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001296 int ret;
1297
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001298 requested_size = mode_cmd->height * mode_cmd->pitches[0];
Thomas Hellstromd3216a02010-10-05 12:42:59 +02001299 if (unlikely(requested_size > dmabuf->base.num_pages * PAGE_SIZE)) {
1300 DRM_ERROR("Screen buffer object size is too small "
1301 "for requested mode.\n");
1302 return -EINVAL;
1303 }
1304
Jakob Bornecrantzc337ada2011-10-04 20:13:34 +02001305 /* Limited framebuffer color depth support for screen objects */
Sinclair Yehc8261a92015-06-26 01:23:42 -07001306 if (dev_priv->active_display_unit == vmw_du_screen_object) {
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001307 switch (mode_cmd->pixel_format) {
1308 case DRM_FORMAT_XRGB8888:
1309 case DRM_FORMAT_ARGB8888:
1310 break;
1311 case DRM_FORMAT_XRGB1555:
1312 case DRM_FORMAT_RGB565:
1313 break;
Jakob Bornecrantzc337ada2011-10-04 20:13:34 +02001314 default:
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001315 DRM_ERROR("Invalid pixel format: %s\n",
1316 drm_get_format_name(mode_cmd->pixel_format, &format_name));
Jakob Bornecrantzc337ada2011-10-04 20:13:34 +02001317 return -EINVAL;
1318 }
1319 }
1320
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001321 vfbd = kzalloc(sizeof(*vfbd), GFP_KERNEL);
1322 if (!vfbd) {
1323 ret = -ENOMEM;
1324 goto out_err1;
1325 }
1326
Ville Syrjäläa3f913c2016-12-14 22:48:59 +02001327 drm_helper_mode_fill_fb_struct(dev, &vfbd->base.base, mode_cmd);
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +02001328 vfbd->base.dmabuf = true;
Sinclair Yeh05c95012015-08-11 22:53:39 -07001329 vfbd->buffer = vmw_dmabuf_reference(dmabuf);
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001330 vfbd->base.user_handle = mode_cmd->handles[0];
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001331 *out = &vfbd->base;
1332
Daniel Vetter80f0b5a2012-12-13 23:39:01 +01001333 ret = drm_framebuffer_init(dev, &vfbd->base.base,
1334 &vmw_framebuffer_dmabuf_funcs);
1335 if (ret)
Sinclair Yeh05c95012015-08-11 22:53:39 -07001336 goto out_err2;
Daniel Vetter80f0b5a2012-12-13 23:39:01 +01001337
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001338 return 0;
1339
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001340out_err2:
Sinclair Yeh05c95012015-08-11 22:53:39 -07001341 vmw_dmabuf_unreference(&dmabuf);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001342 kfree(vfbd);
1343out_err1:
1344 return ret;
1345}
1346
Sinclair Yeh810b3e162017-03-23 15:39:16 -07001347
1348/**
1349 * vmw_kms_srf_ok - check if a surface can be created
1350 *
1351 * @width: requested width
1352 * @height: requested height
1353 *
1354 * Surfaces need to be less than texture size
1355 */
1356static bool
1357vmw_kms_srf_ok(struct vmw_private *dev_priv, uint32_t width, uint32_t height)
1358{
1359 if (width > dev_priv->texture_max_width ||
1360 height > dev_priv->texture_max_height)
1361 return false;
1362
1363 return true;
1364}
1365
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001366/**
1367 * vmw_kms_new_framebuffer - Create a new framebuffer.
1368 *
1369 * @dev_priv: Pointer to device private struct.
1370 * @dmabuf: Pointer to dma buffer to wrap the kms framebuffer around.
1371 * Either @dmabuf or @surface must be NULL.
1372 * @surface: Pointer to a surface to wrap the kms framebuffer around.
1373 * Either @dmabuf or @surface must be NULL.
1374 * @only_2d: No presents will occur to this dma buffer based framebuffer. This
1375 * Helps the code to do some important optimizations.
1376 * @mode_cmd: Frame-buffer metadata.
1377 */
1378struct vmw_framebuffer *
1379vmw_kms_new_framebuffer(struct vmw_private *dev_priv,
1380 struct vmw_dma_buffer *dmabuf,
1381 struct vmw_surface *surface,
1382 bool only_2d,
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001383 const struct drm_mode_fb_cmd2 *mode_cmd)
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001384{
Sinclair Yeh05c95012015-08-11 22:53:39 -07001385 struct vmw_framebuffer *vfb = NULL;
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001386 bool is_dmabuf_proxy = false;
1387 int ret;
1388
1389 /*
1390 * We cannot use the SurfaceDMA command in an non-accelerated VM,
1391 * therefore, wrap the DMA buf in a surface so we can use the
1392 * SurfaceCopy command.
1393 */
Sinclair Yeh810b3e162017-03-23 15:39:16 -07001394 if (vmw_kms_srf_ok(dev_priv, mode_cmd->width, mode_cmd->height) &&
1395 dmabuf && only_2d &&
Sinclair Yehbbd5fef2017-06-02 07:44:53 +02001396 mode_cmd->width > 64 && /* Don't create a proxy for cursor */
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001397 dev_priv->active_display_unit == vmw_du_screen_target) {
1398 ret = vmw_create_dmabuf_proxy(dev_priv->dev, mode_cmd,
1399 dmabuf, &surface);
1400 if (ret)
1401 return ERR_PTR(ret);
1402
1403 is_dmabuf_proxy = true;
1404 }
1405
1406 /* Create the new framebuffer depending one what we have */
Sinclair Yeh05c95012015-08-11 22:53:39 -07001407 if (surface) {
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001408 ret = vmw_kms_new_framebuffer_surface(dev_priv, surface, &vfb,
1409 mode_cmd,
1410 is_dmabuf_proxy);
Sinclair Yeh05c95012015-08-11 22:53:39 -07001411
1412 /*
1413 * vmw_create_dmabuf_proxy() adds a reference that is no longer
1414 * needed
1415 */
1416 if (is_dmabuf_proxy)
1417 vmw_surface_unreference(&surface);
1418 } else if (dmabuf) {
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001419 ret = vmw_kms_new_framebuffer_dmabuf(dev_priv, dmabuf, &vfb,
1420 mode_cmd);
Sinclair Yeh05c95012015-08-11 22:53:39 -07001421 } else {
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001422 BUG();
Sinclair Yeh05c95012015-08-11 22:53:39 -07001423 }
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001424
1425 if (ret)
1426 return ERR_PTR(ret);
1427
1428 vfb->pin = vmw_framebuffer_pin;
1429 vfb->unpin = vmw_framebuffer_unpin;
1430
1431 return vfb;
1432}
1433
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001434/*
1435 * Generic Kernel modesetting functions
1436 */
1437
1438static struct drm_framebuffer *vmw_kms_fb_create(struct drm_device *dev,
1439 struct drm_file *file_priv,
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001440 const struct drm_mode_fb_cmd2 *mode_cmd)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001441{
1442 struct vmw_private *dev_priv = vmw_priv(dev);
1443 struct ttm_object_file *tfile = vmw_fpriv(file_priv)->tfile;
1444 struct vmw_framebuffer *vfb = NULL;
1445 struct vmw_surface *surface = NULL;
1446 struct vmw_dma_buffer *bo = NULL;
Thomas Hellstrom90ff18b2011-10-04 20:13:32 +02001447 struct ttm_base_object *user_obj;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001448 int ret;
1449
Thomas Hellstromd3216a02010-10-05 12:42:59 +02001450 /**
1451 * This code should be conditioned on Screen Objects not being used.
1452 * If screen objects are used, we can allocate a GMR to hold the
1453 * requested framebuffer.
1454 */
1455
Xi Wang8a783892011-12-21 05:18:33 -05001456 if (!vmw_kms_validate_mode_vram(dev_priv,
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001457 mode_cmd->pitches[0],
1458 mode_cmd->height)) {
Sinclair Yehc8261a92015-06-26 01:23:42 -07001459 DRM_ERROR("Requested mode exceed bounding box limit.\n");
Jakob Bornecrantzd9826402011-11-03 21:03:04 +01001460 return ERR_PTR(-ENOMEM);
Thomas Hellstromd3216a02010-10-05 12:42:59 +02001461 }
1462
Thomas Hellstrom90ff18b2011-10-04 20:13:32 +02001463 /*
1464 * Take a reference on the user object of the resource
1465 * backing the kms fb. This ensures that user-space handle
1466 * lookups on that resource will always work as long as
1467 * it's registered with a kms framebuffer. This is important,
1468 * since vmw_execbuf_process identifies resources in the
1469 * command stream using user-space handles.
1470 */
1471
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001472 user_obj = ttm_base_object_lookup(tfile, mode_cmd->handles[0]);
Thomas Hellstrom90ff18b2011-10-04 20:13:32 +02001473 if (unlikely(user_obj == NULL)) {
1474 DRM_ERROR("Could not locate requested kms frame buffer.\n");
1475 return ERR_PTR(-ENOENT);
1476 }
1477
Thomas Hellstromd3216a02010-10-05 12:42:59 +02001478 /**
1479 * End conditioned code.
1480 */
1481
Jakob Bornecrantze7ac9212011-11-28 13:19:12 +01001482 /* returns either a dmabuf or surface */
1483 ret = vmw_user_lookup_handle(dev_priv, tfile,
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001484 mode_cmd->handles[0],
Jakob Bornecrantze7ac9212011-11-28 13:19:12 +01001485 &surface, &bo);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001486 if (ret)
Jakob Bornecrantze7ac9212011-11-28 13:19:12 +01001487 goto err_out;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001488
Sinclair Yeh810b3e162017-03-23 15:39:16 -07001489
1490 if (!bo &&
1491 !vmw_kms_srf_ok(dev_priv, mode_cmd->width, mode_cmd->height)) {
1492 DRM_ERROR("Surface size cannot exceed %dx%d",
1493 dev_priv->texture_max_width,
1494 dev_priv->texture_max_height);
1495 goto err_out;
1496 }
1497
1498
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001499 vfb = vmw_kms_new_framebuffer(dev_priv, bo, surface,
1500 !(dev_priv->capabilities & SVGA_CAP_3D),
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001501 mode_cmd);
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001502 if (IS_ERR(vfb)) {
1503 ret = PTR_ERR(vfb);
1504 goto err_out;
1505 }
Jakob Bornecrantz5ffdb652010-01-30 03:38:08 +00001506
Jakob Bornecrantze7ac9212011-11-28 13:19:12 +01001507err_out:
1508 /* vmw_user_lookup_handle takes one ref so does new_fb */
1509 if (bo)
1510 vmw_dmabuf_unreference(&bo);
1511 if (surface)
1512 vmw_surface_unreference(&surface);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001513
1514 if (ret) {
1515 DRM_ERROR("failed to create vmw_framebuffer: %i\n", ret);
Thomas Hellstrom90ff18b2011-10-04 20:13:32 +02001516 ttm_base_object_unref(&user_obj);
Chris Wilsoncce13ff2010-08-08 13:36:38 +01001517 return ERR_PTR(ret);
Thomas Hellstrom90ff18b2011-10-04 20:13:32 +02001518 } else
1519 vfb->user_obj = user_obj;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001520
1521 return &vfb->base;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001522}
1523
Sinclair Yehc46a3062017-03-23 14:24:53 -07001524
1525
1526/**
1527 * vmw_kms_atomic_check_modeset- validate state object for modeset changes
1528 *
1529 * @dev: DRM device
1530 * @state: the driver state object
1531 *
1532 * This is a simple wrapper around drm_atomic_helper_check_modeset() for
1533 * us to assign a value to mode->crtc_clock so that
1534 * drm_calc_timestamping_constants() won't throw an error message
1535 *
1536 * RETURNS
1537 * Zero for success or -errno
1538 */
Maarten Lankhorstbdc362f2017-07-12 10:13:33 +02001539static int
Sinclair Yehc46a3062017-03-23 14:24:53 -07001540vmw_kms_atomic_check_modeset(struct drm_device *dev,
1541 struct drm_atomic_state *state)
1542{
1543 struct drm_crtc_state *crtc_state;
1544 struct drm_crtc *crtc;
1545 struct vmw_private *dev_priv = vmw_priv(dev);
1546 int i;
1547
Maarten Lankhorstbdc362f2017-07-12 10:13:33 +02001548 for_each_new_crtc_in_state(state, crtc, crtc_state, i) {
Sinclair Yehc46a3062017-03-23 14:24:53 -07001549 unsigned long requested_bb_mem = 0;
1550
1551 if (dev_priv->active_display_unit == vmw_du_screen_target) {
1552 if (crtc->primary->fb) {
1553 int cpp = crtc->primary->fb->pitches[0] /
1554 crtc->primary->fb->width;
1555
1556 requested_bb_mem += crtc->mode.hdisplay * cpp *
1557 crtc->mode.vdisplay;
1558 }
1559
1560 if (requested_bb_mem > dev_priv->prim_bb_mem)
1561 return -EINVAL;
1562 }
1563 }
1564
1565 return drm_atomic_helper_check(dev, state);
1566}
1567
1568
Laurent Pincharte6ecefa2012-05-17 13:27:23 +02001569static const struct drm_mode_config_funcs vmw_kms_funcs = {
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001570 .fb_create = vmw_kms_fb_create,
Sinclair Yehc46a3062017-03-23 14:24:53 -07001571 .atomic_check = vmw_kms_atomic_check_modeset,
1572 .atomic_commit = drm_atomic_helper_commit,
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001573};
1574
Thomas Hellstromb9eb1a62015-04-02 02:39:45 -07001575static int vmw_kms_generic_present(struct vmw_private *dev_priv,
1576 struct drm_file *file_priv,
1577 struct vmw_framebuffer *vfb,
1578 struct vmw_surface *surface,
1579 uint32_t sid,
1580 int32_t destX, int32_t destY,
1581 struct drm_vmw_rect *clips,
1582 uint32_t num_clips)
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +02001583{
Thomas Hellstrom10b1e0c2015-06-26 02:14:27 -07001584 return vmw_kms_sou_do_surface_dirty(dev_priv, vfb, NULL, clips,
1585 &surface->res, destX, destY,
1586 num_clips, 1, NULL);
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +02001587}
1588
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001589
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001590int vmw_kms_present(struct vmw_private *dev_priv,
1591 struct drm_file *file_priv,
1592 struct vmw_framebuffer *vfb,
1593 struct vmw_surface *surface,
1594 uint32_t sid,
1595 int32_t destX, int32_t destY,
1596 struct drm_vmw_rect *clips,
1597 uint32_t num_clips)
1598{
Sinclair Yeh35c05122015-06-26 01:42:06 -07001599 int ret;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001600
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001601 switch (dev_priv->active_display_unit) {
1602 case vmw_du_screen_target:
1603 ret = vmw_kms_stdu_surface_dirty(dev_priv, vfb, NULL, clips,
1604 &surface->res, destX, destY,
1605 num_clips, 1, NULL);
1606 break;
1607 case vmw_du_screen_object:
1608 ret = vmw_kms_generic_present(dev_priv, file_priv, vfb, surface,
1609 sid, destX, destY, clips,
1610 num_clips);
1611 break;
1612 default:
1613 WARN_ONCE(true,
1614 "Present called with invalid display system.\n");
1615 ret = -ENOSYS;
1616 break;
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +02001617 }
Sinclair Yeh35c05122015-06-26 01:42:06 -07001618 if (ret)
1619 return ret;
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +02001620
Sinclair Yeh35c05122015-06-26 01:42:06 -07001621 vmw_fifo_flush(dev_priv, false);
Michel Dänzer0bef23f2011-08-31 07:42:50 +00001622
Sinclair Yeh35c05122015-06-26 01:42:06 -07001623 return 0;
Thomas Hellstrom7c4f7782010-06-01 11:38:17 +02001624}
1625
Thomas Hellstrom578e6092016-02-12 09:45:42 +01001626static void
1627vmw_kms_create_hotplug_mode_update_property(struct vmw_private *dev_priv)
1628{
1629 if (dev_priv->hotplug_mode_update_property)
1630 return;
1631
1632 dev_priv->hotplug_mode_update_property =
1633 drm_property_create_range(dev_priv->dev,
1634 DRM_MODE_PROP_IMMUTABLE,
1635 "hotplug_mode_update", 0, 1);
1636
1637 if (!dev_priv->hotplug_mode_update_property)
1638 return;
1639
1640}
1641
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +02001642int vmw_kms_init(struct vmw_private *dev_priv)
1643{
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001644 struct drm_device *dev = dev_priv->dev;
1645 int ret;
1646
1647 drm_mode_config_init(dev);
1648 dev->mode_config.funcs = &vmw_kms_funcs;
1649 dev->mode_config.min_width = 1;
1650 dev->mode_config.min_height = 1;
Sinclair Yeh65ade7d2015-07-16 10:49:13 -07001651 dev->mode_config.max_width = dev_priv->texture_max_width;
1652 dev->mode_config.max_height = dev_priv->texture_max_height;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001653
Thomas Hellstrom578e6092016-02-12 09:45:42 +01001654 drm_mode_create_suggested_offset_properties(dev);
1655 vmw_kms_create_hotplug_mode_update_property(dev_priv);
1656
Sinclair Yeh35c05122015-06-26 01:42:06 -07001657 ret = vmw_kms_stdu_init_display(dev_priv);
1658 if (ret) {
1659 ret = vmw_kms_sou_init_display(dev_priv);
1660 if (ret) /* Fallback */
1661 ret = vmw_kms_ldu_init_display(dev_priv);
1662 }
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001663
Sinclair Yehc8261a92015-06-26 01:23:42 -07001664 return ret;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001665}
1666
1667int vmw_kms_close(struct vmw_private *dev_priv)
1668{
Daniel Vetter5f58e972017-06-26 18:19:48 +02001669 int ret = 0;
Sinclair Yehc8261a92015-06-26 01:23:42 -07001670
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001671 /*
1672 * Docs says we should take the lock before calling this function
1673 * but since it destroys encoders and our destructor calls
1674 * drm_encoder_cleanup which takes the lock we deadlock.
1675 */
1676 drm_mode_config_cleanup(dev_priv->dev);
Daniel Vetter5f58e972017-06-26 18:19:48 +02001677 if (dev_priv->active_display_unit == vmw_du_legacy)
Sinclair Yehc8261a92015-06-26 01:23:42 -07001678 ret = vmw_kms_ldu_close_display(dev_priv);
1679
1680 return ret;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001681}
1682
1683int vmw_kms_cursor_bypass_ioctl(struct drm_device *dev, void *data,
1684 struct drm_file *file_priv)
1685{
1686 struct drm_vmw_cursor_bypass_arg *arg = data;
1687 struct vmw_display_unit *du;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001688 struct drm_crtc *crtc;
1689 int ret = 0;
1690
1691
1692 mutex_lock(&dev->mode_config.mutex);
1693 if (arg->flags & DRM_VMW_CURSOR_BYPASS_ALL) {
1694
1695 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
1696 du = vmw_crtc_to_du(crtc);
1697 du->hotspot_x = arg->xhot;
1698 du->hotspot_y = arg->yhot;
1699 }
1700
1701 mutex_unlock(&dev->mode_config.mutex);
1702 return 0;
1703 }
1704
Rob Clarka4cd5d62014-07-17 23:30:02 -04001705 crtc = drm_crtc_find(dev, arg->crtc_id);
1706 if (!crtc) {
Ville Syrjälä4ae87ff2013-10-17 13:35:05 +03001707 ret = -ENOENT;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001708 goto out;
1709 }
1710
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001711 du = vmw_crtc_to_du(crtc);
1712
1713 du->hotspot_x = arg->xhot;
1714 du->hotspot_y = arg->yhot;
1715
1716out:
1717 mutex_unlock(&dev->mode_config.mutex);
1718
1719 return ret;
1720}
1721
1722int vmw_kms_write_svga(struct vmw_private *vmw_priv,
1723 unsigned width, unsigned height, unsigned pitch,
1724 unsigned bpp, unsigned depth)
1725{
1726 if (vmw_priv->capabilities & SVGA_CAP_PITCHLOCK)
1727 vmw_write(vmw_priv, SVGA_REG_PITCHLOCK, pitch);
1728 else if (vmw_fifo_have_pitchlock(vmw_priv))
Thomas Hellstromb76ff5e2015-10-28 10:44:04 +01001729 vmw_mmio_write(pitch, vmw_priv->mmio_virt +
1730 SVGA_FIFO_PITCHLOCK);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001731 vmw_write(vmw_priv, SVGA_REG_WIDTH, width);
1732 vmw_write(vmw_priv, SVGA_REG_HEIGHT, height);
1733 vmw_write(vmw_priv, SVGA_REG_BITS_PER_PIXEL, bpp);
1734
1735 if (vmw_read(vmw_priv, SVGA_REG_DEPTH) != depth) {
1736 DRM_ERROR("Invalid depth %u for %u bpp, host expects %u\n",
1737 depth, bpp, vmw_read(vmw_priv, SVGA_REG_DEPTH));
1738 return -EINVAL;
1739 }
1740
1741 return 0;
1742}
1743
1744int vmw_kms_save_vga(struct vmw_private *vmw_priv)
1745{
1746 struct vmw_vga_topology_state *save;
1747 uint32_t i;
1748
1749 vmw_priv->vga_width = vmw_read(vmw_priv, SVGA_REG_WIDTH);
1750 vmw_priv->vga_height = vmw_read(vmw_priv, SVGA_REG_HEIGHT);
1751 vmw_priv->vga_bpp = vmw_read(vmw_priv, SVGA_REG_BITS_PER_PIXEL);
1752 if (vmw_priv->capabilities & SVGA_CAP_PITCHLOCK)
1753 vmw_priv->vga_pitchlock =
1754 vmw_read(vmw_priv, SVGA_REG_PITCHLOCK);
1755 else if (vmw_fifo_have_pitchlock(vmw_priv))
Thomas Hellstromb76ff5e2015-10-28 10:44:04 +01001756 vmw_priv->vga_pitchlock = vmw_mmio_read(vmw_priv->mmio_virt +
1757 SVGA_FIFO_PITCHLOCK);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001758
1759 if (!(vmw_priv->capabilities & SVGA_CAP_DISPLAY_TOPOLOGY))
1760 return 0;
1761
1762 vmw_priv->num_displays = vmw_read(vmw_priv,
1763 SVGA_REG_NUM_GUEST_DISPLAYS);
1764
1765 if (vmw_priv->num_displays == 0)
1766 vmw_priv->num_displays = 1;
1767
1768 for (i = 0; i < vmw_priv->num_displays; ++i) {
1769 save = &vmw_priv->vga_save[i];
1770 vmw_write(vmw_priv, SVGA_REG_DISPLAY_ID, i);
1771 save->primary = vmw_read(vmw_priv, SVGA_REG_DISPLAY_IS_PRIMARY);
1772 save->pos_x = vmw_read(vmw_priv, SVGA_REG_DISPLAY_POSITION_X);
1773 save->pos_y = vmw_read(vmw_priv, SVGA_REG_DISPLAY_POSITION_Y);
1774 save->width = vmw_read(vmw_priv, SVGA_REG_DISPLAY_WIDTH);
1775 save->height = vmw_read(vmw_priv, SVGA_REG_DISPLAY_HEIGHT);
1776 vmw_write(vmw_priv, SVGA_REG_DISPLAY_ID, SVGA_ID_INVALID);
1777 if (i == 0 && vmw_priv->num_displays == 1 &&
1778 save->width == 0 && save->height == 0) {
1779
1780 /*
1781 * It should be fairly safe to assume that these
1782 * values are uninitialized.
1783 */
1784
1785 save->width = vmw_priv->vga_width - save->pos_x;
1786 save->height = vmw_priv->vga_height - save->pos_y;
1787 }
1788 }
1789
1790 return 0;
1791}
1792
1793int vmw_kms_restore_vga(struct vmw_private *vmw_priv)
1794{
1795 struct vmw_vga_topology_state *save;
1796 uint32_t i;
1797
1798 vmw_write(vmw_priv, SVGA_REG_WIDTH, vmw_priv->vga_width);
1799 vmw_write(vmw_priv, SVGA_REG_HEIGHT, vmw_priv->vga_height);
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +02001800 vmw_write(vmw_priv, SVGA_REG_BITS_PER_PIXEL, vmw_priv->vga_bpp);
1801 if (vmw_priv->capabilities & SVGA_CAP_PITCHLOCK)
1802 vmw_write(vmw_priv, SVGA_REG_PITCHLOCK,
1803 vmw_priv->vga_pitchlock);
1804 else if (vmw_fifo_have_pitchlock(vmw_priv))
Thomas Hellstromb76ff5e2015-10-28 10:44:04 +01001805 vmw_mmio_write(vmw_priv->vga_pitchlock,
1806 vmw_priv->mmio_virt + SVGA_FIFO_PITCHLOCK);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001807
Thomas Hellstrom7c4f7782010-06-01 11:38:17 +02001808 if (!(vmw_priv->capabilities & SVGA_CAP_DISPLAY_TOPOLOGY))
1809 return 0;
1810
1811 for (i = 0; i < vmw_priv->num_displays; ++i) {
1812 save = &vmw_priv->vga_save[i];
1813 vmw_write(vmw_priv, SVGA_REG_DISPLAY_ID, i);
1814 vmw_write(vmw_priv, SVGA_REG_DISPLAY_IS_PRIMARY, save->primary);
1815 vmw_write(vmw_priv, SVGA_REG_DISPLAY_POSITION_X, save->pos_x);
1816 vmw_write(vmw_priv, SVGA_REG_DISPLAY_POSITION_Y, save->pos_y);
1817 vmw_write(vmw_priv, SVGA_REG_DISPLAY_WIDTH, save->width);
1818 vmw_write(vmw_priv, SVGA_REG_DISPLAY_HEIGHT, save->height);
1819 vmw_write(vmw_priv, SVGA_REG_DISPLAY_ID, SVGA_ID_INVALID);
1820 }
1821
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001822 return 0;
1823}
Jakob Bornecrantzd8bd19d2010-06-01 11:54:20 +02001824
Thomas Hellstrome133e7372010-10-05 12:43:04 +02001825bool vmw_kms_validate_mode_vram(struct vmw_private *dev_priv,
1826 uint32_t pitch,
1827 uint32_t height)
1828{
Sinclair Yeh35c05122015-06-26 01:42:06 -07001829 return ((u64) pitch * (u64) height) < (u64)
1830 ((dev_priv->active_display_unit == vmw_du_screen_target) ?
1831 dev_priv->prim_bb_mem : dev_priv->vram_size);
Thomas Hellstrome133e7372010-10-05 12:43:04 +02001832}
1833
Jakob Bornecrantz1c482ab2011-10-17 11:59:45 +02001834
1835/**
1836 * Function called by DRM code called with vbl_lock held.
1837 */
Thierry Reding88e72712015-09-24 18:35:31 +02001838u32 vmw_get_vblank_counter(struct drm_device *dev, unsigned int pipe)
Thomas Hellstrom7a1c2f62010-10-01 10:21:49 +02001839{
1840 return 0;
1841}
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001842
Jakob Bornecrantz1c482ab2011-10-17 11:59:45 +02001843/**
1844 * Function called by DRM code called with vbl_lock held.
1845 */
Thierry Reding88e72712015-09-24 18:35:31 +02001846int vmw_enable_vblank(struct drm_device *dev, unsigned int pipe)
Jakob Bornecrantz1c482ab2011-10-17 11:59:45 +02001847{
1848 return -ENOSYS;
1849}
1850
1851/**
1852 * Function called by DRM code called with vbl_lock held.
1853 */
Thierry Reding88e72712015-09-24 18:35:31 +02001854void vmw_disable_vblank(struct drm_device *dev, unsigned int pipe)
Jakob Bornecrantz1c482ab2011-10-17 11:59:45 +02001855{
1856}
1857
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001858
1859/*
1860 * Small shared kms functions.
1861 */
1862
Rashika Kheria847c5962014-01-06 22:18:10 +05301863static int vmw_du_update_layout(struct vmw_private *dev_priv, unsigned num,
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001864 struct drm_vmw_rect *rects)
1865{
1866 struct drm_device *dev = dev_priv->dev;
1867 struct vmw_display_unit *du;
1868 struct drm_connector *con;
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001869
1870 mutex_lock(&dev->mode_config.mutex);
1871
1872#if 0
Thomas Hellstrom6ea77d12011-10-04 20:13:36 +02001873 {
1874 unsigned int i;
1875
1876 DRM_INFO("%s: new layout ", __func__);
1877 for (i = 0; i < num; i++)
1878 DRM_INFO("(%i, %i %ux%u) ", rects[i].x, rects[i].y,
1879 rects[i].w, rects[i].h);
1880 DRM_INFO("\n");
1881 }
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001882#endif
1883
1884 list_for_each_entry(con, &dev->mode_config.connector_list, head) {
1885 du = vmw_connector_to_du(con);
1886 if (num > du->unit) {
1887 du->pref_width = rects[du->unit].w;
1888 du->pref_height = rects[du->unit].h;
1889 du->pref_active = true;
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02001890 du->gui_x = rects[du->unit].x;
1891 du->gui_y = rects[du->unit].y;
Thomas Hellstrom578e6092016-02-12 09:45:42 +01001892 drm_object_property_set_value
1893 (&con->base, dev->mode_config.suggested_x_property,
1894 du->gui_x);
1895 drm_object_property_set_value
1896 (&con->base, dev->mode_config.suggested_y_property,
1897 du->gui_y);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001898 } else {
1899 du->pref_width = 800;
1900 du->pref_height = 600;
1901 du->pref_active = false;
Thomas Hellstrom578e6092016-02-12 09:45:42 +01001902 drm_object_property_set_value
1903 (&con->base, dev->mode_config.suggested_x_property,
1904 0);
1905 drm_object_property_set_value
1906 (&con->base, dev->mode_config.suggested_y_property,
1907 0);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001908 }
1909 con->status = vmw_du_connector_detect(con, true);
1910 }
1911
1912 mutex_unlock(&dev->mode_config.mutex);
Thomas Hellstrom578e6092016-02-12 09:45:42 +01001913 drm_sysfs_hotplug_event(dev);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001914
1915 return 0;
1916}
1917
Maarten Lankhorst7ea77282016-06-07 12:49:30 +02001918int vmw_du_crtc_gamma_set(struct drm_crtc *crtc,
1919 u16 *r, u16 *g, u16 *b,
Daniel Vetter6d124ff2017-04-03 10:33:01 +02001920 uint32_t size,
1921 struct drm_modeset_acquire_ctx *ctx)
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001922{
1923 struct vmw_private *dev_priv = vmw_priv(crtc->dev);
1924 int i;
1925
1926 for (i = 0; i < size; i++) {
1927 DRM_DEBUG("%d r/g/b = 0x%04x / 0x%04x / 0x%04x\n", i,
1928 r[i], g[i], b[i]);
1929 vmw_write(dev_priv, SVGA_PALETTE_BASE + i * 3 + 0, r[i] >> 8);
1930 vmw_write(dev_priv, SVGA_PALETTE_BASE + i * 3 + 1, g[i] >> 8);
1931 vmw_write(dev_priv, SVGA_PALETTE_BASE + i * 3 + 2, b[i] >> 8);
1932 }
Maarten Lankhorst7ea77282016-06-07 12:49:30 +02001933
1934 return 0;
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001935}
1936
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02001937int vmw_du_connector_dpms(struct drm_connector *connector, int mode)
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001938{
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02001939 return 0;
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001940}
1941
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001942enum drm_connector_status
1943vmw_du_connector_detect(struct drm_connector *connector, bool force)
1944{
1945 uint32_t num_displays;
1946 struct drm_device *dev = connector->dev;
1947 struct vmw_private *dev_priv = vmw_priv(dev);
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02001948 struct vmw_display_unit *du = vmw_connector_to_du(connector);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001949
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001950 num_displays = vmw_read(dev_priv, SVGA_REG_NUM_DISPLAYS);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001951
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02001952 return ((vmw_connector_to_du(connector)->unit < num_displays &&
1953 du->pref_active) ?
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001954 connector_status_connected : connector_status_disconnected);
1955}
1956
1957static struct drm_display_mode vmw_kms_connector_builtin[] = {
1958 /* 640x480@60Hz */
1959 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25175, 640, 656,
1960 752, 800, 0, 480, 489, 492, 525, 0,
1961 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
1962 /* 800x600@60Hz */
1963 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 40000, 800, 840,
1964 968, 1056, 0, 600, 601, 605, 628, 0,
1965 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
1966 /* 1024x768@60Hz */
1967 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 65000, 1024, 1048,
1968 1184, 1344, 0, 768, 771, 777, 806, 0,
1969 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
1970 /* 1152x864@75Hz */
1971 { DRM_MODE("1152x864", DRM_MODE_TYPE_DRIVER, 108000, 1152, 1216,
1972 1344, 1600, 0, 864, 865, 868, 900, 0,
1973 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
1974 /* 1280x768@60Hz */
1975 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 79500, 1280, 1344,
1976 1472, 1664, 0, 768, 771, 778, 798, 0,
1977 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
1978 /* 1280x800@60Hz */
1979 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 83500, 1280, 1352,
1980 1480, 1680, 0, 800, 803, 809, 831, 0,
1981 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
1982 /* 1280x960@60Hz */
1983 { DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1376,
1984 1488, 1800, 0, 960, 961, 964, 1000, 0,
1985 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
1986 /* 1280x1024@60Hz */
1987 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1328,
1988 1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
1989 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
1990 /* 1360x768@60Hz */
1991 { DRM_MODE("1360x768", DRM_MODE_TYPE_DRIVER, 85500, 1360, 1424,
1992 1536, 1792, 0, 768, 771, 777, 795, 0,
1993 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
1994 /* 1440x1050@60Hz */
1995 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 121750, 1400, 1488,
1996 1632, 1864, 0, 1050, 1053, 1057, 1089, 0,
1997 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
1998 /* 1440x900@60Hz */
1999 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 106500, 1440, 1520,
2000 1672, 1904, 0, 900, 903, 909, 934, 0,
2001 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
2002 /* 1600x1200@60Hz */
2003 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 162000, 1600, 1664,
2004 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
2005 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
2006 /* 1680x1050@60Hz */
2007 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 146250, 1680, 1784,
2008 1960, 2240, 0, 1050, 1053, 1059, 1089, 0,
2009 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
2010 /* 1792x1344@60Hz */
2011 { DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER, 204750, 1792, 1920,
2012 2120, 2448, 0, 1344, 1345, 1348, 1394, 0,
2013 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
2014 /* 1853x1392@60Hz */
2015 { DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER, 218250, 1856, 1952,
2016 2176, 2528, 0, 1392, 1393, 1396, 1439, 0,
2017 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
2018 /* 1920x1200@60Hz */
2019 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 193250, 1920, 2056,
2020 2256, 2592, 0, 1200, 1203, 1209, 1245, 0,
2021 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
2022 /* 1920x1440@60Hz */
2023 { DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER, 234000, 1920, 2048,
2024 2256, 2600, 0, 1440, 1441, 1444, 1500, 0,
2025 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
2026 /* 2560x1600@60Hz */
2027 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 348500, 2560, 2752,
2028 3032, 3504, 0, 1600, 1603, 1609, 1658, 0,
2029 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
2030 /* Terminate */
2031 { DRM_MODE("", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) },
2032};
2033
Thomas Hellstrom1543b4dd2011-11-02 09:43:10 +01002034/**
2035 * vmw_guess_mode_timing - Provide fake timings for a
2036 * 60Hz vrefresh mode.
2037 *
2038 * @mode - Pointer to a struct drm_display_mode with hdisplay and vdisplay
2039 * members filled in.
2040 */
Thomas Hellstroma2787242015-06-29 12:55:07 -07002041void vmw_guess_mode_timing(struct drm_display_mode *mode)
Thomas Hellstrom1543b4dd2011-11-02 09:43:10 +01002042{
2043 mode->hsync_start = mode->hdisplay + 50;
2044 mode->hsync_end = mode->hsync_start + 50;
2045 mode->htotal = mode->hsync_end + 50;
2046
2047 mode->vsync_start = mode->vdisplay + 50;
2048 mode->vsync_end = mode->vsync_start + 50;
2049 mode->vtotal = mode->vsync_end + 50;
2050
2051 mode->clock = (u32)mode->htotal * (u32)mode->vtotal / 100 * 6;
2052 mode->vrefresh = drm_mode_vrefresh(mode);
2053}
2054
2055
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002056int vmw_du_connector_fill_modes(struct drm_connector *connector,
2057 uint32_t max_width, uint32_t max_height)
2058{
2059 struct vmw_display_unit *du = vmw_connector_to_du(connector);
2060 struct drm_device *dev = connector->dev;
2061 struct vmw_private *dev_priv = vmw_priv(dev);
2062 struct drm_display_mode *mode = NULL;
2063 struct drm_display_mode *bmode;
2064 struct drm_display_mode prefmode = { DRM_MODE("preferred",
2065 DRM_MODE_TYPE_DRIVER | DRM_MODE_TYPE_PREFERRED,
2066 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2067 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC)
2068 };
2069 int i;
Sinclair Yeh7c20d212016-06-29 11:29:47 -07002070 u32 assumed_bpp = 4;
Sinclair Yeh9a723842014-10-31 09:58:06 +01002071
Sinclair Yeh04319d82016-06-29 12:15:48 -07002072 if (dev_priv->assume_16bpp)
2073 assumed_bpp = 2;
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002074
Sinclair Yeh35c05122015-06-26 01:42:06 -07002075 if (dev_priv->active_display_unit == vmw_du_screen_target) {
2076 max_width = min(max_width, dev_priv->stdu_max_width);
Sinclair Yeh28c95422017-03-27 11:12:27 -07002077 max_width = min(max_width, dev_priv->texture_max_width);
2078
Sinclair Yeh35c05122015-06-26 01:42:06 -07002079 max_height = min(max_height, dev_priv->stdu_max_height);
Sinclair Yeh28c95422017-03-27 11:12:27 -07002080 max_height = min(max_height, dev_priv->texture_max_height);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002081 }
2082
2083 /* Add preferred mode */
Sinclair Yehc8261a92015-06-26 01:23:42 -07002084 mode = drm_mode_duplicate(dev, &prefmode);
2085 if (!mode)
2086 return 0;
2087 mode->hdisplay = du->pref_width;
2088 mode->vdisplay = du->pref_height;
2089 vmw_guess_mode_timing(mode);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002090
Sinclair Yehc8261a92015-06-26 01:23:42 -07002091 if (vmw_kms_validate_mode_vram(dev_priv,
2092 mode->hdisplay * assumed_bpp,
2093 mode->vdisplay)) {
2094 drm_mode_probed_add(connector, mode);
2095 } else {
2096 drm_mode_destroy(dev, mode);
2097 mode = NULL;
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002098 }
2099
Sinclair Yehc8261a92015-06-26 01:23:42 -07002100 if (du->pref_mode) {
2101 list_del_init(&du->pref_mode->head);
2102 drm_mode_destroy(dev, du->pref_mode);
2103 }
2104
2105 /* mode might be null here, this is intended */
2106 du->pref_mode = mode;
2107
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002108 for (i = 0; vmw_kms_connector_builtin[i].type != 0; i++) {
2109 bmode = &vmw_kms_connector_builtin[i];
2110 if (bmode->hdisplay > max_width ||
2111 bmode->vdisplay > max_height)
2112 continue;
2113
Sinclair Yeh9a723842014-10-31 09:58:06 +01002114 if (!vmw_kms_validate_mode_vram(dev_priv,
2115 bmode->hdisplay * assumed_bpp,
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002116 bmode->vdisplay))
2117 continue;
2118
2119 mode = drm_mode_duplicate(dev, bmode);
2120 if (!mode)
2121 return 0;
2122 mode->vrefresh = drm_mode_vrefresh(mode);
2123
2124 drm_mode_probed_add(connector, mode);
2125 }
2126
Ville Syrjälä6af3e652015-12-03 23:14:14 +02002127 drm_mode_connector_list_update(connector);
Thomas Hellstromf6b05002015-06-29 12:59:58 -07002128 /* Move the prefered mode first, help apps pick the right mode. */
2129 drm_mode_sort(&connector->modes);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002130
2131 return 1;
2132}
2133
2134int vmw_du_connector_set_property(struct drm_connector *connector,
2135 struct drm_property *property,
2136 uint64_t val)
2137{
Thomas Hellstrom76404ac2016-02-12 09:55:45 +01002138 struct vmw_display_unit *du = vmw_connector_to_du(connector);
2139 struct vmw_private *dev_priv = vmw_priv(connector->dev);
2140
2141 if (property == dev_priv->implicit_placement_property)
2142 du->is_implicit = val;
2143
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002144 return 0;
2145}
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002146
2147
Sinclair Yeh9c2542a2017-03-23 11:33:39 -07002148
Sinclair Yehd7721ca2017-03-23 11:48:44 -07002149/**
2150 * vmw_du_connector_atomic_set_property - Atomic version of get property
2151 *
2152 * @crtc - crtc the property is associated with
2153 *
2154 * Returns:
2155 * Zero on success, negative errno on failure.
2156 */
2157int
2158vmw_du_connector_atomic_set_property(struct drm_connector *connector,
2159 struct drm_connector_state *state,
2160 struct drm_property *property,
2161 uint64_t val)
2162{
2163 struct vmw_private *dev_priv = vmw_priv(connector->dev);
2164 struct vmw_connector_state *vcs = vmw_connector_state_to_vcs(state);
2165 struct vmw_display_unit *du = vmw_connector_to_du(connector);
2166
2167
2168 if (property == dev_priv->implicit_placement_property) {
2169 vcs->is_implicit = val;
2170
2171 /*
2172 * We should really be doing a drm_atomic_commit() to
2173 * commit the new state, but since this doesn't cause
2174 * an immedate state change, this is probably ok
2175 */
2176 du->is_implicit = vcs->is_implicit;
2177 } else {
2178 return -EINVAL;
2179 }
2180
2181 return 0;
2182}
2183
2184
2185/**
2186 * vmw_du_connector_atomic_get_property - Atomic version of get property
2187 *
2188 * @connector - connector the property is associated with
2189 *
2190 * Returns:
2191 * Zero on success, negative errno on failure.
2192 */
2193int
2194vmw_du_connector_atomic_get_property(struct drm_connector *connector,
2195 const struct drm_connector_state *state,
2196 struct drm_property *property,
2197 uint64_t *val)
2198{
2199 struct vmw_private *dev_priv = vmw_priv(connector->dev);
2200 struct vmw_connector_state *vcs = vmw_connector_state_to_vcs(state);
2201
2202 if (property == dev_priv->implicit_placement_property)
2203 *val = vcs->is_implicit;
2204 else {
2205 DRM_ERROR("Invalid Property %s\n", property->name);
2206 return -EINVAL;
2207 }
2208
2209 return 0;
2210}
2211
2212
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002213int vmw_kms_update_layout_ioctl(struct drm_device *dev, void *data,
2214 struct drm_file *file_priv)
2215{
2216 struct vmw_private *dev_priv = vmw_priv(dev);
2217 struct drm_vmw_update_layout_arg *arg =
2218 (struct drm_vmw_update_layout_arg *)data;
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002219 void __user *user_rects;
2220 struct drm_vmw_rect *rects;
2221 unsigned rects_size;
2222 int ret;
2223 int i;
Sinclair Yeh65ade7d2015-07-16 10:49:13 -07002224 u64 total_pixels = 0;
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002225 struct drm_mode_config *mode_config = &dev->mode_config;
Sinclair Yehc8261a92015-06-26 01:23:42 -07002226 struct drm_vmw_rect bounding_box = {0};
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002227
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002228 if (!arg->num_outputs) {
2229 struct drm_vmw_rect def_rect = {0, 0, 800, 600};
2230 vmw_du_update_layout(dev_priv, 1, &def_rect);
Thomas Hellstrom5151adb2015-03-09 01:56:21 -07002231 return 0;
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002232 }
2233
2234 rects_size = arg->num_outputs * sizeof(struct drm_vmw_rect);
Xi Wangbab9efc2011-11-28 12:25:43 +01002235 rects = kcalloc(arg->num_outputs, sizeof(struct drm_vmw_rect),
2236 GFP_KERNEL);
Thomas Hellstrom5151adb2015-03-09 01:56:21 -07002237 if (unlikely(!rects))
2238 return -ENOMEM;
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002239
2240 user_rects = (void __user *)(unsigned long)arg->rects;
2241 ret = copy_from_user(rects, user_rects, rects_size);
2242 if (unlikely(ret != 0)) {
2243 DRM_ERROR("Failed to get rects.\n");
2244 ret = -EFAULT;
2245 goto out_free;
2246 }
2247
2248 for (i = 0; i < arg->num_outputs; ++i) {
Xi Wangbab9efc2011-11-28 12:25:43 +01002249 if (rects[i].x < 0 ||
2250 rects[i].y < 0 ||
2251 rects[i].x + rects[i].w > mode_config->max_width ||
2252 rects[i].y + rects[i].h > mode_config->max_height) {
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002253 DRM_ERROR("Invalid GUI layout.\n");
2254 ret = -EINVAL;
2255 goto out_free;
2256 }
Sinclair Yehc8261a92015-06-26 01:23:42 -07002257
2258 /*
2259 * bounding_box.w and bunding_box.h are used as
2260 * lower-right coordinates
2261 */
2262 if (rects[i].x + rects[i].w > bounding_box.w)
2263 bounding_box.w = rects[i].x + rects[i].w;
2264
2265 if (rects[i].y + rects[i].h > bounding_box.h)
2266 bounding_box.h = rects[i].y + rects[i].h;
Sinclair Yeh65ade7d2015-07-16 10:49:13 -07002267
2268 total_pixels += (u64) rects[i].w * (u64) rects[i].h;
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002269 }
2270
Sinclair Yeh65ade7d2015-07-16 10:49:13 -07002271 if (dev_priv->active_display_unit == vmw_du_screen_target) {
2272 /*
2273 * For Screen Targets, the limits for a toplogy are:
2274 * 1. Bounding box (assuming 32bpp) must be < prim_bb_mem
2275 * 2. Total pixels (assuming 32bpp) must be < prim_bb_mem
2276 */
Thomas Hellstrom0f580382017-01-19 11:01:04 -08002277 u64 bb_mem = (u64) bounding_box.w * bounding_box.h * 4;
Sinclair Yeh65ade7d2015-07-16 10:49:13 -07002278 u64 pixel_mem = total_pixels * 4;
2279
2280 if (bb_mem > dev_priv->prim_bb_mem) {
2281 DRM_ERROR("Topology is beyond supported limits.\n");
Sinclair Yeh35c05122015-06-26 01:42:06 -07002282 ret = -EINVAL;
2283 goto out_free;
2284 }
2285
Sinclair Yeh65ade7d2015-07-16 10:49:13 -07002286 if (pixel_mem > dev_priv->prim_bb_mem) {
2287 DRM_ERROR("Combined output size too large\n");
2288 ret = -EINVAL;
2289 goto out_free;
2290 }
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002291 }
2292
2293 vmw_du_update_layout(dev_priv, arg->num_outputs, rects);
2294
2295out_free:
2296 kfree(rects);
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002297 return ret;
2298}
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002299
2300/**
2301 * vmw_kms_helper_dirty - Helper to build commands and perform actions based
2302 * on a set of cliprects and a set of display units.
2303 *
2304 * @dev_priv: Pointer to a device private structure.
2305 * @framebuffer: Pointer to the framebuffer on which to perform the actions.
2306 * @clips: A set of struct drm_clip_rect. Either this os @vclips must be NULL.
2307 * Cliprects are given in framebuffer coordinates.
2308 * @vclips: A set of struct drm_vmw_rect cliprects. Either this or @clips must
2309 * be NULL. Cliprects are given in source coordinates.
2310 * @dest_x: X coordinate offset for the crtc / destination clip rects.
2311 * @dest_y: Y coordinate offset for the crtc / destination clip rects.
2312 * @num_clips: Number of cliprects in the @clips or @vclips array.
2313 * @increment: Integer with which to increment the clip counter when looping.
2314 * Used to skip a predetermined number of clip rects.
2315 * @dirty: Closure structure. See the description of struct vmw_kms_dirty.
2316 */
2317int vmw_kms_helper_dirty(struct vmw_private *dev_priv,
2318 struct vmw_framebuffer *framebuffer,
2319 const struct drm_clip_rect *clips,
2320 const struct drm_vmw_rect *vclips,
2321 s32 dest_x, s32 dest_y,
2322 int num_clips,
2323 int increment,
2324 struct vmw_kms_dirty *dirty)
2325{
2326 struct vmw_display_unit *units[VMWGFX_NUM_DISPLAY_UNITS];
2327 struct drm_crtc *crtc;
2328 u32 num_units = 0;
2329 u32 i, k;
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002330
2331 dirty->dev_priv = dev_priv;
2332
2333 list_for_each_entry(crtc, &dev_priv->dev->mode_config.crtc_list, head) {
2334 if (crtc->primary->fb != &framebuffer->base)
2335 continue;
2336 units[num_units++] = vmw_crtc_to_du(crtc);
2337 }
2338
2339 for (k = 0; k < num_units; k++) {
2340 struct vmw_display_unit *unit = units[k];
2341 s32 crtc_x = unit->crtc.x;
2342 s32 crtc_y = unit->crtc.y;
2343 s32 crtc_width = unit->crtc.mode.hdisplay;
2344 s32 crtc_height = unit->crtc.mode.vdisplay;
2345 const struct drm_clip_rect *clips_ptr = clips;
2346 const struct drm_vmw_rect *vclips_ptr = vclips;
2347
2348 dirty->unit = unit;
2349 if (dirty->fifo_reserve_size > 0) {
2350 dirty->cmd = vmw_fifo_reserve(dev_priv,
2351 dirty->fifo_reserve_size);
2352 if (!dirty->cmd) {
2353 DRM_ERROR("Couldn't reserve fifo space "
2354 "for dirty blits.\n");
Christian Engelmayerf3b8c0c2015-09-19 00:32:24 +02002355 return -ENOMEM;
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002356 }
2357 memset(dirty->cmd, 0, dirty->fifo_reserve_size);
2358 }
2359 dirty->num_hits = 0;
2360 for (i = 0; i < num_clips; i++, clips_ptr += increment,
2361 vclips_ptr += increment) {
2362 s32 clip_left;
2363 s32 clip_top;
2364
2365 /*
2366 * Select clip array type. Note that integer type
2367 * in @clips is unsigned short, whereas in @vclips
2368 * it's 32-bit.
2369 */
2370 if (clips) {
2371 dirty->fb_x = (s32) clips_ptr->x1;
2372 dirty->fb_y = (s32) clips_ptr->y1;
2373 dirty->unit_x2 = (s32) clips_ptr->x2 + dest_x -
2374 crtc_x;
2375 dirty->unit_y2 = (s32) clips_ptr->y2 + dest_y -
2376 crtc_y;
2377 } else {
2378 dirty->fb_x = vclips_ptr->x;
2379 dirty->fb_y = vclips_ptr->y;
2380 dirty->unit_x2 = dirty->fb_x + vclips_ptr->w +
2381 dest_x - crtc_x;
2382 dirty->unit_y2 = dirty->fb_y + vclips_ptr->h +
2383 dest_y - crtc_y;
2384 }
2385
2386 dirty->unit_x1 = dirty->fb_x + dest_x - crtc_x;
2387 dirty->unit_y1 = dirty->fb_y + dest_y - crtc_y;
2388
2389 /* Skip this clip if it's outside the crtc region */
2390 if (dirty->unit_x1 >= crtc_width ||
2391 dirty->unit_y1 >= crtc_height ||
2392 dirty->unit_x2 <= 0 || dirty->unit_y2 <= 0)
2393 continue;
2394
2395 /* Clip right and bottom to crtc limits */
2396 dirty->unit_x2 = min_t(s32, dirty->unit_x2,
2397 crtc_width);
2398 dirty->unit_y2 = min_t(s32, dirty->unit_y2,
2399 crtc_height);
2400
2401 /* Clip left and top to crtc limits */
2402 clip_left = min_t(s32, dirty->unit_x1, 0);
2403 clip_top = min_t(s32, dirty->unit_y1, 0);
2404 dirty->unit_x1 -= clip_left;
2405 dirty->unit_y1 -= clip_top;
2406 dirty->fb_x -= clip_left;
2407 dirty->fb_y -= clip_top;
2408
2409 dirty->clip(dirty);
2410 }
2411
2412 dirty->fifo_commit(dirty);
2413 }
2414
2415 return 0;
2416}
2417
2418/**
2419 * vmw_kms_helper_buffer_prepare - Reserve and validate a buffer object before
2420 * command submission.
2421 *
2422 * @dev_priv. Pointer to a device private structure.
2423 * @buf: The buffer object
2424 * @interruptible: Whether to perform waits as interruptible.
2425 * @validate_as_mob: Whether the buffer should be validated as a MOB. If false,
2426 * The buffer will be validated as a GMR. Already pinned buffers will not be
2427 * validated.
2428 *
2429 * Returns 0 on success, negative error code on failure, -ERESTARTSYS if
2430 * interrupted by a signal.
2431 */
2432int vmw_kms_helper_buffer_prepare(struct vmw_private *dev_priv,
2433 struct vmw_dma_buffer *buf,
2434 bool interruptible,
2435 bool validate_as_mob)
2436{
2437 struct ttm_buffer_object *bo = &buf->base;
2438 int ret;
2439
Christian Königdfd5e502016-04-06 11:12:03 +02002440 ttm_bo_reserve(bo, false, false, NULL);
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002441 ret = vmw_validate_single_buffer(dev_priv, bo, interruptible,
2442 validate_as_mob);
2443 if (ret)
2444 ttm_bo_unreserve(bo);
2445
2446 return ret;
2447}
2448
2449/**
2450 * vmw_kms_helper_buffer_revert - Undo the actions of
2451 * vmw_kms_helper_buffer_prepare.
2452 *
2453 * @res: Pointer to the buffer object.
2454 *
2455 * Helper to be used if an error forces the caller to undo the actions of
2456 * vmw_kms_helper_buffer_prepare.
2457 */
2458void vmw_kms_helper_buffer_revert(struct vmw_dma_buffer *buf)
2459{
2460 if (buf)
2461 ttm_bo_unreserve(&buf->base);
2462}
2463
2464/**
2465 * vmw_kms_helper_buffer_finish - Unreserve and fence a buffer object after
2466 * kms command submission.
2467 *
2468 * @dev_priv: Pointer to a device private structure.
2469 * @file_priv: Pointer to a struct drm_file representing the caller's
2470 * connection. Must be set to NULL if @user_fence_rep is NULL, and conversely
2471 * if non-NULL, @user_fence_rep must be non-NULL.
2472 * @buf: The buffer object.
2473 * @out_fence: Optional pointer to a fence pointer. If non-NULL, a
2474 * ref-counted fence pointer is returned here.
2475 * @user_fence_rep: Optional pointer to a user-space provided struct
2476 * drm_vmw_fence_rep. If provided, @file_priv must also be provided and the
2477 * function copies fence data to user-space in a fail-safe manner.
2478 */
2479void vmw_kms_helper_buffer_finish(struct vmw_private *dev_priv,
2480 struct drm_file *file_priv,
2481 struct vmw_dma_buffer *buf,
2482 struct vmw_fence_obj **out_fence,
2483 struct drm_vmw_fence_rep __user *
2484 user_fence_rep)
2485{
2486 struct vmw_fence_obj *fence;
2487 uint32_t handle;
2488 int ret;
2489
2490 ret = vmw_execbuf_fence_commands(file_priv, dev_priv, &fence,
2491 file_priv ? &handle : NULL);
2492 if (buf)
2493 vmw_fence_single_bo(&buf->base, fence);
2494 if (file_priv)
2495 vmw_execbuf_copy_fence_user(dev_priv, vmw_fpriv(file_priv),
2496 ret, user_fence_rep, fence,
Sinclair Yehc906965d2017-07-05 01:49:32 -07002497 handle, -1, NULL);
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002498 if (out_fence)
2499 *out_fence = fence;
2500 else
2501 vmw_fence_obj_unreference(&fence);
2502
2503 vmw_kms_helper_buffer_revert(buf);
2504}
2505
2506
2507/**
2508 * vmw_kms_helper_resource_revert - Undo the actions of
2509 * vmw_kms_helper_resource_prepare.
2510 *
2511 * @res: Pointer to the resource. Typically a surface.
2512 *
2513 * Helper to be used if an error forces the caller to undo the actions of
2514 * vmw_kms_helper_resource_prepare.
2515 */
2516void vmw_kms_helper_resource_revert(struct vmw_resource *res)
2517{
2518 vmw_kms_helper_buffer_revert(res->backup);
Thomas Hellstromd80efd52015-08-10 10:39:35 -07002519 vmw_resource_unreserve(res, false, NULL, 0);
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002520 mutex_unlock(&res->dev_priv->cmdbuf_mutex);
2521}
2522
2523/**
2524 * vmw_kms_helper_resource_prepare - Reserve and validate a resource before
2525 * command submission.
2526 *
2527 * @res: Pointer to the resource. Typically a surface.
2528 * @interruptible: Whether to perform waits as interruptible.
2529 *
2530 * Reserves and validates also the backup buffer if a guest-backed resource.
2531 * Returns 0 on success, negative error code on failure. -ERESTARTSYS if
2532 * interrupted by a signal.
2533 */
2534int vmw_kms_helper_resource_prepare(struct vmw_resource *res,
2535 bool interruptible)
2536{
2537 int ret = 0;
2538
2539 if (interruptible)
2540 ret = mutex_lock_interruptible(&res->dev_priv->cmdbuf_mutex);
2541 else
2542 mutex_lock(&res->dev_priv->cmdbuf_mutex);
2543
2544 if (unlikely(ret != 0))
2545 return -ERESTARTSYS;
2546
2547 ret = vmw_resource_reserve(res, interruptible, false);
2548 if (ret)
2549 goto out_unlock;
2550
2551 if (res->backup) {
2552 ret = vmw_kms_helper_buffer_prepare(res->dev_priv, res->backup,
2553 interruptible,
2554 res->dev_priv->has_mob);
2555 if (ret)
2556 goto out_unreserve;
2557 }
2558 ret = vmw_resource_validate(res);
2559 if (ret)
2560 goto out_revert;
2561 return 0;
2562
2563out_revert:
2564 vmw_kms_helper_buffer_revert(res->backup);
2565out_unreserve:
Thomas Hellstromd80efd52015-08-10 10:39:35 -07002566 vmw_resource_unreserve(res, false, NULL, 0);
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002567out_unlock:
2568 mutex_unlock(&res->dev_priv->cmdbuf_mutex);
2569 return ret;
2570}
2571
2572/**
2573 * vmw_kms_helper_resource_finish - Unreserve and fence a resource after
2574 * kms command submission.
2575 *
2576 * @res: Pointer to the resource. Typically a surface.
2577 * @out_fence: Optional pointer to a fence pointer. If non-NULL, a
2578 * ref-counted fence pointer is returned here.
2579 */
2580void vmw_kms_helper_resource_finish(struct vmw_resource *res,
2581 struct vmw_fence_obj **out_fence)
2582{
2583 if (res->backup || out_fence)
2584 vmw_kms_helper_buffer_finish(res->dev_priv, NULL, res->backup,
2585 out_fence, NULL);
2586
Thomas Hellstromd80efd52015-08-10 10:39:35 -07002587 vmw_resource_unreserve(res, false, NULL, 0);
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002588 mutex_unlock(&res->dev_priv->cmdbuf_mutex);
2589}
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07002590
2591/**
2592 * vmw_kms_update_proxy - Helper function to update a proxy surface from
2593 * its backing MOB.
2594 *
2595 * @res: Pointer to the surface resource
2596 * @clips: Clip rects in framebuffer (surface) space.
2597 * @num_clips: Number of clips in @clips.
2598 * @increment: Integer with which to increment the clip counter when looping.
2599 * Used to skip a predetermined number of clip rects.
2600 *
2601 * This function makes sure the proxy surface is updated from its backing MOB
2602 * using the region given by @clips. The surface resource @res and its backing
2603 * MOB needs to be reserved and validated on call.
2604 */
2605int vmw_kms_update_proxy(struct vmw_resource *res,
2606 const struct drm_clip_rect *clips,
2607 unsigned num_clips,
2608 int increment)
2609{
2610 struct vmw_private *dev_priv = res->dev_priv;
2611 struct drm_vmw_size *size = &vmw_res_to_srf(res)->base_size;
2612 struct {
2613 SVGA3dCmdHeader header;
2614 SVGA3dCmdUpdateGBImage body;
2615 } *cmd;
2616 SVGA3dBox *box;
2617 size_t copy_size = 0;
2618 int i;
2619
2620 if (!clips)
2621 return 0;
2622
2623 cmd = vmw_fifo_reserve(dev_priv, sizeof(*cmd) * num_clips);
2624 if (!cmd) {
2625 DRM_ERROR("Couldn't reserve fifo space for proxy surface "
2626 "update.\n");
2627 return -ENOMEM;
2628 }
2629
2630 for (i = 0; i < num_clips; ++i, clips += increment, ++cmd) {
2631 box = &cmd->body.box;
2632
2633 cmd->header.id = SVGA_3D_CMD_UPDATE_GB_IMAGE;
2634 cmd->header.size = sizeof(cmd->body);
2635 cmd->body.image.sid = res->id;
2636 cmd->body.image.face = 0;
2637 cmd->body.image.mipmap = 0;
2638
2639 if (clips->x1 > size->width || clips->x2 > size->width ||
2640 clips->y1 > size->height || clips->y2 > size->height) {
2641 DRM_ERROR("Invalid clips outsize of framebuffer.\n");
2642 return -EINVAL;
2643 }
2644
2645 box->x = clips->x1;
2646 box->y = clips->y1;
2647 box->z = 0;
2648 box->w = clips->x2 - clips->x1;
2649 box->h = clips->y2 - clips->y1;
2650 box->d = 1;
2651
2652 copy_size += sizeof(*cmd);
2653 }
2654
2655 vmw_fifo_commit(dev_priv, copy_size);
2656
2657 return 0;
2658}
Thomas Hellstroma2787242015-06-29 12:55:07 -07002659
2660int vmw_kms_fbdev_init_data(struct vmw_private *dev_priv,
2661 unsigned unit,
2662 u32 max_width,
2663 u32 max_height,
2664 struct drm_connector **p_con,
2665 struct drm_crtc **p_crtc,
2666 struct drm_display_mode **p_mode)
2667{
2668 struct drm_connector *con;
2669 struct vmw_display_unit *du;
2670 struct drm_display_mode *mode;
2671 int i = 0;
2672
2673 list_for_each_entry(con, &dev_priv->dev->mode_config.connector_list,
2674 head) {
2675 if (i == unit)
2676 break;
2677
2678 ++i;
2679 }
2680
2681 if (i != unit) {
2682 DRM_ERROR("Could not find initial display unit.\n");
2683 return -EINVAL;
2684 }
2685
2686 if (list_empty(&con->modes))
2687 (void) vmw_du_connector_fill_modes(con, max_width, max_height);
2688
2689 if (list_empty(&con->modes)) {
2690 DRM_ERROR("Could not find initial display mode.\n");
2691 return -EINVAL;
2692 }
2693
2694 du = vmw_connector_to_du(con);
2695 *p_con = con;
2696 *p_crtc = &du->crtc;
2697
2698 list_for_each_entry(mode, &con->modes, head) {
2699 if (mode->type & DRM_MODE_TYPE_PREFERRED)
2700 break;
2701 }
2702
2703 if (mode->type & DRM_MODE_TYPE_PREFERRED)
2704 *p_mode = mode;
2705 else {
2706 WARN_ONCE(true, "Could not find initial preferred mode.\n");
2707 *p_mode = list_first_entry(&con->modes,
2708 struct drm_display_mode,
2709 head);
2710 }
2711
2712 return 0;
2713}
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002714
2715/**
2716 * vmw_kms_del_active - unregister a crtc binding to the implicit framebuffer
2717 *
2718 * @dev_priv: Pointer to a device private struct.
2719 * @du: The display unit of the crtc.
2720 */
2721void vmw_kms_del_active(struct vmw_private *dev_priv,
2722 struct vmw_display_unit *du)
2723{
Thomas Hellstrom93cd1682016-05-03 11:24:35 +02002724 mutex_lock(&dev_priv->global_kms_state_mutex);
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002725 if (du->active_implicit) {
2726 if (--(dev_priv->num_implicit) == 0)
2727 dev_priv->implicit_fb = NULL;
2728 du->active_implicit = false;
2729 }
Thomas Hellstrom93cd1682016-05-03 11:24:35 +02002730 mutex_unlock(&dev_priv->global_kms_state_mutex);
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002731}
2732
2733/**
2734 * vmw_kms_add_active - register a crtc binding to an implicit framebuffer
2735 *
2736 * @vmw_priv: Pointer to a device private struct.
2737 * @du: The display unit of the crtc.
2738 * @vfb: The implicit framebuffer
2739 *
2740 * Registers a binding to an implicit framebuffer.
2741 */
2742void vmw_kms_add_active(struct vmw_private *dev_priv,
2743 struct vmw_display_unit *du,
2744 struct vmw_framebuffer *vfb)
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 WARN_ON_ONCE(!dev_priv->num_implicit && dev_priv->implicit_fb);
2748
2749 if (!du->active_implicit && du->is_implicit) {
2750 dev_priv->implicit_fb = vfb;
2751 du->active_implicit = true;
2752 dev_priv->num_implicit++;
2753 }
Thomas Hellstrom93cd1682016-05-03 11:24:35 +02002754 mutex_unlock(&dev_priv->global_kms_state_mutex);
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002755}
2756
2757/**
2758 * vmw_kms_screen_object_flippable - Check whether we can page-flip a crtc.
2759 *
2760 * @dev_priv: Pointer to device-private struct.
2761 * @crtc: The crtc we want to flip.
2762 *
2763 * Returns true or false depending whether it's OK to flip this crtc
2764 * based on the criterion that we must not have more than one implicit
2765 * frame-buffer at any one time.
2766 */
2767bool vmw_kms_crtc_flippable(struct vmw_private *dev_priv,
2768 struct drm_crtc *crtc)
2769{
2770 struct vmw_display_unit *du = vmw_crtc_to_du(crtc);
Thomas Hellstrom93cd1682016-05-03 11:24:35 +02002771 bool ret;
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002772
Thomas Hellstrom93cd1682016-05-03 11:24:35 +02002773 mutex_lock(&dev_priv->global_kms_state_mutex);
2774 ret = !du->is_implicit || dev_priv->num_implicit == 1;
2775 mutex_unlock(&dev_priv->global_kms_state_mutex);
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002776
Thomas Hellstrom93cd1682016-05-03 11:24:35 +02002777 return ret;
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002778}
2779
2780/**
2781 * vmw_kms_update_implicit_fb - Update the implicit fb.
2782 *
2783 * @dev_priv: Pointer to device-private struct.
2784 * @crtc: The crtc the new implicit frame-buffer is bound to.
2785 */
2786void vmw_kms_update_implicit_fb(struct vmw_private *dev_priv,
2787 struct drm_crtc *crtc)
2788{
2789 struct vmw_display_unit *du = vmw_crtc_to_du(crtc);
2790 struct vmw_framebuffer *vfb;
2791
Thomas Hellstrom93cd1682016-05-03 11:24:35 +02002792 mutex_lock(&dev_priv->global_kms_state_mutex);
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002793
2794 if (!du->is_implicit)
Thomas Hellstrom93cd1682016-05-03 11:24:35 +02002795 goto out_unlock;
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002796
2797 vfb = vmw_framebuffer_to_vfb(crtc->primary->fb);
2798 WARN_ON_ONCE(dev_priv->num_implicit != 1 &&
2799 dev_priv->implicit_fb != vfb);
2800
2801 dev_priv->implicit_fb = vfb;
Thomas Hellstrom93cd1682016-05-03 11:24:35 +02002802out_unlock:
2803 mutex_unlock(&dev_priv->global_kms_state_mutex);
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002804}
Thomas Hellstrom76404ac2016-02-12 09:55:45 +01002805
2806/**
2807 * vmw_kms_create_implicit_placement_proparty - Set up the implicit placement
2808 * property.
2809 *
2810 * @dev_priv: Pointer to a device private struct.
2811 * @immutable: Whether the property is immutable.
2812 *
2813 * Sets up the implicit placement property unless it's already set up.
2814 */
2815void
2816vmw_kms_create_implicit_placement_property(struct vmw_private *dev_priv,
2817 bool immutable)
2818{
2819 if (dev_priv->implicit_placement_property)
2820 return;
2821
2822 dev_priv->implicit_placement_property =
2823 drm_property_create_range(dev_priv->dev,
2824 immutable ?
2825 DRM_MODE_PROP_IMMUTABLE : 0,
2826 "implicit_placement", 0, 1);
2827
2828}
Sinclair Yeh904bb5e2017-03-23 14:29:22 -07002829
2830
2831/**
2832 * vmw_kms_set_config - Wrapper around drm_atomic_helper_set_config
2833 *
2834 * @set: The configuration to set.
2835 *
2836 * The vmwgfx Xorg driver doesn't assign the mode::type member, which
2837 * when drm_mode_set_crtcinfo is called as part of the configuration setting
2838 * causes it to return incorrect crtc dimensions causing severe problems in
2839 * the vmwgfx modesetting. So explicitly clear that member before calling
2840 * into drm_atomic_helper_set_config.
2841 */
Dave Airlie320d8c32017-04-03 16:30:24 +10002842int vmw_kms_set_config(struct drm_mode_set *set,
2843 struct drm_modeset_acquire_ctx *ctx)
Sinclair Yeh904bb5e2017-03-23 14:29:22 -07002844{
2845 if (set && set->mode)
2846 set->mode->type = 0;
2847
Dave Airlie320d8c32017-04-03 16:30:24 +10002848 return drm_atomic_helper_set_config(set, ctx);
Sinclair Yeh904bb5e2017-03-23 14:29:22 -07002849}