blob: 23beff5d8e3c37e6904314db295cc9896657a38f [file] [log] [blame]
Dirk Hohndel (VMware)dff96882018-05-07 01:16:26 +02001// SPDX-License-Identifier: GPL-2.0 OR MIT
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00002/**************************************************************************
3 *
Dirk Hohndel (VMware)dff96882018-05-07 01:16:26 +02004 * Copyright 2009-2015 VMware, Inc., Palo Alto, CA., USA
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00005 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
21 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
22 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
23 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
24 * USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28#include "vmwgfx_kms.h"
Sinclair Yeh060e2ad2017-03-23 14:18:32 -070029#include <drm/drm_plane_helper.h>
Sinclair Yeh9c2542a2017-03-23 11:33:39 -070030#include <drm/drm_atomic.h>
31#include <drm/drm_atomic_helper.h>
Sinclair Yeh060e2ad2017-03-23 14:18:32 -070032#include <drm/drm_rect.h>
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000033
34/* Might need a hrtimer here? */
35#define VMWGFX_PRESENT_RATE ((HZ / 60 > 0) ? HZ / 60 : 1)
36
Sinclair Yehc8261a92015-06-26 01:23:42 -070037void vmw_du_cleanup(struct vmw_display_unit *du)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000038{
Sinclair Yeh36cc79b2017-03-23 11:28:11 -070039 drm_plane_cleanup(&du->primary);
40 drm_plane_cleanup(&du->cursor);
41
Thomas Wood34ea3d32014-05-29 16:57:41 +010042 drm_connector_unregister(&du->connector);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000043 drm_crtc_cleanup(&du->crtc);
44 drm_encoder_cleanup(&du->encoder);
45 drm_connector_cleanup(&du->connector);
46}
47
48/*
49 * Display Unit Cursor functions
50 */
51
Sinclair Yeh36cc79b2017-03-23 11:28:11 -070052static int vmw_cursor_update_image(struct vmw_private *dev_priv,
53 u32 *image, u32 width, u32 height,
54 u32 hotspotX, u32 hotspotY)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000055{
56 struct {
57 u32 cmd;
58 SVGAFifoCmdDefineAlphaCursor cursor;
59 } *cmd;
60 u32 image_size = width * height * 4;
61 u32 cmd_size = sizeof(*cmd) + image_size;
62
63 if (!image)
64 return -EINVAL;
65
66 cmd = vmw_fifo_reserve(dev_priv, cmd_size);
67 if (unlikely(cmd == NULL)) {
68 DRM_ERROR("Fifo reserve failed.\n");
69 return -ENOMEM;
70 }
71
72 memset(cmd, 0, sizeof(*cmd));
73
74 memcpy(&cmd[1], image, image_size);
75
Thomas Hellstromb9eb1a62015-04-02 02:39:45 -070076 cmd->cmd = SVGA_CMD_DEFINE_ALPHA_CURSOR;
77 cmd->cursor.id = 0;
78 cmd->cursor.width = width;
79 cmd->cursor.height = height;
80 cmd->cursor.hotspotX = hotspotX;
81 cmd->cursor.hotspotY = hotspotY;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000082
Thomas Hellstrom4e0858a2015-11-05 02:18:55 -080083 vmw_fifo_commit_flush(dev_priv, cmd_size);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000084
85 return 0;
86}
87
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +020088static int vmw_cursor_update_bo(struct vmw_private *dev_priv,
89 struct vmw_buffer_object *bo,
90 u32 width, u32 height,
91 u32 hotspotX, u32 hotspotY)
Jakob Bornecrantz6a91d972011-11-28 13:19:10 +010092{
93 struct ttm_bo_kmap_obj map;
94 unsigned long kmap_offset;
95 unsigned long kmap_num;
96 void *virtual;
97 bool dummy;
98 int ret;
99
100 kmap_offset = 0;
101 kmap_num = (width*height*4 + PAGE_SIZE - 1) >> PAGE_SHIFT;
102
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +0200103 ret = ttm_bo_reserve(&bo->base, true, false, NULL);
Jakob Bornecrantz6a91d972011-11-28 13:19:10 +0100104 if (unlikely(ret != 0)) {
105 DRM_ERROR("reserve failed\n");
106 return -EINVAL;
107 }
108
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +0200109 ret = ttm_bo_kmap(&bo->base, kmap_offset, kmap_num, &map);
Jakob Bornecrantz6a91d972011-11-28 13:19:10 +0100110 if (unlikely(ret != 0))
111 goto err_unreserve;
112
113 virtual = ttm_kmap_obj_virtual(&map, &dummy);
114 ret = vmw_cursor_update_image(dev_priv, virtual, width, height,
115 hotspotX, hotspotY);
116
117 ttm_bo_kunmap(&map);
118err_unreserve:
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +0200119 ttm_bo_unreserve(&bo->base);
Jakob Bornecrantz6a91d972011-11-28 13:19:10 +0100120
121 return ret;
122}
123
124
Sinclair Yeh36cc79b2017-03-23 11:28:11 -0700125static void vmw_cursor_update_position(struct vmw_private *dev_priv,
126 bool show, int x, int y)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000127{
Thomas Hellstromb76ff5e2015-10-28 10:44:04 +0100128 u32 *fifo_mem = dev_priv->mmio_virt;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000129 uint32_t count;
130
Sinclair Yeh36cc79b2017-03-23 11:28:11 -0700131 spin_lock(&dev_priv->cursor_lock);
Thomas Hellstromb76ff5e2015-10-28 10:44:04 +0100132 vmw_mmio_write(show ? 1 : 0, fifo_mem + SVGA_FIFO_CURSOR_ON);
133 vmw_mmio_write(x, fifo_mem + SVGA_FIFO_CURSOR_X);
134 vmw_mmio_write(y, fifo_mem + SVGA_FIFO_CURSOR_Y);
135 count = vmw_mmio_read(fifo_mem + SVGA_FIFO_CURSOR_COUNT);
136 vmw_mmio_write(++count, fifo_mem + SVGA_FIFO_CURSOR_COUNT);
Sinclair Yeh36cc79b2017-03-23 11:28:11 -0700137 spin_unlock(&dev_priv->cursor_lock);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000138}
139
Thomas Hellstrom8fbf9d92015-11-26 19:45:16 +0100140
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000141void vmw_kms_cursor_snoop(struct vmw_surface *srf,
142 struct ttm_object_file *tfile,
143 struct ttm_buffer_object *bo,
144 SVGA3dCmdHeader *header)
145{
146 struct ttm_bo_kmap_obj map;
147 unsigned long kmap_offset;
148 unsigned long kmap_num;
149 SVGA3dCopyBox *box;
150 unsigned box_count;
151 void *virtual;
152 bool dummy;
153 struct vmw_dma_cmd {
154 SVGA3dCmdHeader header;
155 SVGA3dCmdSurfaceDMA dma;
156 } *cmd;
Jakob Bornecrantz2ac86372011-11-03 21:03:08 +0100157 int i, ret;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000158
159 cmd = container_of(header, struct vmw_dma_cmd, header);
160
161 /* No snooper installed */
162 if (!srf->snooper.image)
163 return;
164
165 if (cmd->dma.host.face != 0 || cmd->dma.host.mipmap != 0) {
166 DRM_ERROR("face and mipmap for cursors should never != 0\n");
167 return;
168 }
169
170 if (cmd->header.size < 64) {
171 DRM_ERROR("at least one full copy box must be given\n");
172 return;
173 }
174
175 box = (SVGA3dCopyBox *)&cmd[1];
176 box_count = (cmd->header.size - sizeof(SVGA3dCmdSurfaceDMA)) /
177 sizeof(SVGA3dCopyBox);
178
Jakob Bornecrantz2ac86372011-11-03 21:03:08 +0100179 if (cmd->dma.guest.ptr.offset % PAGE_SIZE ||
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000180 box->x != 0 || box->y != 0 || box->z != 0 ||
181 box->srcx != 0 || box->srcy != 0 || box->srcz != 0 ||
Jakob Bornecrantz2ac86372011-11-03 21:03:08 +0100182 box->d != 1 || box_count != 1) {
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000183 /* TODO handle none page aligned offsets */
Jakob Bornecrantz2ac86372011-11-03 21:03:08 +0100184 /* TODO handle more dst & src != 0 */
185 /* TODO handle more then one copy */
186 DRM_ERROR("Cant snoop dma request for cursor!\n");
187 DRM_ERROR("(%u, %u, %u) (%u, %u, %u) (%ux%ux%u) %u %u\n",
188 box->srcx, box->srcy, box->srcz,
189 box->x, box->y, box->z,
190 box->w, box->h, box->d, box_count,
191 cmd->dma.guest.ptr.offset);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000192 return;
193 }
194
195 kmap_offset = cmd->dma.guest.ptr.offset >> PAGE_SHIFT;
196 kmap_num = (64*64*4) >> PAGE_SHIFT;
197
Christian Königdfd5e502016-04-06 11:12:03 +0200198 ret = ttm_bo_reserve(bo, true, false, NULL);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000199 if (unlikely(ret != 0)) {
200 DRM_ERROR("reserve failed\n");
201 return;
202 }
203
204 ret = ttm_bo_kmap(bo, kmap_offset, kmap_num, &map);
205 if (unlikely(ret != 0))
206 goto err_unreserve;
207
208 virtual = ttm_kmap_obj_virtual(&map, &dummy);
209
Jakob Bornecrantz2ac86372011-11-03 21:03:08 +0100210 if (box->w == 64 && cmd->dma.guest.pitch == 64*4) {
211 memcpy(srf->snooper.image, virtual, 64*64*4);
212 } else {
213 /* Image is unsigned pointer. */
214 for (i = 0; i < box->h; i++)
215 memcpy(srf->snooper.image + i * 64,
216 virtual + i * cmd->dma.guest.pitch,
217 box->w * 4);
218 }
219
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000220 srf->snooper.age++;
221
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000222 ttm_bo_kunmap(&map);
223err_unreserve:
224 ttm_bo_unreserve(bo);
225}
226
Thomas Hellstrom8fbf9d92015-11-26 19:45:16 +0100227/**
228 * vmw_kms_legacy_hotspot_clear - Clear legacy hotspots
229 *
230 * @dev_priv: Pointer to the device private struct.
231 *
232 * Clears all legacy hotspots.
233 */
234void vmw_kms_legacy_hotspot_clear(struct vmw_private *dev_priv)
235{
236 struct drm_device *dev = dev_priv->dev;
237 struct vmw_display_unit *du;
238 struct drm_crtc *crtc;
239
240 drm_modeset_lock_all(dev);
241 drm_for_each_crtc(crtc, dev) {
242 du = vmw_crtc_to_du(crtc);
243
244 du->hotspot_x = 0;
245 du->hotspot_y = 0;
246 }
247 drm_modeset_unlock_all(dev);
248}
249
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000250void vmw_kms_cursor_post_execbuf(struct vmw_private *dev_priv)
251{
252 struct drm_device *dev = dev_priv->dev;
253 struct vmw_display_unit *du;
254 struct drm_crtc *crtc;
255
256 mutex_lock(&dev->mode_config.mutex);
257
258 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
259 du = vmw_crtc_to_du(crtc);
260 if (!du->cursor_surface ||
261 du->cursor_age == du->cursor_surface->snooper.age)
262 continue;
263
264 du->cursor_age = du->cursor_surface->snooper.age;
265 vmw_cursor_update_image(dev_priv,
266 du->cursor_surface->snooper.image,
Thomas Hellstrom8fbf9d92015-11-26 19:45:16 +0100267 64, 64,
268 du->hotspot_x + du->core_hotspot_x,
269 du->hotspot_y + du->core_hotspot_y);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000270 }
271
272 mutex_unlock(&dev->mode_config.mutex);
273}
274
Sinclair Yeh36cc79b2017-03-23 11:28:11 -0700275
Sinclair Yeh36cc79b2017-03-23 11:28:11 -0700276void vmw_du_cursor_plane_destroy(struct drm_plane *plane)
277{
278 vmw_cursor_update_position(plane->dev->dev_private, false, 0, 0);
279
280 drm_plane_cleanup(plane);
281}
282
283
284void vmw_du_primary_plane_destroy(struct drm_plane *plane)
285{
286 drm_plane_cleanup(plane);
287
288 /* Planes are static in our case so we don't free it */
289}
290
291
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700292/**
293 * vmw_du_vps_unpin_surf - unpins resource associated with a framebuffer surface
294 *
295 * @vps: plane state associated with the display surface
296 * @unreference: true if we also want to unreference the display.
297 */
298void vmw_du_plane_unpin_surf(struct vmw_plane_state *vps,
299 bool unreference)
300{
301 if (vps->surf) {
302 if (vps->pinned) {
303 vmw_resource_unpin(&vps->surf->res);
304 vps->pinned--;
305 }
306
307 if (unreference) {
308 if (vps->pinned)
309 DRM_ERROR("Surface still pinned\n");
310 vmw_surface_unreference(&vps->surf);
311 }
312 }
313}
314
315
316/**
317 * vmw_du_plane_cleanup_fb - Unpins the cursor
318 *
319 * @plane: display plane
320 * @old_state: Contains the FB to clean up
321 *
322 * Unpins the framebuffer surface
323 *
324 * Returns 0 on success
325 */
326void
327vmw_du_plane_cleanup_fb(struct drm_plane *plane,
328 struct drm_plane_state *old_state)
329{
330 struct vmw_plane_state *vps = vmw_plane_state_to_vps(old_state);
331
332 vmw_du_plane_unpin_surf(vps, false);
333}
334
335
336/**
337 * vmw_du_cursor_plane_prepare_fb - Readies the cursor by referencing it
338 *
339 * @plane: display plane
340 * @new_state: info on the new plane state, including the FB
341 *
342 * Returns 0 on success
343 */
344int
345vmw_du_cursor_plane_prepare_fb(struct drm_plane *plane,
346 struct drm_plane_state *new_state)
347{
348 struct drm_framebuffer *fb = new_state->fb;
349 struct vmw_plane_state *vps = vmw_plane_state_to_vps(new_state);
350
351
352 if (vps->surf)
353 vmw_surface_unreference(&vps->surf);
354
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +0200355 if (vps->bo)
356 vmw_bo_unreference(&vps->bo);
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700357
358 if (fb) {
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +0200359 if (vmw_framebuffer_to_vfb(fb)->bo) {
360 vps->bo = vmw_framebuffer_to_vfbd(fb)->buffer;
361 vmw_bo_reference(vps->bo);
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700362 } else {
363 vps->surf = vmw_framebuffer_to_vfbs(fb)->surface;
364 vmw_surface_reference(vps->surf);
365 }
366 }
367
368 return 0;
369}
370
371
372void
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700373vmw_du_cursor_plane_atomic_update(struct drm_plane *plane,
374 struct drm_plane_state *old_state)
375{
376 struct drm_crtc *crtc = plane->state->crtc ?: old_state->crtc;
377 struct vmw_private *dev_priv = vmw_priv(crtc->dev);
378 struct vmw_display_unit *du = vmw_crtc_to_du(crtc);
379 struct vmw_plane_state *vps = vmw_plane_state_to_vps(plane->state);
380 s32 hotspot_x, hotspot_y;
381 int ret = 0;
382
383
384 hotspot_x = du->hotspot_x;
385 hotspot_y = du->hotspot_y;
Sinclair Yeh14979ad2017-07-17 23:26:21 -0700386
Ville Syrjälä2bb01c42018-03-22 17:23:02 +0200387 if (plane->state->fb) {
388 hotspot_x += plane->state->fb->hot_x;
389 hotspot_y += plane->state->fb->hot_y;
Sinclair Yeh14979ad2017-07-17 23:26:21 -0700390 }
391
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700392 du->cursor_surface = vps->surf;
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +0200393 du->cursor_bo = vps->bo;
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700394
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700395 if (vps->surf) {
396 du->cursor_age = du->cursor_surface->snooper.age;
397
398 ret = vmw_cursor_update_image(dev_priv,
399 vps->surf->snooper.image,
Thomas Hellstrom25db8752018-01-16 08:54:30 +0100400 64, 64, hotspot_x,
401 hotspot_y);
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +0200402 } else if (vps->bo) {
403 ret = vmw_cursor_update_bo(dev_priv, vps->bo,
404 plane->state->crtc_w,
405 plane->state->crtc_h,
406 hotspot_x, hotspot_y);
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700407 } else {
408 vmw_cursor_update_position(dev_priv, false, 0, 0);
409 return;
410 }
411
412 if (!ret) {
413 du->cursor_x = plane->state->crtc_x + du->set_gui_x;
414 du->cursor_y = plane->state->crtc_y + du->set_gui_y;
415
416 vmw_cursor_update_position(dev_priv, true,
417 du->cursor_x + hotspot_x,
418 du->cursor_y + hotspot_y);
Sinclair Yeh14979ad2017-07-17 23:26:21 -0700419
420 du->core_hotspot_x = hotspot_x - du->hotspot_x;
421 du->core_hotspot_y = hotspot_y - du->hotspot_y;
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700422 } else {
423 DRM_ERROR("Failed to update cursor image\n");
424 }
425}
426
427
428/**
429 * vmw_du_primary_plane_atomic_check - check if the new state is okay
430 *
431 * @plane: display plane
432 * @state: info on the new plane state, including the FB
433 *
434 * Check if the new state is settable given the current state. Other
435 * than what the atomic helper checks, we care about crtc fitting
436 * the FB and maintaining one active framebuffer.
437 *
438 * Returns 0 on success
439 */
440int vmw_du_primary_plane_atomic_check(struct drm_plane *plane,
441 struct drm_plane_state *state)
442{
Ville Syrjälä58a275aa92017-11-01 20:29:18 +0200443 struct drm_crtc_state *crtc_state = NULL;
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700444 struct drm_framebuffer *new_fb = state->fb;
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700445 int ret;
446
Ville Syrjälä58a275aa92017-11-01 20:29:18 +0200447 if (state->crtc)
448 crtc_state = drm_atomic_get_new_crtc_state(state->state, state->crtc);
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700449
Ville Syrjälä81af63a2018-01-23 19:08:57 +0200450 ret = drm_atomic_helper_check_plane_state(state, crtc_state,
Ville Syrjäläa01cb8b2017-11-01 22:16:19 +0200451 DRM_PLANE_HELPER_NO_SCALING,
452 DRM_PLANE_HELPER_NO_SCALING,
453 false, true);
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700454
455 if (!ret && new_fb) {
456 struct drm_crtc *crtc = state->crtc;
457 struct vmw_connector_state *vcs;
458 struct vmw_display_unit *du = vmw_crtc_to_du(crtc);
459 struct vmw_private *dev_priv = vmw_priv(crtc->dev);
460 struct vmw_framebuffer *vfb = vmw_framebuffer_to_vfb(new_fb);
461
462 vcs = vmw_connector_state_to_vcs(du->connector.state);
463
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700464 /* Only one active implicit framebuffer at a time. */
465 mutex_lock(&dev_priv->global_kms_state_mutex);
466 if (vcs->is_implicit && dev_priv->implicit_fb &&
467 !(dev_priv->num_implicit == 1 && du->active_implicit)
468 && dev_priv->implicit_fb != vfb) {
469 DRM_ERROR("Multiple implicit framebuffers "
470 "not supported.\n");
471 ret = -EINVAL;
472 }
473 mutex_unlock(&dev_priv->global_kms_state_mutex);
474 }
475
476
477 return ret;
478}
479
480
481/**
482 * vmw_du_cursor_plane_atomic_check - check if the new state is okay
483 *
484 * @plane: cursor plane
485 * @state: info on the new plane state
486 *
487 * This is a chance to fail if the new cursor state does not fit
488 * our requirements.
489 *
490 * Returns 0 on success
491 */
492int vmw_du_cursor_plane_atomic_check(struct drm_plane *plane,
493 struct drm_plane_state *new_state)
494{
495 int ret = 0;
496 struct vmw_surface *surface = NULL;
497 struct drm_framebuffer *fb = new_state->fb;
498
Thomas Hellstrom25db8752018-01-16 08:54:30 +0100499 struct drm_rect src = drm_plane_state_src(new_state);
500 struct drm_rect dest = drm_plane_state_dest(new_state);
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700501
502 /* Turning off */
503 if (!fb)
504 return ret;
505
Thomas Hellstrom25db8752018-01-16 08:54:30 +0100506 ret = drm_plane_helper_check_update(plane, new_state->crtc, fb,
507 &src, &dest,
508 DRM_MODE_ROTATE_0,
509 DRM_PLANE_HELPER_NO_SCALING,
510 DRM_PLANE_HELPER_NO_SCALING,
511 true, true, &new_state->visible);
512 if (!ret)
513 return ret;
514
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700515 /* A lot of the code assumes this */
516 if (new_state->crtc_w != 64 || new_state->crtc_h != 64) {
517 DRM_ERROR("Invalid cursor dimensions (%d, %d)\n",
518 new_state->crtc_w, new_state->crtc_h);
519 ret = -EINVAL;
520 }
521
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +0200522 if (!vmw_framebuffer_to_vfb(fb)->bo)
Sinclair Yeh060e2ad2017-03-23 14:18:32 -0700523 surface = vmw_framebuffer_to_vfbs(fb)->surface;
524
525 if (surface && !surface->snooper.image) {
526 DRM_ERROR("surface not suitable for cursor\n");
527 ret = -EINVAL;
528 }
529
530 return ret;
531}
532
533
Sinclair Yeh06ec4192017-03-23 13:14:54 -0700534int vmw_du_crtc_atomic_check(struct drm_crtc *crtc,
535 struct drm_crtc_state *new_state)
536{
537 struct vmw_display_unit *du = vmw_crtc_to_du(new_state->crtc);
Ville Syrjäläea632722018-06-26 22:47:16 +0300538 int connector_mask = drm_connector_mask(&du->connector);
Sinclair Yeh06ec4192017-03-23 13:14:54 -0700539 bool has_primary = new_state->plane_mask &
Ville Syrjäläea632722018-06-26 22:47:16 +0300540 drm_plane_mask(crtc->primary);
Sinclair Yeh06ec4192017-03-23 13:14:54 -0700541
542 /* We always want to have an active plane with an active CRTC */
543 if (has_primary != new_state->enable)
544 return -EINVAL;
545
546
547 if (new_state->connector_mask != connector_mask &&
548 new_state->connector_mask != 0) {
549 DRM_ERROR("Invalid connectors configuration\n");
550 return -EINVAL;
551 }
552
553 /*
554 * Our virtual device does not have a dot clock, so use the logical
555 * clock value as the dot clock.
556 */
557 if (new_state->mode.crtc_clock == 0)
558 new_state->adjusted_mode.crtc_clock = new_state->mode.clock;
559
560 return 0;
561}
562
563
564void vmw_du_crtc_atomic_begin(struct drm_crtc *crtc,
565 struct drm_crtc_state *old_crtc_state)
566{
567}
568
569
570void vmw_du_crtc_atomic_flush(struct drm_crtc *crtc,
571 struct drm_crtc_state *old_crtc_state)
572{
573 struct drm_pending_vblank_event *event = crtc->state->event;
574
575 if (event) {
576 crtc->state->event = NULL;
577
578 spin_lock_irq(&crtc->dev->event_lock);
Deepak Rawat3cbe87f2018-01-16 08:27:17 +0100579 drm_crtc_send_vblank_event(crtc, event);
Sinclair Yeh06ec4192017-03-23 13:14:54 -0700580 spin_unlock_irq(&crtc->dev->event_lock);
581 }
Sinclair Yeh06ec4192017-03-23 13:14:54 -0700582}
583
584
Sinclair Yeh9c2542a2017-03-23 11:33:39 -0700585/**
586 * vmw_du_crtc_duplicate_state - duplicate crtc state
587 * @crtc: DRM crtc
588 *
589 * Allocates and returns a copy of the crtc state (both common and
590 * vmw-specific) for the specified crtc.
591 *
592 * Returns: The newly allocated crtc state, or NULL on failure.
593 */
594struct drm_crtc_state *
595vmw_du_crtc_duplicate_state(struct drm_crtc *crtc)
596{
597 struct drm_crtc_state *state;
598 struct vmw_crtc_state *vcs;
599
600 if (WARN_ON(!crtc->state))
601 return NULL;
602
603 vcs = kmemdup(crtc->state, sizeof(*vcs), GFP_KERNEL);
604
605 if (!vcs)
606 return NULL;
607
608 state = &vcs->base;
609
610 __drm_atomic_helper_crtc_duplicate_state(crtc, state);
611
612 return state;
613}
614
615
616/**
617 * vmw_du_crtc_reset - creates a blank vmw crtc state
618 * @crtc: DRM crtc
619 *
620 * Resets the atomic state for @crtc by freeing the state pointer (which
621 * might be NULL, e.g. at driver load time) and allocating a new empty state
622 * object.
623 */
624void vmw_du_crtc_reset(struct drm_crtc *crtc)
625{
626 struct vmw_crtc_state *vcs;
627
628
629 if (crtc->state) {
630 __drm_atomic_helper_crtc_destroy_state(crtc->state);
631
632 kfree(vmw_crtc_state_to_vcs(crtc->state));
633 }
634
635 vcs = kzalloc(sizeof(*vcs), GFP_KERNEL);
636
637 if (!vcs) {
638 DRM_ERROR("Cannot allocate vmw_crtc_state\n");
639 return;
640 }
641
642 crtc->state = &vcs->base;
643 crtc->state->crtc = crtc;
644}
645
646
647/**
648 * vmw_du_crtc_destroy_state - destroy crtc state
649 * @crtc: DRM crtc
650 * @state: state object to destroy
651 *
652 * Destroys the crtc state (both common and vmw-specific) for the
653 * specified plane.
654 */
655void
656vmw_du_crtc_destroy_state(struct drm_crtc *crtc,
657 struct drm_crtc_state *state)
658{
659 drm_atomic_helper_crtc_destroy_state(crtc, state);
660}
661
662
Sinclair Yehcc5ec452017-03-23 11:36:05 -0700663/**
664 * vmw_du_plane_duplicate_state - duplicate plane state
665 * @plane: drm plane
666 *
667 * Allocates and returns a copy of the plane state (both common and
668 * vmw-specific) for the specified plane.
669 *
670 * Returns: The newly allocated plane state, or NULL on failure.
671 */
672struct drm_plane_state *
673vmw_du_plane_duplicate_state(struct drm_plane *plane)
674{
675 struct drm_plane_state *state;
676 struct vmw_plane_state *vps;
677
678 vps = kmemdup(plane->state, sizeof(*vps), GFP_KERNEL);
679
680 if (!vps)
681 return NULL;
682
683 vps->pinned = 0;
Sinclair Yeh810b3e162017-03-23 15:39:16 -0700684 vps->cpp = 0;
685
Sinclair Yehcc5ec452017-03-23 11:36:05 -0700686 /* Each ref counted resource needs to be acquired again */
687 if (vps->surf)
688 (void) vmw_surface_reference(vps->surf);
689
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +0200690 if (vps->bo)
691 (void) vmw_bo_reference(vps->bo);
Sinclair Yehcc5ec452017-03-23 11:36:05 -0700692
693 state = &vps->base;
694
695 __drm_atomic_helper_plane_duplicate_state(plane, state);
696
697 return state;
698}
699
700
701/**
702 * vmw_du_plane_reset - creates a blank vmw plane state
703 * @plane: drm plane
704 *
705 * Resets the atomic state for @plane by freeing the state pointer (which might
706 * be NULL, e.g. at driver load time) and allocating a new empty state object.
707 */
708void vmw_du_plane_reset(struct drm_plane *plane)
709{
710 struct vmw_plane_state *vps;
711
712
713 if (plane->state)
714 vmw_du_plane_destroy_state(plane, plane->state);
715
716 vps = kzalloc(sizeof(*vps), GFP_KERNEL);
717
718 if (!vps) {
719 DRM_ERROR("Cannot allocate vmw_plane_state\n");
720 return;
721 }
722
723 plane->state = &vps->base;
724 plane->state->plane = plane;
Robert Fossc2c446a2017-05-19 16:50:17 -0400725 plane->state->rotation = DRM_MODE_ROTATE_0;
Sinclair Yehcc5ec452017-03-23 11:36:05 -0700726}
727
728
729/**
730 * vmw_du_plane_destroy_state - destroy plane state
731 * @plane: DRM plane
732 * @state: state object to destroy
733 *
734 * Destroys the plane state (both common and vmw-specific) for the
735 * specified plane.
736 */
737void
738vmw_du_plane_destroy_state(struct drm_plane *plane,
739 struct drm_plane_state *state)
740{
741 struct vmw_plane_state *vps = vmw_plane_state_to_vps(state);
742
743
Sinclair Yeh810b3e162017-03-23 15:39:16 -0700744 /* Should have been freed by cleanup_fb */
Sinclair Yehcc5ec452017-03-23 11:36:05 -0700745 if (vps->surf)
746 vmw_surface_unreference(&vps->surf);
747
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +0200748 if (vps->bo)
749 vmw_bo_unreference(&vps->bo);
Sinclair Yehcc5ec452017-03-23 11:36:05 -0700750
751 drm_atomic_helper_plane_destroy_state(plane, state);
752}
753
754
Sinclair Yehd7721ca2017-03-23 11:48:44 -0700755/**
756 * vmw_du_connector_duplicate_state - duplicate connector state
757 * @connector: DRM connector
758 *
759 * Allocates and returns a copy of the connector state (both common and
760 * vmw-specific) for the specified connector.
761 *
762 * Returns: The newly allocated connector state, or NULL on failure.
763 */
764struct drm_connector_state *
765vmw_du_connector_duplicate_state(struct drm_connector *connector)
766{
767 struct drm_connector_state *state;
768 struct vmw_connector_state *vcs;
769
770 if (WARN_ON(!connector->state))
771 return NULL;
772
773 vcs = kmemdup(connector->state, sizeof(*vcs), GFP_KERNEL);
774
775 if (!vcs)
776 return NULL;
777
778 state = &vcs->base;
779
780 __drm_atomic_helper_connector_duplicate_state(connector, state);
781
782 return state;
783}
784
785
786/**
787 * vmw_du_connector_reset - creates a blank vmw connector state
788 * @connector: DRM connector
789 *
790 * Resets the atomic state for @connector by freeing the state pointer (which
791 * might be NULL, e.g. at driver load time) and allocating a new empty state
792 * object.
793 */
794void vmw_du_connector_reset(struct drm_connector *connector)
795{
796 struct vmw_connector_state *vcs;
797
798
799 if (connector->state) {
800 __drm_atomic_helper_connector_destroy_state(connector->state);
801
802 kfree(vmw_connector_state_to_vcs(connector->state));
803 }
804
805 vcs = kzalloc(sizeof(*vcs), GFP_KERNEL);
806
807 if (!vcs) {
808 DRM_ERROR("Cannot allocate vmw_connector_state\n");
809 return;
810 }
811
812 __drm_atomic_helper_connector_reset(connector, &vcs->base);
813}
814
815
816/**
817 * vmw_du_connector_destroy_state - destroy connector state
818 * @connector: DRM connector
819 * @state: state object to destroy
820 *
821 * Destroys the connector state (both common and vmw-specific) for the
822 * specified plane.
823 */
824void
825vmw_du_connector_destroy_state(struct drm_connector *connector,
826 struct drm_connector_state *state)
827{
828 drm_atomic_helper_connector_destroy_state(connector, state);
829}
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000830/*
831 * Generic framebuffer code
832 */
833
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000834/*
835 * Surface framebuffer code
836 */
837
Rashika Kheria847c5962014-01-06 22:18:10 +0530838static void vmw_framebuffer_surface_destroy(struct drm_framebuffer *framebuffer)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000839{
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200840 struct vmw_framebuffer_surface *vfbs =
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000841 vmw_framebuffer_to_vfbs(framebuffer);
842
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000843 drm_framebuffer_cleanup(framebuffer);
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200844 vmw_surface_unreference(&vfbs->surface);
Thomas Hellstroma2787242015-06-29 12:55:07 -0700845 if (vfbs->base.user_obj)
846 ttm_base_object_unref(&vfbs->base.user_obj);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000847
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200848 kfree(vfbs);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000849}
850
Rashika Kheria847c5962014-01-06 22:18:10 +0530851static int vmw_framebuffer_surface_dirty(struct drm_framebuffer *framebuffer,
Thomas Hellstrom02b00162010-10-05 12:43:02 +0200852 struct drm_file *file_priv,
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000853 unsigned flags, unsigned color,
854 struct drm_clip_rect *clips,
855 unsigned num_clips)
856{
857 struct vmw_private *dev_priv = vmw_priv(framebuffer->dev);
858 struct vmw_framebuffer_surface *vfbs =
859 vmw_framebuffer_to_vfbs(framebuffer);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000860 struct drm_clip_rect norect;
Jakob Bornecrantz5deb65c2011-10-04 20:13:18 +0200861 int ret, inc = 1;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000862
Sinclair Yehc8261a92015-06-26 01:23:42 -0700863 /* Legacy Display Unit does not support 3D */
864 if (dev_priv->active_display_unit == vmw_du_legacy)
Jakob Bornecrantz01e81412011-10-04 20:13:24 +0200865 return -EINVAL;
866
Ville Syrjälä73e9efd2013-12-04 14:13:58 +0200867 drm_modeset_lock_all(dev_priv->dev);
868
Thomas Hellstrom294adf72014-02-27 12:34:51 +0100869 ret = ttm_read_lock(&dev_priv->reservation_sem, true);
Ville Syrjälä73e9efd2013-12-04 14:13:58 +0200870 if (unlikely(ret != 0)) {
871 drm_modeset_unlock_all(dev_priv->dev);
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200872 return ret;
Ville Syrjälä73e9efd2013-12-04 14:13:58 +0200873 }
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200874
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000875 if (!num_clips) {
876 num_clips = 1;
877 clips = &norect;
878 norect.x1 = norect.y1 = 0;
879 norect.x2 = framebuffer->width;
880 norect.y2 = framebuffer->height;
881 } else if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY) {
882 num_clips /= 2;
883 inc = 2; /* skip source rects */
884 }
885
Sinclair Yehc8261a92015-06-26 01:23:42 -0700886 if (dev_priv->active_display_unit == vmw_du_screen_object)
Thomas Hellstrom10b1e0c2015-06-26 02:14:27 -0700887 ret = vmw_kms_sou_do_surface_dirty(dev_priv, &vfbs->base,
888 clips, NULL, NULL, 0, 0,
Deepak Rawat91e9f352018-01-16 08:24:17 +0100889 num_clips, inc, NULL, NULL);
Sinclair Yeh35c05122015-06-26 01:42:06 -0700890 else
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -0700891 ret = vmw_kms_stdu_surface_dirty(dev_priv, &vfbs->base,
892 clips, NULL, NULL, 0, 0,
Deepak Rawat91e9f352018-01-16 08:24:17 +0100893 num_clips, inc, NULL, NULL);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000894
Thomas Hellstrom3eab3d92015-06-25 11:57:56 -0700895 vmw_fifo_flush(dev_priv, false);
Thomas Hellstrom294adf72014-02-27 12:34:51 +0100896 ttm_read_unlock(&dev_priv->reservation_sem);
Ville Syrjälä73e9efd2013-12-04 14:13:58 +0200897
898 drm_modeset_unlock_all(dev_priv->dev);
899
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000900 return 0;
901}
902
Thomas Hellstrom10b1e0c2015-06-26 02:14:27 -0700903/**
904 * vmw_kms_readback - Perform a readback from the screen system to
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +0200905 * a buffer-object backed framebuffer.
Thomas Hellstrom10b1e0c2015-06-26 02:14:27 -0700906 *
907 * @dev_priv: Pointer to the device private structure.
908 * @file_priv: Pointer to a struct drm_file identifying the caller.
909 * Must be set to NULL if @user_fence_rep is NULL.
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +0200910 * @vfb: Pointer to the buffer-object backed framebuffer.
Thomas Hellstrom10b1e0c2015-06-26 02:14:27 -0700911 * @user_fence_rep: User-space provided structure for fence information.
912 * Must be set to non-NULL if @file_priv is non-NULL.
913 * @vclips: Array of clip rects.
914 * @num_clips: Number of clip rects in @vclips.
915 *
916 * Returns 0 on success, negative error code on failure. -ERESTARTSYS if
917 * interrupted.
918 */
919int vmw_kms_readback(struct vmw_private *dev_priv,
920 struct drm_file *file_priv,
921 struct vmw_framebuffer *vfb,
922 struct drm_vmw_fence_rep __user *user_fence_rep,
923 struct drm_vmw_rect *vclips,
924 uint32_t num_clips)
925{
926 switch (dev_priv->active_display_unit) {
927 case vmw_du_screen_object:
928 return vmw_kms_sou_readback(dev_priv, file_priv, vfb,
Deepak Rawat91e9f352018-01-16 08:24:17 +0100929 user_fence_rep, vclips, num_clips,
930 NULL);
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -0700931 case vmw_du_screen_target:
932 return vmw_kms_stdu_dma(dev_priv, file_priv, vfb,
933 user_fence_rep, NULL, vclips, num_clips,
Deepak Rawat91e9f352018-01-16 08:24:17 +0100934 1, false, true, NULL);
Thomas Hellstrom10b1e0c2015-06-26 02:14:27 -0700935 default:
936 WARN_ONCE(true,
937 "Readback called with invalid display system.\n");
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -0700938}
Thomas Hellstrom10b1e0c2015-06-26 02:14:27 -0700939
940 return -ENOSYS;
941}
942
943
Ville Syrjäläd7955fc2015-12-15 12:21:15 +0100944static const struct drm_framebuffer_funcs vmw_framebuffer_surface_funcs = {
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000945 .destroy = vmw_framebuffer_surface_destroy,
946 .dirty = vmw_framebuffer_surface_dirty,
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000947};
948
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200949static int vmw_kms_new_framebuffer_surface(struct vmw_private *dev_priv,
950 struct vmw_surface *surface,
951 struct vmw_framebuffer **out,
Daniel Vetterdabdcdc2016-12-02 08:07:40 +0100952 const struct drm_mode_fb_cmd2
Sinclair Yehf89c6c32015-06-26 01:54:28 -0700953 *mode_cmd,
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +0200954 bool is_bo_proxy)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000955
956{
957 struct drm_device *dev = dev_priv->dev;
958 struct vmw_framebuffer_surface *vfbs;
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200959 enum SVGA3dSurfaceFormat format;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000960 int ret;
Daniel Vetterdabdcdc2016-12-02 08:07:40 +0100961 struct drm_format_name_buf format_name;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000962
Sinclair Yehc8261a92015-06-26 01:23:42 -0700963 /* 3D is only supported on HWv8 and newer hosts */
964 if (dev_priv->active_display_unit == vmw_du_legacy)
Jakob Bornecrantz01e81412011-10-04 20:13:24 +0200965 return -ENOSYS;
966
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200967 /*
968 * Sanity checks.
969 */
970
Jakob Bornecrantze7ac9212011-11-28 13:19:12 +0100971 /* Surface must be marked as a scanout. */
972 if (unlikely(!surface->scanout))
973 return -EINVAL;
974
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200975 if (unlikely(surface->mip_levels[0] != 1 ||
976 surface->num_sizes != 1 ||
Thomas Hellstromb360a3c2014-01-15 08:51:36 +0100977 surface->base_size.width < mode_cmd->width ||
978 surface->base_size.height < mode_cmd->height ||
979 surface->base_size.depth != 1)) {
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200980 DRM_ERROR("Incompatible surface dimensions "
981 "for requested mode.\n");
982 return -EINVAL;
983 }
984
Daniel Vetterdabdcdc2016-12-02 08:07:40 +0100985 switch (mode_cmd->pixel_format) {
986 case DRM_FORMAT_ARGB8888:
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200987 format = SVGA3D_A8R8G8B8;
988 break;
Daniel Vetterdabdcdc2016-12-02 08:07:40 +0100989 case DRM_FORMAT_XRGB8888:
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200990 format = SVGA3D_X8R8G8B8;
991 break;
Daniel Vetterdabdcdc2016-12-02 08:07:40 +0100992 case DRM_FORMAT_RGB565:
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200993 format = SVGA3D_R5G6B5;
994 break;
Daniel Vetterdabdcdc2016-12-02 08:07:40 +0100995 case DRM_FORMAT_XRGB1555:
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200996 format = SVGA3D_A1R5G5B5;
997 break;
998 default:
Daniel Vetterdabdcdc2016-12-02 08:07:40 +0100999 DRM_ERROR("Invalid pixel format: %s\n",
1000 drm_get_format_name(mode_cmd->pixel_format, &format_name));
Thomas Hellstromd3216a02010-10-05 12:42:59 +02001001 return -EINVAL;
1002 }
1003
Thomas Hellstromd80efd52015-08-10 10:39:35 -07001004 /*
1005 * For DX, surface format validation is done when surface->scanout
1006 * is set.
1007 */
1008 if (!dev_priv->has_dx && format != surface->format) {
Thomas Hellstromd3216a02010-10-05 12:42:59 +02001009 DRM_ERROR("Invalid surface format for requested mode.\n");
1010 return -EINVAL;
1011 }
1012
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001013 vfbs = kzalloc(sizeof(*vfbs), GFP_KERNEL);
1014 if (!vfbs) {
1015 ret = -ENOMEM;
1016 goto out_err1;
1017 }
1018
Ville Syrjäläa3f913c2016-12-14 22:48:59 +02001019 drm_helper_mode_fill_fb_struct(dev, &vfbs->base.base, mode_cmd);
Sinclair Yeh05c95012015-08-11 22:53:39 -07001020 vfbs->surface = vmw_surface_reference(surface);
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001021 vfbs->base.user_handle = mode_cmd->handles[0];
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001022 vfbs->is_bo_proxy = is_bo_proxy;
Thomas Hellstrom3a939a52010-10-05 12:43:03 +02001023
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001024 *out = &vfbs->base;
1025
Daniel Vetter80f0b5a2012-12-13 23:39:01 +01001026 ret = drm_framebuffer_init(dev, &vfbs->base.base,
1027 &vmw_framebuffer_surface_funcs);
1028 if (ret)
Sinclair Yeh05c95012015-08-11 22:53:39 -07001029 goto out_err2;
Daniel Vetter80f0b5a2012-12-13 23:39:01 +01001030
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001031 return 0;
1032
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001033out_err2:
Sinclair Yeh05c95012015-08-11 22:53:39 -07001034 vmw_surface_unreference(&surface);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001035 kfree(vfbs);
1036out_err1:
1037 return ret;
1038}
1039
1040/*
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001041 * Buffer-object framebuffer code
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001042 */
1043
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001044static void vmw_framebuffer_bo_destroy(struct drm_framebuffer *framebuffer)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001045{
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001046 struct vmw_framebuffer_bo *vfbd =
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001047 vmw_framebuffer_to_vfbd(framebuffer);
1048
1049 drm_framebuffer_cleanup(framebuffer);
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001050 vmw_bo_unreference(&vfbd->buffer);
Thomas Hellstroma2787242015-06-29 12:55:07 -07001051 if (vfbd->base.user_obj)
1052 ttm_base_object_unref(&vfbd->base.user_obj);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001053
1054 kfree(vfbd);
1055}
1056
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001057static int vmw_framebuffer_bo_dirty(struct drm_framebuffer *framebuffer,
1058 struct drm_file *file_priv,
1059 unsigned int flags, unsigned int color,
1060 struct drm_clip_rect *clips,
1061 unsigned int num_clips)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001062{
1063 struct vmw_private *dev_priv = vmw_priv(framebuffer->dev);
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001064 struct vmw_framebuffer_bo *vfbd =
Jakob Bornecrantz5deb65c2011-10-04 20:13:18 +02001065 vmw_framebuffer_to_vfbd(framebuffer);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001066 struct drm_clip_rect norect;
Jakob Bornecrantz5deb65c2011-10-04 20:13:18 +02001067 int ret, increment = 1;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001068
Ville Syrjälä73e9efd2013-12-04 14:13:58 +02001069 drm_modeset_lock_all(dev_priv->dev);
1070
Thomas Hellstrom294adf72014-02-27 12:34:51 +01001071 ret = ttm_read_lock(&dev_priv->reservation_sem, true);
Ville Syrjälä73e9efd2013-12-04 14:13:58 +02001072 if (unlikely(ret != 0)) {
1073 drm_modeset_unlock_all(dev_priv->dev);
Thomas Hellstrom3a939a52010-10-05 12:43:03 +02001074 return ret;
Ville Syrjälä73e9efd2013-12-04 14:13:58 +02001075 }
Thomas Hellstrom3a939a52010-10-05 12:43:03 +02001076
Thomas Hellstromdf1c93b2010-01-13 22:28:36 +01001077 if (!num_clips) {
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001078 num_clips = 1;
1079 clips = &norect;
1080 norect.x1 = norect.y1 = 0;
1081 norect.x2 = framebuffer->width;
1082 norect.y2 = framebuffer->height;
1083 } else if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY) {
1084 num_clips /= 2;
1085 increment = 2;
1086 }
1087
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001088 switch (dev_priv->active_display_unit) {
1089 case vmw_du_screen_target:
1090 ret = vmw_kms_stdu_dma(dev_priv, NULL, &vfbd->base, NULL,
1091 clips, NULL, num_clips, increment,
Deepak Rawat91e9f352018-01-16 08:24:17 +01001092 true, true, NULL);
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001093 break;
1094 case vmw_du_screen_object:
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001095 ret = vmw_kms_sou_do_bo_dirty(dev_priv, &vfbd->base,
1096 clips, NULL, num_clips,
1097 increment, true, NULL, NULL);
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001098 break;
Thomas Hellstrom352b20d2015-06-29 12:57:37 -07001099 case vmw_du_legacy:
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001100 ret = vmw_kms_ldu_do_bo_dirty(dev_priv, &vfbd->base, 0, 0,
1101 clips, num_clips, increment);
Thomas Hellstrom352b20d2015-06-29 12:57:37 -07001102 break;
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001103 default:
Thomas Hellstrom352b20d2015-06-29 12:57:37 -07001104 ret = -EINVAL;
1105 WARN_ONCE(true, "Dirty called with invalid display system.\n");
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001106 break;
Jakob Bornecrantz56d1c782011-10-04 20:13:22 +02001107 }
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001108
Thomas Hellstrom3eab3d92015-06-25 11:57:56 -07001109 vmw_fifo_flush(dev_priv, false);
Thomas Hellstrom294adf72014-02-27 12:34:51 +01001110 ttm_read_unlock(&dev_priv->reservation_sem);
Ville Syrjälä73e9efd2013-12-04 14:13:58 +02001111
1112 drm_modeset_unlock_all(dev_priv->dev);
1113
Jakob Bornecrantz5deb65c2011-10-04 20:13:18 +02001114 return ret;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001115}
1116
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001117static const struct drm_framebuffer_funcs vmw_framebuffer_bo_funcs = {
1118 .destroy = vmw_framebuffer_bo_destroy,
1119 .dirty = vmw_framebuffer_bo_dirty,
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001120};
1121
Jakob Bornecrantz497a3ff2011-10-04 20:13:14 +02001122/**
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001123 * Pin the bofer in a location suitable for access by the
Thomas Hellstromef86cfe2018-01-16 11:07:30 +01001124 * display system.
Jakob Bornecrantz497a3ff2011-10-04 20:13:14 +02001125 */
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001126static int vmw_framebuffer_pin(struct vmw_framebuffer *vfb)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001127{
1128 struct vmw_private *dev_priv = vmw_priv(vfb->base.dev);
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001129 struct vmw_buffer_object *buf;
Thomas Hellstromef86cfe2018-01-16 11:07:30 +01001130 struct ttm_placement *placement;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001131 int ret;
1132
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001133 buf = vfb->bo ? vmw_framebuffer_to_vfbd(&vfb->base)->buffer :
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001134 vmw_framebuffer_to_vfbs(&vfb->base)->surface->res.backup;
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +02001135
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001136 if (!buf)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001137 return 0;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001138
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001139 switch (dev_priv->active_display_unit) {
1140 case vmw_du_legacy:
1141 vmw_overlay_pause_all(dev_priv);
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001142 ret = vmw_bo_pin_in_start_of_vram(dev_priv, buf, false);
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001143 vmw_overlay_resume_all(dev_priv);
1144 break;
1145 case vmw_du_screen_object:
1146 case vmw_du_screen_target:
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001147 if (vfb->bo) {
Thomas Hellstromef86cfe2018-01-16 11:07:30 +01001148 if (dev_priv->capabilities & SVGA_CAP_3D) {
1149 /*
1150 * Use surface DMA to get content to
1151 * sreen target surface.
1152 */
1153 placement = &vmw_vram_gmr_placement;
1154 } else {
1155 /* Use CPU blit. */
1156 placement = &vmw_sys_placement;
1157 }
1158 } else {
1159 /* Use surface / image update */
1160 placement = &vmw_mob_placement;
1161 }
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001162
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001163 return vmw_bo_pin_in_placement(dev_priv, buf, placement, false);
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001164 default:
1165 return -EINVAL;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001166 }
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001167
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001168 return ret;
1169}
1170
1171static int vmw_framebuffer_unpin(struct vmw_framebuffer *vfb)
1172{
1173 struct vmw_private *dev_priv = vmw_priv(vfb->base.dev);
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001174 struct vmw_buffer_object *buf;
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001175
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001176 buf = vfb->bo ? vmw_framebuffer_to_vfbd(&vfb->base)->buffer :
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001177 vmw_framebuffer_to_vfbs(&vfb->base)->surface->res.backup;
1178
1179 if (WARN_ON(!buf))
1180 return 0;
1181
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001182 return vmw_bo_unpin(dev_priv, buf, false);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001183}
1184
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001185/**
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001186 * vmw_create_bo_proxy - create a proxy surface for the buffer object
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001187 *
1188 * @dev: DRM device
1189 * @mode_cmd: parameters for the new surface
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001190 * @bo_mob: MOB backing the buffer object
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001191 * @srf_out: newly created surface
1192 *
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001193 * When the content FB is a buffer object, we create a surface as a proxy to the
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001194 * same buffer. This way we can do a surface copy rather than a surface DMA.
1195 * This is a more efficient approach
1196 *
1197 * RETURNS:
1198 * 0 on success, error code otherwise
1199 */
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001200static int vmw_create_bo_proxy(struct drm_device *dev,
1201 const struct drm_mode_fb_cmd2 *mode_cmd,
1202 struct vmw_buffer_object *bo_mob,
1203 struct vmw_surface **srf_out)
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001204{
1205 uint32_t format;
Thomas Hellstrom8cd9f252017-01-19 10:53:02 -08001206 struct drm_vmw_size content_base_size = {0};
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001207 struct vmw_resource *res;
Thomas Hellstroma50e2bf2016-01-08 20:29:40 +01001208 unsigned int bytes_pp;
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001209 struct drm_format_name_buf format_name;
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001210 int ret;
1211
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001212 switch (mode_cmd->pixel_format) {
1213 case DRM_FORMAT_ARGB8888:
1214 case DRM_FORMAT_XRGB8888:
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001215 format = SVGA3D_X8R8G8B8;
Thomas Hellstroma50e2bf2016-01-08 20:29:40 +01001216 bytes_pp = 4;
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001217 break;
1218
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001219 case DRM_FORMAT_RGB565:
1220 case DRM_FORMAT_XRGB1555:
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001221 format = SVGA3D_R5G6B5;
Thomas Hellstroma50e2bf2016-01-08 20:29:40 +01001222 bytes_pp = 2;
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001223 break;
1224
1225 case 8:
1226 format = SVGA3D_P8;
Thomas Hellstroma50e2bf2016-01-08 20:29:40 +01001227 bytes_pp = 1;
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001228 break;
1229
1230 default:
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001231 DRM_ERROR("Invalid framebuffer format %s\n",
1232 drm_get_format_name(mode_cmd->pixel_format, &format_name));
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001233 return -EINVAL;
1234 }
1235
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001236 content_base_size.width = mode_cmd->pitches[0] / bytes_pp;
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001237 content_base_size.height = mode_cmd->height;
1238 content_base_size.depth = 1;
1239
1240 ret = vmw_surface_gb_priv_define(dev,
Deepak Rawat14b1c332018-06-20 14:48:35 -07001241 0, /* kernel visible only */
1242 0, /* flags */
1243 format,
1244 true, /* can be a scanout buffer */
1245 1, /* num of mip levels */
1246 0,
1247 0,
1248 content_base_size,
1249 SVGA3D_MS_PATTERN_NONE,
1250 SVGA3D_MS_QUALITY_NONE,
1251 srf_out);
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001252 if (ret) {
1253 DRM_ERROR("Failed to allocate proxy content buffer\n");
1254 return ret;
1255 }
1256
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001257 res = &(*srf_out)->res;
Sinclair Yehf89c6c32015-06-26 01:54:28 -07001258
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001259 /* Reserve and switch the backing mob. */
1260 mutex_lock(&res->dev_priv->cmdbuf_mutex);
1261 (void) vmw_resource_reserve(res, false, true);
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001262 vmw_bo_unreference(&res->backup);
1263 res->backup = vmw_bo_reference(bo_mob);
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001264 res->backup_offset = 0;
Thomas Hellstromd80efd52015-08-10 10:39:35 -07001265 vmw_resource_unreserve(res, false, NULL, 0);
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001266 mutex_unlock(&res->dev_priv->cmdbuf_mutex);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001267
1268 return 0;
1269}
1270
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001271
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001272
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001273static int vmw_kms_new_framebuffer_bo(struct vmw_private *dev_priv,
1274 struct vmw_buffer_object *bo,
1275 struct vmw_framebuffer **out,
1276 const struct drm_mode_fb_cmd2
1277 *mode_cmd)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001278
1279{
1280 struct drm_device *dev = dev_priv->dev;
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001281 struct vmw_framebuffer_bo *vfbd;
Thomas Hellstromd3216a02010-10-05 12:42:59 +02001282 unsigned int requested_size;
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001283 struct drm_format_name_buf format_name;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001284 int ret;
1285
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001286 requested_size = mode_cmd->height * mode_cmd->pitches[0];
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001287 if (unlikely(requested_size > bo->base.num_pages * PAGE_SIZE)) {
Thomas Hellstromd3216a02010-10-05 12:42:59 +02001288 DRM_ERROR("Screen buffer object size is too small "
1289 "for requested mode.\n");
1290 return -EINVAL;
1291 }
1292
Jakob Bornecrantzc337ada2011-10-04 20:13:34 +02001293 /* Limited framebuffer color depth support for screen objects */
Sinclair Yehc8261a92015-06-26 01:23:42 -07001294 if (dev_priv->active_display_unit == vmw_du_screen_object) {
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001295 switch (mode_cmd->pixel_format) {
1296 case DRM_FORMAT_XRGB8888:
1297 case DRM_FORMAT_ARGB8888:
1298 break;
1299 case DRM_FORMAT_XRGB1555:
1300 case DRM_FORMAT_RGB565:
1301 break;
Jakob Bornecrantzc337ada2011-10-04 20:13:34 +02001302 default:
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001303 DRM_ERROR("Invalid pixel format: %s\n",
1304 drm_get_format_name(mode_cmd->pixel_format, &format_name));
Jakob Bornecrantzc337ada2011-10-04 20:13:34 +02001305 return -EINVAL;
1306 }
1307 }
1308
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001309 vfbd = kzalloc(sizeof(*vfbd), GFP_KERNEL);
1310 if (!vfbd) {
1311 ret = -ENOMEM;
1312 goto out_err1;
1313 }
1314
Ville Syrjäläa3f913c2016-12-14 22:48:59 +02001315 drm_helper_mode_fill_fb_struct(dev, &vfbd->base.base, mode_cmd);
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001316 vfbd->base.bo = true;
1317 vfbd->buffer = vmw_bo_reference(bo);
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001318 vfbd->base.user_handle = mode_cmd->handles[0];
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001319 *out = &vfbd->base;
1320
Daniel Vetter80f0b5a2012-12-13 23:39:01 +01001321 ret = drm_framebuffer_init(dev, &vfbd->base.base,
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001322 &vmw_framebuffer_bo_funcs);
Daniel Vetter80f0b5a2012-12-13 23:39:01 +01001323 if (ret)
Sinclair Yeh05c95012015-08-11 22:53:39 -07001324 goto out_err2;
Daniel Vetter80f0b5a2012-12-13 23:39:01 +01001325
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001326 return 0;
1327
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001328out_err2:
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001329 vmw_bo_unreference(&bo);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001330 kfree(vfbd);
1331out_err1:
1332 return ret;
1333}
1334
Sinclair Yeh810b3e162017-03-23 15:39:16 -07001335
1336/**
1337 * vmw_kms_srf_ok - check if a surface can be created
1338 *
1339 * @width: requested width
1340 * @height: requested height
1341 *
1342 * Surfaces need to be less than texture size
1343 */
1344static bool
1345vmw_kms_srf_ok(struct vmw_private *dev_priv, uint32_t width, uint32_t height)
1346{
1347 if (width > dev_priv->texture_max_width ||
1348 height > dev_priv->texture_max_height)
1349 return false;
1350
1351 return true;
1352}
1353
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001354/**
1355 * vmw_kms_new_framebuffer - Create a new framebuffer.
1356 *
1357 * @dev_priv: Pointer to device private struct.
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001358 * @bo: Pointer to buffer object to wrap the kms framebuffer around.
1359 * Either @bo or @surface must be NULL.
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001360 * @surface: Pointer to a surface to wrap the kms framebuffer around.
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001361 * Either @bo or @surface must be NULL.
1362 * @only_2d: No presents will occur to this buffer object based framebuffer.
1363 * This helps the code to do some important optimizations.
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001364 * @mode_cmd: Frame-buffer metadata.
1365 */
1366struct vmw_framebuffer *
1367vmw_kms_new_framebuffer(struct vmw_private *dev_priv,
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001368 struct vmw_buffer_object *bo,
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001369 struct vmw_surface *surface,
1370 bool only_2d,
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001371 const struct drm_mode_fb_cmd2 *mode_cmd)
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001372{
Sinclair Yeh05c95012015-08-11 22:53:39 -07001373 struct vmw_framebuffer *vfb = NULL;
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001374 bool is_bo_proxy = false;
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001375 int ret;
1376
1377 /*
1378 * We cannot use the SurfaceDMA command in an non-accelerated VM,
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001379 * therefore, wrap the buffer object in a surface so we can use the
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001380 * SurfaceCopy command.
1381 */
Sinclair Yeh810b3e162017-03-23 15:39:16 -07001382 if (vmw_kms_srf_ok(dev_priv, mode_cmd->width, mode_cmd->height) &&
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001383 bo && only_2d &&
Sinclair Yehbbd5fef2017-06-02 07:44:53 +02001384 mode_cmd->width > 64 && /* Don't create a proxy for cursor */
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001385 dev_priv->active_display_unit == vmw_du_screen_target) {
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001386 ret = vmw_create_bo_proxy(dev_priv->dev, mode_cmd,
1387 bo, &surface);
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001388 if (ret)
1389 return ERR_PTR(ret);
1390
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001391 is_bo_proxy = true;
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001392 }
1393
1394 /* Create the new framebuffer depending one what we have */
Sinclair Yeh05c95012015-08-11 22:53:39 -07001395 if (surface) {
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001396 ret = vmw_kms_new_framebuffer_surface(dev_priv, surface, &vfb,
1397 mode_cmd,
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001398 is_bo_proxy);
Sinclair Yeh05c95012015-08-11 22:53:39 -07001399
1400 /*
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001401 * vmw_create_bo_proxy() adds a reference that is no longer
Sinclair Yeh05c95012015-08-11 22:53:39 -07001402 * needed
1403 */
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001404 if (is_bo_proxy)
Sinclair Yeh05c95012015-08-11 22:53:39 -07001405 vmw_surface_unreference(&surface);
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001406 } else if (bo) {
1407 ret = vmw_kms_new_framebuffer_bo(dev_priv, bo, &vfb,
1408 mode_cmd);
Sinclair Yeh05c95012015-08-11 22:53:39 -07001409 } else {
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001410 BUG();
Sinclair Yeh05c95012015-08-11 22:53:39 -07001411 }
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001412
1413 if (ret)
1414 return ERR_PTR(ret);
1415
1416 vfb->pin = vmw_framebuffer_pin;
1417 vfb->unpin = vmw_framebuffer_unpin;
1418
1419 return vfb;
1420}
1421
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001422/*
1423 * Generic Kernel modesetting functions
1424 */
1425
1426static struct drm_framebuffer *vmw_kms_fb_create(struct drm_device *dev,
1427 struct drm_file *file_priv,
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001428 const struct drm_mode_fb_cmd2 *mode_cmd)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001429{
1430 struct vmw_private *dev_priv = vmw_priv(dev);
1431 struct ttm_object_file *tfile = vmw_fpriv(file_priv)->tfile;
1432 struct vmw_framebuffer *vfb = NULL;
1433 struct vmw_surface *surface = NULL;
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001434 struct vmw_buffer_object *bo = NULL;
Thomas Hellstrom90ff18b2011-10-04 20:13:32 +02001435 struct ttm_base_object *user_obj;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001436 int ret;
1437
Thomas Hellstrom90ff18b2011-10-04 20:13:32 +02001438 /*
1439 * Take a reference on the user object of the resource
1440 * backing the kms fb. This ensures that user-space handle
1441 * lookups on that resource will always work as long as
1442 * it's registered with a kms framebuffer. This is important,
1443 * since vmw_execbuf_process identifies resources in the
1444 * command stream using user-space handles.
1445 */
1446
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001447 user_obj = ttm_base_object_lookup(tfile, mode_cmd->handles[0]);
Thomas Hellstrom90ff18b2011-10-04 20:13:32 +02001448 if (unlikely(user_obj == NULL)) {
1449 DRM_ERROR("Could not locate requested kms frame buffer.\n");
1450 return ERR_PTR(-ENOENT);
1451 }
1452
Thomas Hellstromd3216a02010-10-05 12:42:59 +02001453 /**
1454 * End conditioned code.
1455 */
1456
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001457 /* returns either a bo or surface */
Jakob Bornecrantze7ac9212011-11-28 13:19:12 +01001458 ret = vmw_user_lookup_handle(dev_priv, tfile,
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001459 mode_cmd->handles[0],
Jakob Bornecrantze7ac9212011-11-28 13:19:12 +01001460 &surface, &bo);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001461 if (ret)
Jakob Bornecrantze7ac9212011-11-28 13:19:12 +01001462 goto err_out;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001463
Sinclair Yeh810b3e162017-03-23 15:39:16 -07001464
1465 if (!bo &&
1466 !vmw_kms_srf_ok(dev_priv, mode_cmd->width, mode_cmd->height)) {
1467 DRM_ERROR("Surface size cannot exceed %dx%d",
1468 dev_priv->texture_max_width,
1469 dev_priv->texture_max_height);
1470 goto err_out;
1471 }
1472
1473
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001474 vfb = vmw_kms_new_framebuffer(dev_priv, bo, surface,
1475 !(dev_priv->capabilities & SVGA_CAP_3D),
Daniel Vetterdabdcdc2016-12-02 08:07:40 +01001476 mode_cmd);
Thomas Hellstromfd006a42015-06-28 02:50:56 -07001477 if (IS_ERR(vfb)) {
1478 ret = PTR_ERR(vfb);
1479 goto err_out;
1480 }
Jakob Bornecrantz5ffdb652010-01-30 03:38:08 +00001481
Jakob Bornecrantze7ac9212011-11-28 13:19:12 +01001482err_out:
1483 /* vmw_user_lookup_handle takes one ref so does new_fb */
1484 if (bo)
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02001485 vmw_bo_unreference(&bo);
Jakob Bornecrantze7ac9212011-11-28 13:19:12 +01001486 if (surface)
1487 vmw_surface_unreference(&surface);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001488
1489 if (ret) {
1490 DRM_ERROR("failed to create vmw_framebuffer: %i\n", ret);
Thomas Hellstrom90ff18b2011-10-04 20:13:32 +02001491 ttm_base_object_unref(&user_obj);
Chris Wilsoncce13ff2010-08-08 13:36:38 +01001492 return ERR_PTR(ret);
Thomas Hellstrom90ff18b2011-10-04 20:13:32 +02001493 } else
1494 vfb->user_obj = user_obj;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001495
1496 return &vfb->base;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001497}
1498
Deepak Rawat0a80eb42018-06-19 19:51:15 +02001499/**
1500 * vmw_kms_check_display_memory - Validates display memory required for a
1501 * topology
1502 * @dev: DRM device
1503 * @num_rects: number of drm_rect in rects
1504 * @rects: array of drm_rect representing the topology to validate indexed by
1505 * crtc index.
1506 *
1507 * Returns:
1508 * 0 on success otherwise negative error code
1509 */
1510static int vmw_kms_check_display_memory(struct drm_device *dev,
1511 uint32_t num_rects,
1512 struct drm_rect *rects)
1513{
1514 struct vmw_private *dev_priv = vmw_priv(dev);
1515 struct drm_mode_config *mode_config = &dev->mode_config;
1516 struct drm_rect bounding_box = {0};
1517 u64 total_pixels = 0, pixel_mem, bb_mem;
1518 int i;
Sinclair Yehc46a3062017-03-23 14:24:53 -07001519
Deepak Rawat0a80eb42018-06-19 19:51:15 +02001520 for (i = 0; i < num_rects; i++) {
1521 /*
1522 * Currently this check is limiting the topology within max
1523 * texture/screentarget size. This should change in future when
1524 * user-space support multiple fb with topology.
1525 */
1526 if (rects[i].x1 < 0 || rects[i].y1 < 0 ||
1527 rects[i].x2 > mode_config->max_width ||
1528 rects[i].y2 > mode_config->max_height) {
1529 DRM_ERROR("Invalid GUI layout.\n");
1530 return -EINVAL;
1531 }
1532
1533 /* Bounding box upper left is at (0,0). */
1534 if (rects[i].x2 > bounding_box.x2)
1535 bounding_box.x2 = rects[i].x2;
1536
1537 if (rects[i].y2 > bounding_box.y2)
1538 bounding_box.y2 = rects[i].y2;
1539
1540 total_pixels += (u64) drm_rect_width(&rects[i]) *
1541 (u64) drm_rect_height(&rects[i]);
1542 }
1543
1544 /* Virtual svga device primary limits are always in 32-bpp. */
1545 pixel_mem = total_pixels * 4;
1546
1547 /*
1548 * For HV10 and below prim_bb_mem is vram size. When
1549 * SVGA_REG_MAX_PRIMARY_BOUNDING_BOX_MEM is not present vram size is
1550 * limit on primary bounding box
1551 */
1552 if (pixel_mem > dev_priv->prim_bb_mem) {
1553 DRM_ERROR("Combined output size too large.\n");
1554 return -EINVAL;
1555 }
1556
1557 /* SVGA_CAP_NO_BB_RESTRICTION is available for STDU only. */
1558 if (dev_priv->active_display_unit != vmw_du_screen_target ||
1559 !(dev_priv->capabilities & SVGA_CAP_NO_BB_RESTRICTION)) {
1560 bb_mem = (u64) bounding_box.x2 * bounding_box.y2 * 4;
1561
1562 if (bb_mem > dev_priv->prim_bb_mem) {
1563 DRM_ERROR("Topology is beyond supported limits.\n");
1564 return -EINVAL;
1565 }
1566 }
1567
1568 return 0;
1569}
1570
1571/**
1572 * vmw_kms_check_topology - Validates topology in drm_atomic_state
1573 * @dev: DRM device
1574 * @state: the driver state object
1575 *
1576 * Returns:
1577 * 0 on success otherwise negative error code
1578 */
1579static int vmw_kms_check_topology(struct drm_device *dev,
1580 struct drm_atomic_state *state)
1581{
Deepak Rawatb89e5ff2018-06-20 11:32:29 +02001582 struct vmw_private *dev_priv = vmw_priv(dev);
Deepak Rawat0a80eb42018-06-19 19:51:15 +02001583 struct drm_crtc_state *old_crtc_state, *new_crtc_state;
1584 struct drm_rect *rects;
1585 struct drm_crtc *crtc;
1586 uint32_t i;
1587 int ret = 0;
1588
1589 rects = kcalloc(dev->mode_config.num_crtc, sizeof(struct drm_rect),
1590 GFP_KERNEL);
1591 if (!rects)
1592 return -ENOMEM;
1593
Deepak Rawatb89e5ff2018-06-20 11:32:29 +02001594 mutex_lock(&dev_priv->requested_layout_mutex);
1595
Deepak Rawat0a80eb42018-06-19 19:51:15 +02001596 drm_for_each_crtc(crtc, dev) {
1597 struct vmw_display_unit *du = vmw_crtc_to_du(crtc);
1598 struct drm_crtc_state *crtc_state = crtc->state;
1599
1600 i = drm_crtc_index(crtc);
1601
1602 if (crtc_state && crtc_state->enable) {
Deepak Rawat0a80eb42018-06-19 19:51:15 +02001603 rects[i].x1 = du->gui_x;
1604 rects[i].y1 = du->gui_y;
1605 rects[i].x2 = du->gui_x + crtc_state->mode.hdisplay;
1606 rects[i].y2 = du->gui_y + crtc_state->mode.vdisplay;
1607 }
1608 }
1609
1610 /* Determine change to topology due to new atomic state */
1611 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state,
1612 new_crtc_state, i) {
1613 struct vmw_display_unit *du = vmw_crtc_to_du(crtc);
Deepak Rawat3e79ecd2018-06-20 11:34:26 +02001614 struct drm_connector *connector;
1615 struct drm_connector_state *conn_state;
1616 struct vmw_connector_state *vmw_conn_state;
Deepak Rawat0a80eb42018-06-19 19:51:15 +02001617
1618 if (!new_crtc_state->enable && old_crtc_state->enable) {
1619 rects[i].x1 = 0;
1620 rects[i].y1 = 0;
1621 rects[i].x2 = 0;
1622 rects[i].y2 = 0;
Deepak Rawat3e79ecd2018-06-20 11:34:26 +02001623 continue;
Deepak Rawat0a80eb42018-06-19 19:51:15 +02001624 }
1625
Deepak Rawat3e79ecd2018-06-20 11:34:26 +02001626 if (!du->pref_active) {
1627 ret = -EINVAL;
1628 goto clean;
Deepak Rawat0a80eb42018-06-19 19:51:15 +02001629 }
Deepak Rawat3e79ecd2018-06-20 11:34:26 +02001630
1631 /*
1632 * For vmwgfx each crtc has only one connector attached and it
1633 * is not changed so don't really need to check the
1634 * crtc->connector_mask and iterate over it.
1635 */
1636 connector = &du->connector;
1637 conn_state = drm_atomic_get_connector_state(state, connector);
1638 if (IS_ERR(conn_state)) {
1639 ret = PTR_ERR(conn_state);
1640 goto clean;
1641 }
1642
1643 vmw_conn_state = vmw_connector_state_to_vcs(conn_state);
1644 vmw_conn_state->gui_x = du->gui_x;
1645 vmw_conn_state->gui_y = du->gui_y;
1646
1647 rects[i].x1 = du->gui_x;
1648 rects[i].y1 = du->gui_y;
1649 rects[i].x2 = du->gui_x + new_crtc_state->mode.hdisplay;
1650 rects[i].y2 = du->gui_y + new_crtc_state->mode.vdisplay;
Deepak Rawat0a80eb42018-06-19 19:51:15 +02001651 }
1652
1653 ret = vmw_kms_check_display_memory(dev, dev->mode_config.num_crtc,
1654 rects);
1655
1656clean:
Deepak Rawatb89e5ff2018-06-20 11:32:29 +02001657 mutex_unlock(&dev_priv->requested_layout_mutex);
Deepak Rawat0a80eb42018-06-19 19:51:15 +02001658 kfree(rects);
1659 return ret;
1660}
Sinclair Yehc46a3062017-03-23 14:24:53 -07001661
1662/**
1663 * vmw_kms_atomic_check_modeset- validate state object for modeset changes
1664 *
1665 * @dev: DRM device
1666 * @state: the driver state object
1667 *
1668 * This is a simple wrapper around drm_atomic_helper_check_modeset() for
1669 * us to assign a value to mode->crtc_clock so that
1670 * drm_calc_timestamping_constants() won't throw an error message
1671 *
Deepak Rawat0a80eb42018-06-19 19:51:15 +02001672 * Returns:
Sinclair Yehc46a3062017-03-23 14:24:53 -07001673 * Zero for success or -errno
1674 */
Maarten Lankhorstbdc362f2017-07-12 10:13:33 +02001675static int
Sinclair Yehc46a3062017-03-23 14:24:53 -07001676vmw_kms_atomic_check_modeset(struct drm_device *dev,
1677 struct drm_atomic_state *state)
1678{
Sinclair Yehc46a3062017-03-23 14:24:53 -07001679 struct drm_crtc *crtc;
Deepak Rawat7e14eab2018-06-20 11:23:55 +02001680 struct drm_crtc_state *crtc_state;
1681 bool need_modeset = false;
1682 int i, ret;
Sinclair Yehc46a3062017-03-23 14:24:53 -07001683
Sinclair Yehb249cb42018-06-19 19:46:58 +02001684 ret = drm_atomic_helper_check(dev, state);
Deepak Rawat0a80eb42018-06-19 19:51:15 +02001685 if (ret)
Sinclair Yehb249cb42018-06-19 19:46:58 +02001686 return ret;
1687
Deepak Rawat7e14eab2018-06-20 11:23:55 +02001688 if (!state->allow_modeset)
1689 return ret;
1690
1691 /*
1692 * Legacy path do not set allow_modeset properly like
1693 * @drm_atomic_helper_update_plane, This will result in unnecessary call
1694 * to vmw_kms_check_topology. So extra set of check.
1695 */
Maarten Lankhorstbdc362f2017-07-12 10:13:33 +02001696 for_each_new_crtc_in_state(state, crtc, crtc_state, i) {
Deepak Rawat7e14eab2018-06-20 11:23:55 +02001697 if (drm_atomic_crtc_needs_modeset(crtc_state))
1698 need_modeset = true;
Sinclair Yehc46a3062017-03-23 14:24:53 -07001699 }
1700
Deepak Rawat7e14eab2018-06-20 11:23:55 +02001701 if (need_modeset)
1702 return vmw_kms_check_topology(dev, state);
1703
1704 return ret;
Sinclair Yehc46a3062017-03-23 14:24:53 -07001705}
1706
Laurent Pincharte6ecefa2012-05-17 13:27:23 +02001707static const struct drm_mode_config_funcs vmw_kms_funcs = {
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001708 .fb_create = vmw_kms_fb_create,
Sinclair Yehc46a3062017-03-23 14:24:53 -07001709 .atomic_check = vmw_kms_atomic_check_modeset,
Deepak Rawat904efd92018-01-16 08:48:09 +01001710 .atomic_commit = drm_atomic_helper_commit,
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001711};
1712
Thomas Hellstromb9eb1a62015-04-02 02:39:45 -07001713static int vmw_kms_generic_present(struct vmw_private *dev_priv,
1714 struct drm_file *file_priv,
1715 struct vmw_framebuffer *vfb,
1716 struct vmw_surface *surface,
1717 uint32_t sid,
1718 int32_t destX, int32_t destY,
1719 struct drm_vmw_rect *clips,
1720 uint32_t num_clips)
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +02001721{
Thomas Hellstrom10b1e0c2015-06-26 02:14:27 -07001722 return vmw_kms_sou_do_surface_dirty(dev_priv, vfb, NULL, clips,
1723 &surface->res, destX, destY,
Deepak Rawat91e9f352018-01-16 08:24:17 +01001724 num_clips, 1, NULL, NULL);
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +02001725}
1726
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001727
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001728int vmw_kms_present(struct vmw_private *dev_priv,
1729 struct drm_file *file_priv,
1730 struct vmw_framebuffer *vfb,
1731 struct vmw_surface *surface,
1732 uint32_t sid,
1733 int32_t destX, int32_t destY,
1734 struct drm_vmw_rect *clips,
1735 uint32_t num_clips)
1736{
Sinclair Yeh35c05122015-06-26 01:42:06 -07001737 int ret;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001738
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001739 switch (dev_priv->active_display_unit) {
1740 case vmw_du_screen_target:
1741 ret = vmw_kms_stdu_surface_dirty(dev_priv, vfb, NULL, clips,
1742 &surface->res, destX, destY,
Deepak Rawat91e9f352018-01-16 08:24:17 +01001743 num_clips, 1, NULL, NULL);
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001744 break;
1745 case vmw_du_screen_object:
1746 ret = vmw_kms_generic_present(dev_priv, file_priv, vfb, surface,
1747 sid, destX, destY, clips,
1748 num_clips);
1749 break;
1750 default:
1751 WARN_ONCE(true,
1752 "Present called with invalid display system.\n");
1753 ret = -ENOSYS;
1754 break;
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +02001755 }
Sinclair Yeh35c05122015-06-26 01:42:06 -07001756 if (ret)
1757 return ret;
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +02001758
Sinclair Yeh35c05122015-06-26 01:42:06 -07001759 vmw_fifo_flush(dev_priv, false);
Michel Dänzer0bef23f2011-08-31 07:42:50 +00001760
Sinclair Yeh35c05122015-06-26 01:42:06 -07001761 return 0;
Thomas Hellstrom7c4f7782010-06-01 11:38:17 +02001762}
1763
Thomas Hellstrom578e6092016-02-12 09:45:42 +01001764static void
1765vmw_kms_create_hotplug_mode_update_property(struct vmw_private *dev_priv)
1766{
1767 if (dev_priv->hotplug_mode_update_property)
1768 return;
1769
1770 dev_priv->hotplug_mode_update_property =
1771 drm_property_create_range(dev_priv->dev,
1772 DRM_MODE_PROP_IMMUTABLE,
1773 "hotplug_mode_update", 0, 1);
1774
1775 if (!dev_priv->hotplug_mode_update_property)
1776 return;
1777
1778}
1779
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +02001780int vmw_kms_init(struct vmw_private *dev_priv)
1781{
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001782 struct drm_device *dev = dev_priv->dev;
1783 int ret;
1784
1785 drm_mode_config_init(dev);
1786 dev->mode_config.funcs = &vmw_kms_funcs;
1787 dev->mode_config.min_width = 1;
1788 dev->mode_config.min_height = 1;
Sinclair Yeh65ade7d2015-07-16 10:49:13 -07001789 dev->mode_config.max_width = dev_priv->texture_max_width;
1790 dev->mode_config.max_height = dev_priv->texture_max_height;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001791
Thomas Hellstrom578e6092016-02-12 09:45:42 +01001792 drm_mode_create_suggested_offset_properties(dev);
1793 vmw_kms_create_hotplug_mode_update_property(dev_priv);
1794
Sinclair Yeh35c05122015-06-26 01:42:06 -07001795 ret = vmw_kms_stdu_init_display(dev_priv);
1796 if (ret) {
1797 ret = vmw_kms_sou_init_display(dev_priv);
1798 if (ret) /* Fallback */
1799 ret = vmw_kms_ldu_init_display(dev_priv);
1800 }
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001801
Sinclair Yehc8261a92015-06-26 01:23:42 -07001802 return ret;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001803}
1804
1805int vmw_kms_close(struct vmw_private *dev_priv)
1806{
Daniel Vetter5f58e972017-06-26 18:19:48 +02001807 int ret = 0;
Sinclair Yehc8261a92015-06-26 01:23:42 -07001808
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001809 /*
1810 * Docs says we should take the lock before calling this function
1811 * but since it destroys encoders and our destructor calls
1812 * drm_encoder_cleanup which takes the lock we deadlock.
1813 */
1814 drm_mode_config_cleanup(dev_priv->dev);
Daniel Vetter5f58e972017-06-26 18:19:48 +02001815 if (dev_priv->active_display_unit == vmw_du_legacy)
Sinclair Yehc8261a92015-06-26 01:23:42 -07001816 ret = vmw_kms_ldu_close_display(dev_priv);
1817
1818 return ret;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001819}
1820
1821int vmw_kms_cursor_bypass_ioctl(struct drm_device *dev, void *data,
1822 struct drm_file *file_priv)
1823{
1824 struct drm_vmw_cursor_bypass_arg *arg = data;
1825 struct vmw_display_unit *du;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001826 struct drm_crtc *crtc;
1827 int ret = 0;
1828
1829
1830 mutex_lock(&dev->mode_config.mutex);
1831 if (arg->flags & DRM_VMW_CURSOR_BYPASS_ALL) {
1832
1833 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
1834 du = vmw_crtc_to_du(crtc);
1835 du->hotspot_x = arg->xhot;
1836 du->hotspot_y = arg->yhot;
1837 }
1838
1839 mutex_unlock(&dev->mode_config.mutex);
1840 return 0;
1841 }
1842
Keith Packard418da172017-03-14 23:25:07 -07001843 crtc = drm_crtc_find(dev, file_priv, arg->crtc_id);
Rob Clarka4cd5d62014-07-17 23:30:02 -04001844 if (!crtc) {
Ville Syrjälä4ae87ff2013-10-17 13:35:05 +03001845 ret = -ENOENT;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001846 goto out;
1847 }
1848
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001849 du = vmw_crtc_to_du(crtc);
1850
1851 du->hotspot_x = arg->xhot;
1852 du->hotspot_y = arg->yhot;
1853
1854out:
1855 mutex_unlock(&dev->mode_config.mutex);
1856
1857 return ret;
1858}
1859
1860int vmw_kms_write_svga(struct vmw_private *vmw_priv,
1861 unsigned width, unsigned height, unsigned pitch,
1862 unsigned bpp, unsigned depth)
1863{
1864 if (vmw_priv->capabilities & SVGA_CAP_PITCHLOCK)
1865 vmw_write(vmw_priv, SVGA_REG_PITCHLOCK, pitch);
1866 else if (vmw_fifo_have_pitchlock(vmw_priv))
Thomas Hellstromb76ff5e2015-10-28 10:44:04 +01001867 vmw_mmio_write(pitch, vmw_priv->mmio_virt +
1868 SVGA_FIFO_PITCHLOCK);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001869 vmw_write(vmw_priv, SVGA_REG_WIDTH, width);
1870 vmw_write(vmw_priv, SVGA_REG_HEIGHT, height);
1871 vmw_write(vmw_priv, SVGA_REG_BITS_PER_PIXEL, bpp);
1872
1873 if (vmw_read(vmw_priv, SVGA_REG_DEPTH) != depth) {
1874 DRM_ERROR("Invalid depth %u for %u bpp, host expects %u\n",
1875 depth, bpp, vmw_read(vmw_priv, SVGA_REG_DEPTH));
1876 return -EINVAL;
1877 }
1878
1879 return 0;
1880}
1881
1882int vmw_kms_save_vga(struct vmw_private *vmw_priv)
1883{
1884 struct vmw_vga_topology_state *save;
1885 uint32_t i;
1886
1887 vmw_priv->vga_width = vmw_read(vmw_priv, SVGA_REG_WIDTH);
1888 vmw_priv->vga_height = vmw_read(vmw_priv, SVGA_REG_HEIGHT);
1889 vmw_priv->vga_bpp = vmw_read(vmw_priv, SVGA_REG_BITS_PER_PIXEL);
1890 if (vmw_priv->capabilities & SVGA_CAP_PITCHLOCK)
1891 vmw_priv->vga_pitchlock =
1892 vmw_read(vmw_priv, SVGA_REG_PITCHLOCK);
1893 else if (vmw_fifo_have_pitchlock(vmw_priv))
Thomas Hellstromb76ff5e2015-10-28 10:44:04 +01001894 vmw_priv->vga_pitchlock = vmw_mmio_read(vmw_priv->mmio_virt +
1895 SVGA_FIFO_PITCHLOCK);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001896
1897 if (!(vmw_priv->capabilities & SVGA_CAP_DISPLAY_TOPOLOGY))
1898 return 0;
1899
1900 vmw_priv->num_displays = vmw_read(vmw_priv,
1901 SVGA_REG_NUM_GUEST_DISPLAYS);
1902
1903 if (vmw_priv->num_displays == 0)
1904 vmw_priv->num_displays = 1;
1905
1906 for (i = 0; i < vmw_priv->num_displays; ++i) {
1907 save = &vmw_priv->vga_save[i];
1908 vmw_write(vmw_priv, SVGA_REG_DISPLAY_ID, i);
1909 save->primary = vmw_read(vmw_priv, SVGA_REG_DISPLAY_IS_PRIMARY);
1910 save->pos_x = vmw_read(vmw_priv, SVGA_REG_DISPLAY_POSITION_X);
1911 save->pos_y = vmw_read(vmw_priv, SVGA_REG_DISPLAY_POSITION_Y);
1912 save->width = vmw_read(vmw_priv, SVGA_REG_DISPLAY_WIDTH);
1913 save->height = vmw_read(vmw_priv, SVGA_REG_DISPLAY_HEIGHT);
1914 vmw_write(vmw_priv, SVGA_REG_DISPLAY_ID, SVGA_ID_INVALID);
1915 if (i == 0 && vmw_priv->num_displays == 1 &&
1916 save->width == 0 && save->height == 0) {
1917
1918 /*
1919 * It should be fairly safe to assume that these
1920 * values are uninitialized.
1921 */
1922
1923 save->width = vmw_priv->vga_width - save->pos_x;
1924 save->height = vmw_priv->vga_height - save->pos_y;
1925 }
1926 }
1927
1928 return 0;
1929}
1930
1931int vmw_kms_restore_vga(struct vmw_private *vmw_priv)
1932{
1933 struct vmw_vga_topology_state *save;
1934 uint32_t i;
1935
1936 vmw_write(vmw_priv, SVGA_REG_WIDTH, vmw_priv->vga_width);
1937 vmw_write(vmw_priv, SVGA_REG_HEIGHT, vmw_priv->vga_height);
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +02001938 vmw_write(vmw_priv, SVGA_REG_BITS_PER_PIXEL, vmw_priv->vga_bpp);
1939 if (vmw_priv->capabilities & SVGA_CAP_PITCHLOCK)
1940 vmw_write(vmw_priv, SVGA_REG_PITCHLOCK,
1941 vmw_priv->vga_pitchlock);
1942 else if (vmw_fifo_have_pitchlock(vmw_priv))
Thomas Hellstromb76ff5e2015-10-28 10:44:04 +01001943 vmw_mmio_write(vmw_priv->vga_pitchlock,
1944 vmw_priv->mmio_virt + SVGA_FIFO_PITCHLOCK);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001945
Thomas Hellstrom7c4f7782010-06-01 11:38:17 +02001946 if (!(vmw_priv->capabilities & SVGA_CAP_DISPLAY_TOPOLOGY))
1947 return 0;
1948
1949 for (i = 0; i < vmw_priv->num_displays; ++i) {
1950 save = &vmw_priv->vga_save[i];
1951 vmw_write(vmw_priv, SVGA_REG_DISPLAY_ID, i);
1952 vmw_write(vmw_priv, SVGA_REG_DISPLAY_IS_PRIMARY, save->primary);
1953 vmw_write(vmw_priv, SVGA_REG_DISPLAY_POSITION_X, save->pos_x);
1954 vmw_write(vmw_priv, SVGA_REG_DISPLAY_POSITION_Y, save->pos_y);
1955 vmw_write(vmw_priv, SVGA_REG_DISPLAY_WIDTH, save->width);
1956 vmw_write(vmw_priv, SVGA_REG_DISPLAY_HEIGHT, save->height);
1957 vmw_write(vmw_priv, SVGA_REG_DISPLAY_ID, SVGA_ID_INVALID);
1958 }
1959
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001960 return 0;
1961}
Jakob Bornecrantzd8bd19d2010-06-01 11:54:20 +02001962
Thomas Hellstrome133e732010-10-05 12:43:04 +02001963bool vmw_kms_validate_mode_vram(struct vmw_private *dev_priv,
1964 uint32_t pitch,
1965 uint32_t height)
1966{
Sinclair Yeh35c05122015-06-26 01:42:06 -07001967 return ((u64) pitch * (u64) height) < (u64)
1968 ((dev_priv->active_display_unit == vmw_du_screen_target) ?
1969 dev_priv->prim_bb_mem : dev_priv->vram_size);
Thomas Hellstrome133e732010-10-05 12:43:04 +02001970}
1971
Jakob Bornecrantz1c482ab2011-10-17 11:59:45 +02001972
1973/**
1974 * Function called by DRM code called with vbl_lock held.
1975 */
Thierry Reding88e72712015-09-24 18:35:31 +02001976u32 vmw_get_vblank_counter(struct drm_device *dev, unsigned int pipe)
Thomas Hellstrom7a1c2f62010-10-01 10:21:49 +02001977{
1978 return 0;
1979}
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001980
Jakob Bornecrantz1c482ab2011-10-17 11:59:45 +02001981/**
1982 * Function called by DRM code called with vbl_lock held.
1983 */
Thierry Reding88e72712015-09-24 18:35:31 +02001984int vmw_enable_vblank(struct drm_device *dev, unsigned int pipe)
Jakob Bornecrantz1c482ab2011-10-17 11:59:45 +02001985{
Woody Suwalski2b0bc682018-01-17 09:07:47 +01001986 return -EINVAL;
Jakob Bornecrantz1c482ab2011-10-17 11:59:45 +02001987}
1988
1989/**
1990 * Function called by DRM code called with vbl_lock held.
1991 */
Thierry Reding88e72712015-09-24 18:35:31 +02001992void vmw_disable_vblank(struct drm_device *dev, unsigned int pipe)
Jakob Bornecrantz1c482ab2011-10-17 11:59:45 +02001993{
1994}
1995
Deepak Rawat5e241332018-06-20 11:17:16 +02001996/**
1997 * vmw_du_update_layout - Update the display unit with topology from resolution
1998 * plugin and generate DRM uevent
1999 * @dev_priv: device private
2000 * @num_rects: number of drm_rect in rects
2001 * @rects: toplogy to update
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002002 */
Deepak Rawat5e241332018-06-20 11:17:16 +02002003static int vmw_du_update_layout(struct vmw_private *dev_priv,
2004 unsigned int num_rects, struct drm_rect *rects)
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002005{
2006 struct drm_device *dev = dev_priv->dev;
2007 struct vmw_display_unit *du;
2008 struct drm_connector *con;
Deepak Rawatb89e5ff2018-06-20 11:32:29 +02002009 struct drm_connector_list_iter conn_iter;
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002010
Deepak Rawatb89e5ff2018-06-20 11:32:29 +02002011 /*
2012 * Currently only gui_x/y is protected with requested_layout_mutex.
2013 */
2014 mutex_lock(&dev_priv->requested_layout_mutex);
2015 drm_connector_list_iter_begin(dev, &conn_iter);
2016 drm_for_each_connector_iter(con, &conn_iter) {
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002017 du = vmw_connector_to_du(con);
Deepak Rawat5e241332018-06-20 11:17:16 +02002018 if (num_rects > du->unit) {
2019 du->pref_width = drm_rect_width(&rects[du->unit]);
2020 du->pref_height = drm_rect_height(&rects[du->unit]);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002021 du->pref_active = true;
Deepak Rawat5e241332018-06-20 11:17:16 +02002022 du->gui_x = rects[du->unit].x1;
2023 du->gui_y = rects[du->unit].y1;
Deepak Rawatb89e5ff2018-06-20 11:32:29 +02002024 } else {
2025 du->pref_width = 800;
2026 du->pref_height = 600;
2027 du->pref_active = false;
2028 du->gui_x = 0;
2029 du->gui_y = 0;
2030 }
2031 }
2032 drm_connector_list_iter_end(&conn_iter);
2033 mutex_unlock(&dev_priv->requested_layout_mutex);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002034
2035 mutex_lock(&dev->mode_config.mutex);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002036 list_for_each_entry(con, &dev->mode_config.connector_list, head) {
2037 du = vmw_connector_to_du(con);
Deepak Rawatb89e5ff2018-06-20 11:32:29 +02002038 if (num_rects > du->unit) {
Thomas Hellstrom578e6092016-02-12 09:45:42 +01002039 drm_object_property_set_value
2040 (&con->base, dev->mode_config.suggested_x_property,
2041 du->gui_x);
2042 drm_object_property_set_value
2043 (&con->base, dev->mode_config.suggested_y_property,
2044 du->gui_y);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002045 } else {
Thomas Hellstrom578e6092016-02-12 09:45:42 +01002046 drm_object_property_set_value
2047 (&con->base, dev->mode_config.suggested_x_property,
2048 0);
2049 drm_object_property_set_value
2050 (&con->base, dev->mode_config.suggested_y_property,
2051 0);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002052 }
2053 con->status = vmw_du_connector_detect(con, true);
2054 }
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002055 mutex_unlock(&dev->mode_config.mutex);
Deepak Rawatb89e5ff2018-06-20 11:32:29 +02002056
Thomas Hellstrom578e6092016-02-12 09:45:42 +01002057 drm_sysfs_hotplug_event(dev);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002058
2059 return 0;
2060}
2061
Maarten Lankhorst7ea77282016-06-07 12:49:30 +02002062int vmw_du_crtc_gamma_set(struct drm_crtc *crtc,
2063 u16 *r, u16 *g, u16 *b,
Daniel Vetter6d124ff2017-04-03 10:33:01 +02002064 uint32_t size,
2065 struct drm_modeset_acquire_ctx *ctx)
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002066{
2067 struct vmw_private *dev_priv = vmw_priv(crtc->dev);
2068 int i;
2069
2070 for (i = 0; i < size; i++) {
2071 DRM_DEBUG("%d r/g/b = 0x%04x / 0x%04x / 0x%04x\n", i,
2072 r[i], g[i], b[i]);
2073 vmw_write(dev_priv, SVGA_PALETTE_BASE + i * 3 + 0, r[i] >> 8);
2074 vmw_write(dev_priv, SVGA_PALETTE_BASE + i * 3 + 1, g[i] >> 8);
2075 vmw_write(dev_priv, SVGA_PALETTE_BASE + i * 3 + 2, b[i] >> 8);
2076 }
Maarten Lankhorst7ea77282016-06-07 12:49:30 +02002077
2078 return 0;
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002079}
2080
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002081int vmw_du_connector_dpms(struct drm_connector *connector, int mode)
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002082{
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002083 return 0;
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002084}
2085
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002086enum drm_connector_status
2087vmw_du_connector_detect(struct drm_connector *connector, bool force)
2088{
2089 uint32_t num_displays;
2090 struct drm_device *dev = connector->dev;
2091 struct vmw_private *dev_priv = vmw_priv(dev);
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002092 struct vmw_display_unit *du = vmw_connector_to_du(connector);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002093
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002094 num_displays = vmw_read(dev_priv, SVGA_REG_NUM_DISPLAYS);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002095
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002096 return ((vmw_connector_to_du(connector)->unit < num_displays &&
2097 du->pref_active) ?
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002098 connector_status_connected : connector_status_disconnected);
2099}
2100
2101static struct drm_display_mode vmw_kms_connector_builtin[] = {
2102 /* 640x480@60Hz */
2103 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25175, 640, 656,
2104 752, 800, 0, 480, 489, 492, 525, 0,
2105 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
2106 /* 800x600@60Hz */
2107 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 40000, 800, 840,
2108 968, 1056, 0, 600, 601, 605, 628, 0,
2109 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
2110 /* 1024x768@60Hz */
2111 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 65000, 1024, 1048,
2112 1184, 1344, 0, 768, 771, 777, 806, 0,
2113 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
2114 /* 1152x864@75Hz */
2115 { DRM_MODE("1152x864", DRM_MODE_TYPE_DRIVER, 108000, 1152, 1216,
2116 1344, 1600, 0, 864, 865, 868, 900, 0,
2117 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
2118 /* 1280x768@60Hz */
2119 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 79500, 1280, 1344,
2120 1472, 1664, 0, 768, 771, 778, 798, 0,
2121 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
2122 /* 1280x800@60Hz */
2123 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 83500, 1280, 1352,
2124 1480, 1680, 0, 800, 803, 809, 831, 0,
2125 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
2126 /* 1280x960@60Hz */
2127 { DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1376,
2128 1488, 1800, 0, 960, 961, 964, 1000, 0,
2129 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
2130 /* 1280x1024@60Hz */
2131 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1328,
2132 1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
2133 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
2134 /* 1360x768@60Hz */
2135 { DRM_MODE("1360x768", DRM_MODE_TYPE_DRIVER, 85500, 1360, 1424,
2136 1536, 1792, 0, 768, 771, 777, 795, 0,
2137 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
2138 /* 1440x1050@60Hz */
2139 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 121750, 1400, 1488,
2140 1632, 1864, 0, 1050, 1053, 1057, 1089, 0,
2141 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
2142 /* 1440x900@60Hz */
2143 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 106500, 1440, 1520,
2144 1672, 1904, 0, 900, 903, 909, 934, 0,
2145 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
2146 /* 1600x1200@60Hz */
2147 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 162000, 1600, 1664,
2148 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
2149 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
2150 /* 1680x1050@60Hz */
2151 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 146250, 1680, 1784,
2152 1960, 2240, 0, 1050, 1053, 1059, 1089, 0,
2153 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
2154 /* 1792x1344@60Hz */
2155 { DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER, 204750, 1792, 1920,
2156 2120, 2448, 0, 1344, 1345, 1348, 1394, 0,
2157 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
2158 /* 1853x1392@60Hz */
2159 { DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER, 218250, 1856, 1952,
2160 2176, 2528, 0, 1392, 1393, 1396, 1439, 0,
2161 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
2162 /* 1920x1200@60Hz */
2163 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 193250, 1920, 2056,
2164 2256, 2592, 0, 1200, 1203, 1209, 1245, 0,
2165 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
2166 /* 1920x1440@60Hz */
2167 { DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER, 234000, 1920, 2048,
2168 2256, 2600, 0, 1440, 1441, 1444, 1500, 0,
2169 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
2170 /* 2560x1600@60Hz */
2171 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 348500, 2560, 2752,
2172 3032, 3504, 0, 1600, 1603, 1609, 1658, 0,
2173 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
2174 /* Terminate */
2175 { DRM_MODE("", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) },
2176};
2177
Thomas Hellstrom1543b4d2011-11-02 09:43:10 +01002178/**
2179 * vmw_guess_mode_timing - Provide fake timings for a
2180 * 60Hz vrefresh mode.
2181 *
2182 * @mode - Pointer to a struct drm_display_mode with hdisplay and vdisplay
2183 * members filled in.
2184 */
Thomas Hellstroma2787242015-06-29 12:55:07 -07002185void vmw_guess_mode_timing(struct drm_display_mode *mode)
Thomas Hellstrom1543b4d2011-11-02 09:43:10 +01002186{
2187 mode->hsync_start = mode->hdisplay + 50;
2188 mode->hsync_end = mode->hsync_start + 50;
2189 mode->htotal = mode->hsync_end + 50;
2190
2191 mode->vsync_start = mode->vdisplay + 50;
2192 mode->vsync_end = mode->vsync_start + 50;
2193 mode->vtotal = mode->vsync_end + 50;
2194
2195 mode->clock = (u32)mode->htotal * (u32)mode->vtotal / 100 * 6;
2196 mode->vrefresh = drm_mode_vrefresh(mode);
2197}
2198
2199
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002200int vmw_du_connector_fill_modes(struct drm_connector *connector,
2201 uint32_t max_width, uint32_t max_height)
2202{
2203 struct vmw_display_unit *du = vmw_connector_to_du(connector);
2204 struct drm_device *dev = connector->dev;
2205 struct vmw_private *dev_priv = vmw_priv(dev);
2206 struct drm_display_mode *mode = NULL;
2207 struct drm_display_mode *bmode;
2208 struct drm_display_mode prefmode = { DRM_MODE("preferred",
2209 DRM_MODE_TYPE_DRIVER | DRM_MODE_TYPE_PREFERRED,
2210 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2211 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC)
2212 };
2213 int i;
Sinclair Yeh7c20d212016-06-29 11:29:47 -07002214 u32 assumed_bpp = 4;
Sinclair Yeh9a723842014-10-31 09:58:06 +01002215
Sinclair Yeh04319d82016-06-29 12:15:48 -07002216 if (dev_priv->assume_16bpp)
2217 assumed_bpp = 2;
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002218
Sinclair Yeh35c05122015-06-26 01:42:06 -07002219 if (dev_priv->active_display_unit == vmw_du_screen_target) {
2220 max_width = min(max_width, dev_priv->stdu_max_width);
Sinclair Yeh28c95422017-03-27 11:12:27 -07002221 max_width = min(max_width, dev_priv->texture_max_width);
2222
Sinclair Yeh35c05122015-06-26 01:42:06 -07002223 max_height = min(max_height, dev_priv->stdu_max_height);
Sinclair Yeh28c95422017-03-27 11:12:27 -07002224 max_height = min(max_height, dev_priv->texture_max_height);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002225 }
2226
2227 /* Add preferred mode */
Sinclair Yehc8261a92015-06-26 01:23:42 -07002228 mode = drm_mode_duplicate(dev, &prefmode);
2229 if (!mode)
2230 return 0;
2231 mode->hdisplay = du->pref_width;
2232 mode->vdisplay = du->pref_height;
2233 vmw_guess_mode_timing(mode);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002234
Sinclair Yehc8261a92015-06-26 01:23:42 -07002235 if (vmw_kms_validate_mode_vram(dev_priv,
2236 mode->hdisplay * assumed_bpp,
2237 mode->vdisplay)) {
2238 drm_mode_probed_add(connector, mode);
2239 } else {
2240 drm_mode_destroy(dev, mode);
2241 mode = NULL;
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002242 }
2243
Sinclair Yehc8261a92015-06-26 01:23:42 -07002244 if (du->pref_mode) {
2245 list_del_init(&du->pref_mode->head);
2246 drm_mode_destroy(dev, du->pref_mode);
2247 }
2248
2249 /* mode might be null here, this is intended */
2250 du->pref_mode = mode;
2251
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002252 for (i = 0; vmw_kms_connector_builtin[i].type != 0; i++) {
2253 bmode = &vmw_kms_connector_builtin[i];
2254 if (bmode->hdisplay > max_width ||
2255 bmode->vdisplay > max_height)
2256 continue;
2257
Sinclair Yeh9a723842014-10-31 09:58:06 +01002258 if (!vmw_kms_validate_mode_vram(dev_priv,
2259 bmode->hdisplay * assumed_bpp,
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002260 bmode->vdisplay))
2261 continue;
2262
2263 mode = drm_mode_duplicate(dev, bmode);
2264 if (!mode)
2265 return 0;
2266 mode->vrefresh = drm_mode_vrefresh(mode);
2267
2268 drm_mode_probed_add(connector, mode);
2269 }
2270
Daniel Vetter97e14fb2018-07-09 10:40:08 +02002271 drm_connector_list_update(connector);
Thomas Hellstromf6b05002015-06-29 12:59:58 -07002272 /* Move the prefered mode first, help apps pick the right mode. */
2273 drm_mode_sort(&connector->modes);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002274
2275 return 1;
2276}
2277
2278int vmw_du_connector_set_property(struct drm_connector *connector,
2279 struct drm_property *property,
2280 uint64_t val)
2281{
Thomas Hellstrom76404ac2016-02-12 09:55:45 +01002282 struct vmw_display_unit *du = vmw_connector_to_du(connector);
2283 struct vmw_private *dev_priv = vmw_priv(connector->dev);
2284
2285 if (property == dev_priv->implicit_placement_property)
2286 du->is_implicit = val;
2287
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02002288 return 0;
2289}
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002290
2291
Sinclair Yeh9c2542a2017-03-23 11:33:39 -07002292
Sinclair Yehd7721ca2017-03-23 11:48:44 -07002293/**
2294 * vmw_du_connector_atomic_set_property - Atomic version of get property
2295 *
2296 * @crtc - crtc the property is associated with
2297 *
2298 * Returns:
2299 * Zero on success, negative errno on failure.
2300 */
2301int
2302vmw_du_connector_atomic_set_property(struct drm_connector *connector,
2303 struct drm_connector_state *state,
2304 struct drm_property *property,
2305 uint64_t val)
2306{
2307 struct vmw_private *dev_priv = vmw_priv(connector->dev);
2308 struct vmw_connector_state *vcs = vmw_connector_state_to_vcs(state);
2309 struct vmw_display_unit *du = vmw_connector_to_du(connector);
2310
2311
2312 if (property == dev_priv->implicit_placement_property) {
2313 vcs->is_implicit = val;
2314
2315 /*
2316 * We should really be doing a drm_atomic_commit() to
2317 * commit the new state, but since this doesn't cause
2318 * an immedate state change, this is probably ok
2319 */
2320 du->is_implicit = vcs->is_implicit;
2321 } else {
2322 return -EINVAL;
2323 }
2324
2325 return 0;
2326}
2327
2328
2329/**
2330 * vmw_du_connector_atomic_get_property - Atomic version of get property
2331 *
2332 * @connector - connector the property is associated with
2333 *
2334 * Returns:
2335 * Zero on success, negative errno on failure.
2336 */
2337int
2338vmw_du_connector_atomic_get_property(struct drm_connector *connector,
2339 const struct drm_connector_state *state,
2340 struct drm_property *property,
2341 uint64_t *val)
2342{
2343 struct vmw_private *dev_priv = vmw_priv(connector->dev);
2344 struct vmw_connector_state *vcs = vmw_connector_state_to_vcs(state);
2345
2346 if (property == dev_priv->implicit_placement_property)
2347 *val = vcs->is_implicit;
2348 else {
2349 DRM_ERROR("Invalid Property %s\n", property->name);
2350 return -EINVAL;
2351 }
2352
2353 return 0;
2354}
2355
Deepak Rawat5e241332018-06-20 11:17:16 +02002356/**
2357 * vmw_kms_update_layout_ioctl - Handler for DRM_VMW_UPDATE_LAYOUT ioctl
2358 * @dev: drm device for the ioctl
2359 * @data: data pointer for the ioctl
2360 * @file_priv: drm file for the ioctl call
2361 *
2362 * Update preferred topology of display unit as per ioctl request. The topology
2363 * is expressed as array of drm_vmw_rect.
2364 * e.g.
2365 * [0 0 640 480] [640 0 800 600] [0 480 640 480]
2366 *
2367 * NOTE:
2368 * The x and y offset (upper left) in drm_vmw_rect cannot be less than 0. Beside
2369 * device limit on topology, x + w and y + h (lower right) cannot be greater
2370 * than INT_MAX. So topology beyond these limits will return with error.
2371 *
2372 * Returns:
2373 * Zero on success, negative errno on failure.
2374 */
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002375int vmw_kms_update_layout_ioctl(struct drm_device *dev, void *data,
2376 struct drm_file *file_priv)
2377{
2378 struct vmw_private *dev_priv = vmw_priv(dev);
2379 struct drm_vmw_update_layout_arg *arg =
2380 (struct drm_vmw_update_layout_arg *)data;
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002381 void __user *user_rects;
2382 struct drm_vmw_rect *rects;
Deepak Rawat5e241332018-06-20 11:17:16 +02002383 struct drm_rect *drm_rects;
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002384 unsigned rects_size;
Deepak Rawat5e241332018-06-20 11:17:16 +02002385 int ret, i;
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002386
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002387 if (!arg->num_outputs) {
Deepak Rawat5e241332018-06-20 11:17:16 +02002388 struct drm_rect def_rect = {0, 0, 800, 600};
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002389 vmw_du_update_layout(dev_priv, 1, &def_rect);
Thomas Hellstrom5151adb2015-03-09 01:56:21 -07002390 return 0;
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002391 }
2392
2393 rects_size = arg->num_outputs * sizeof(struct drm_vmw_rect);
Xi Wangbab9efc2011-11-28 12:25:43 +01002394 rects = kcalloc(arg->num_outputs, sizeof(struct drm_vmw_rect),
2395 GFP_KERNEL);
Thomas Hellstrom5151adb2015-03-09 01:56:21 -07002396 if (unlikely(!rects))
2397 return -ENOMEM;
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002398
2399 user_rects = (void __user *)(unsigned long)arg->rects;
2400 ret = copy_from_user(rects, user_rects, rects_size);
2401 if (unlikely(ret != 0)) {
2402 DRM_ERROR("Failed to get rects.\n");
2403 ret = -EFAULT;
2404 goto out_free;
2405 }
2406
Deepak Rawat5e241332018-06-20 11:17:16 +02002407 drm_rects = (struct drm_rect *)rects;
2408
2409 for (i = 0; i < arg->num_outputs; i++) {
2410 struct drm_vmw_rect curr_rect;
2411
2412 /* Verify user-space for overflow as kernel use drm_rect */
2413 if ((rects[i].x + rects[i].w > INT_MAX) ||
2414 (rects[i].y + rects[i].h > INT_MAX)) {
2415 ret = -ERANGE;
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002416 goto out_free;
2417 }
Sinclair Yehc8261a92015-06-26 01:23:42 -07002418
Deepak Rawat5e241332018-06-20 11:17:16 +02002419 curr_rect = rects[i];
2420 drm_rects[i].x1 = curr_rect.x;
2421 drm_rects[i].y1 = curr_rect.y;
2422 drm_rects[i].x2 = curr_rect.x + curr_rect.w;
2423 drm_rects[i].y2 = curr_rect.y + curr_rect.h;
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002424 }
2425
Deepak Rawat5e241332018-06-20 11:17:16 +02002426 ret = vmw_kms_check_display_memory(dev, arg->num_outputs, drm_rects);
Sinclair Yeh65ade7d2015-07-16 10:49:13 -07002427
Deepak Rawat5e241332018-06-20 11:17:16 +02002428 if (ret == 0)
2429 vmw_du_update_layout(dev_priv, arg->num_outputs, drm_rects);
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002430
2431out_free:
2432 kfree(rects);
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02002433 return ret;
2434}
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002435
2436/**
2437 * vmw_kms_helper_dirty - Helper to build commands and perform actions based
2438 * on a set of cliprects and a set of display units.
2439 *
2440 * @dev_priv: Pointer to a device private structure.
2441 * @framebuffer: Pointer to the framebuffer on which to perform the actions.
2442 * @clips: A set of struct drm_clip_rect. Either this os @vclips must be NULL.
2443 * Cliprects are given in framebuffer coordinates.
2444 * @vclips: A set of struct drm_vmw_rect cliprects. Either this or @clips must
2445 * be NULL. Cliprects are given in source coordinates.
2446 * @dest_x: X coordinate offset for the crtc / destination clip rects.
2447 * @dest_y: Y coordinate offset for the crtc / destination clip rects.
2448 * @num_clips: Number of cliprects in the @clips or @vclips array.
2449 * @increment: Integer with which to increment the clip counter when looping.
2450 * Used to skip a predetermined number of clip rects.
2451 * @dirty: Closure structure. See the description of struct vmw_kms_dirty.
2452 */
2453int vmw_kms_helper_dirty(struct vmw_private *dev_priv,
2454 struct vmw_framebuffer *framebuffer,
2455 const struct drm_clip_rect *clips,
2456 const struct drm_vmw_rect *vclips,
2457 s32 dest_x, s32 dest_y,
2458 int num_clips,
2459 int increment,
2460 struct vmw_kms_dirty *dirty)
2461{
2462 struct vmw_display_unit *units[VMWGFX_NUM_DISPLAY_UNITS];
2463 struct drm_crtc *crtc;
2464 u32 num_units = 0;
2465 u32 i, k;
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002466
2467 dirty->dev_priv = dev_priv;
2468
Deepak Rawat91e9f352018-01-16 08:24:17 +01002469 /* If crtc is passed, no need to iterate over other display units */
2470 if (dirty->crtc) {
2471 units[num_units++] = vmw_crtc_to_du(dirty->crtc);
2472 } else {
2473 list_for_each_entry(crtc, &dev_priv->dev->mode_config.crtc_list,
2474 head) {
Ville Syrjälä464ce092018-05-25 21:50:34 +03002475 struct drm_plane *plane = crtc->primary;
2476
2477 if (plane->state->fb == &framebuffer->base)
2478 units[num_units++] = vmw_crtc_to_du(crtc);
Deepak Rawat91e9f352018-01-16 08:24:17 +01002479 }
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002480 }
2481
2482 for (k = 0; k < num_units; k++) {
2483 struct vmw_display_unit *unit = units[k];
2484 s32 crtc_x = unit->crtc.x;
2485 s32 crtc_y = unit->crtc.y;
2486 s32 crtc_width = unit->crtc.mode.hdisplay;
2487 s32 crtc_height = unit->crtc.mode.vdisplay;
2488 const struct drm_clip_rect *clips_ptr = clips;
2489 const struct drm_vmw_rect *vclips_ptr = vclips;
2490
2491 dirty->unit = unit;
2492 if (dirty->fifo_reserve_size > 0) {
2493 dirty->cmd = vmw_fifo_reserve(dev_priv,
2494 dirty->fifo_reserve_size);
2495 if (!dirty->cmd) {
2496 DRM_ERROR("Couldn't reserve fifo space "
2497 "for dirty blits.\n");
Christian Engelmayerf3b8c0c2015-09-19 00:32:24 +02002498 return -ENOMEM;
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002499 }
2500 memset(dirty->cmd, 0, dirty->fifo_reserve_size);
2501 }
2502 dirty->num_hits = 0;
2503 for (i = 0; i < num_clips; i++, clips_ptr += increment,
2504 vclips_ptr += increment) {
2505 s32 clip_left;
2506 s32 clip_top;
2507
2508 /*
2509 * Select clip array type. Note that integer type
2510 * in @clips is unsigned short, whereas in @vclips
2511 * it's 32-bit.
2512 */
2513 if (clips) {
2514 dirty->fb_x = (s32) clips_ptr->x1;
2515 dirty->fb_y = (s32) clips_ptr->y1;
2516 dirty->unit_x2 = (s32) clips_ptr->x2 + dest_x -
2517 crtc_x;
2518 dirty->unit_y2 = (s32) clips_ptr->y2 + dest_y -
2519 crtc_y;
2520 } else {
2521 dirty->fb_x = vclips_ptr->x;
2522 dirty->fb_y = vclips_ptr->y;
2523 dirty->unit_x2 = dirty->fb_x + vclips_ptr->w +
2524 dest_x - crtc_x;
2525 dirty->unit_y2 = dirty->fb_y + vclips_ptr->h +
2526 dest_y - crtc_y;
2527 }
2528
2529 dirty->unit_x1 = dirty->fb_x + dest_x - crtc_x;
2530 dirty->unit_y1 = dirty->fb_y + dest_y - crtc_y;
2531
2532 /* Skip this clip if it's outside the crtc region */
2533 if (dirty->unit_x1 >= crtc_width ||
2534 dirty->unit_y1 >= crtc_height ||
2535 dirty->unit_x2 <= 0 || dirty->unit_y2 <= 0)
2536 continue;
2537
2538 /* Clip right and bottom to crtc limits */
2539 dirty->unit_x2 = min_t(s32, dirty->unit_x2,
2540 crtc_width);
2541 dirty->unit_y2 = min_t(s32, dirty->unit_y2,
2542 crtc_height);
2543
2544 /* Clip left and top to crtc limits */
2545 clip_left = min_t(s32, dirty->unit_x1, 0);
2546 clip_top = min_t(s32, dirty->unit_y1, 0);
2547 dirty->unit_x1 -= clip_left;
2548 dirty->unit_y1 -= clip_top;
2549 dirty->fb_x -= clip_left;
2550 dirty->fb_y -= clip_top;
2551
2552 dirty->clip(dirty);
2553 }
2554
2555 dirty->fifo_commit(dirty);
2556 }
2557
2558 return 0;
2559}
2560
2561/**
2562 * vmw_kms_helper_buffer_prepare - Reserve and validate a buffer object before
2563 * command submission.
2564 *
2565 * @dev_priv. Pointer to a device private structure.
2566 * @buf: The buffer object
2567 * @interruptible: Whether to perform waits as interruptible.
2568 * @validate_as_mob: Whether the buffer should be validated as a MOB. If false,
2569 * The buffer will be validated as a GMR. Already pinned buffers will not be
2570 * validated.
2571 *
2572 * Returns 0 on success, negative error code on failure, -ERESTARTSYS if
2573 * interrupted by a signal.
2574 */
2575int vmw_kms_helper_buffer_prepare(struct vmw_private *dev_priv,
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02002576 struct vmw_buffer_object *buf,
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002577 bool interruptible,
Thomas Hellstromef86cfe2018-01-16 11:07:30 +01002578 bool validate_as_mob,
2579 bool for_cpu_blit)
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002580{
Thomas Hellstromef86cfe2018-01-16 11:07:30 +01002581 struct ttm_operation_ctx ctx = {
2582 .interruptible = interruptible,
2583 .no_wait_gpu = false};
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002584 struct ttm_buffer_object *bo = &buf->base;
2585 int ret;
2586
Christian Königdfd5e502016-04-06 11:12:03 +02002587 ttm_bo_reserve(bo, false, false, NULL);
Thomas Hellstromef86cfe2018-01-16 11:07:30 +01002588 if (for_cpu_blit)
2589 ret = ttm_bo_validate(bo, &vmw_nonfixed_placement, &ctx);
2590 else
2591 ret = vmw_validate_single_buffer(dev_priv, bo, interruptible,
2592 validate_as_mob);
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002593 if (ret)
2594 ttm_bo_unreserve(bo);
2595
2596 return ret;
2597}
2598
2599/**
2600 * vmw_kms_helper_buffer_revert - Undo the actions of
2601 * vmw_kms_helper_buffer_prepare.
2602 *
2603 * @res: Pointer to the buffer object.
2604 *
2605 * Helper to be used if an error forces the caller to undo the actions of
2606 * vmw_kms_helper_buffer_prepare.
2607 */
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02002608void vmw_kms_helper_buffer_revert(struct vmw_buffer_object *buf)
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002609{
2610 if (buf)
2611 ttm_bo_unreserve(&buf->base);
2612}
2613
2614/**
2615 * vmw_kms_helper_buffer_finish - Unreserve and fence a buffer object after
2616 * kms command submission.
2617 *
2618 * @dev_priv: Pointer to a device private structure.
2619 * @file_priv: Pointer to a struct drm_file representing the caller's
2620 * connection. Must be set to NULL if @user_fence_rep is NULL, and conversely
2621 * if non-NULL, @user_fence_rep must be non-NULL.
2622 * @buf: The buffer object.
2623 * @out_fence: Optional pointer to a fence pointer. If non-NULL, a
2624 * ref-counted fence pointer is returned here.
2625 * @user_fence_rep: Optional pointer to a user-space provided struct
2626 * drm_vmw_fence_rep. If provided, @file_priv must also be provided and the
2627 * function copies fence data to user-space in a fail-safe manner.
2628 */
2629void vmw_kms_helper_buffer_finish(struct vmw_private *dev_priv,
2630 struct drm_file *file_priv,
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02002631 struct vmw_buffer_object *buf,
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002632 struct vmw_fence_obj **out_fence,
2633 struct drm_vmw_fence_rep __user *
2634 user_fence_rep)
2635{
2636 struct vmw_fence_obj *fence;
2637 uint32_t handle;
2638 int ret;
2639
2640 ret = vmw_execbuf_fence_commands(file_priv, dev_priv, &fence,
2641 file_priv ? &handle : NULL);
2642 if (buf)
Thomas Hellstrome9431ea2018-06-19 15:33:53 +02002643 vmw_bo_fence_single(&buf->base, fence);
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002644 if (file_priv)
2645 vmw_execbuf_copy_fence_user(dev_priv, vmw_fpriv(file_priv),
2646 ret, user_fence_rep, fence,
Sinclair Yehc906965d2017-07-05 01:49:32 -07002647 handle, -1, NULL);
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002648 if (out_fence)
2649 *out_fence = fence;
2650 else
2651 vmw_fence_obj_unreference(&fence);
2652
2653 vmw_kms_helper_buffer_revert(buf);
2654}
2655
2656
2657/**
2658 * vmw_kms_helper_resource_revert - Undo the actions of
2659 * vmw_kms_helper_resource_prepare.
2660 *
2661 * @res: Pointer to the resource. Typically a surface.
2662 *
2663 * Helper to be used if an error forces the caller to undo the actions of
2664 * vmw_kms_helper_resource_prepare.
2665 */
Thomas Hellstrom73a88252018-03-21 10:18:38 +01002666void vmw_kms_helper_resource_revert(struct vmw_validation_ctx *ctx)
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002667{
Thomas Hellstrom73a88252018-03-21 10:18:38 +01002668 struct vmw_resource *res = ctx->res;
2669
2670 vmw_kms_helper_buffer_revert(ctx->buf);
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02002671 vmw_bo_unreference(&ctx->buf);
Thomas Hellstromd80efd52015-08-10 10:39:35 -07002672 vmw_resource_unreserve(res, false, NULL, 0);
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002673 mutex_unlock(&res->dev_priv->cmdbuf_mutex);
2674}
2675
2676/**
2677 * vmw_kms_helper_resource_prepare - Reserve and validate a resource before
2678 * command submission.
2679 *
2680 * @res: Pointer to the resource. Typically a surface.
2681 * @interruptible: Whether to perform waits as interruptible.
2682 *
2683 * Reserves and validates also the backup buffer if a guest-backed resource.
2684 * Returns 0 on success, negative error code on failure. -ERESTARTSYS if
2685 * interrupted by a signal.
2686 */
2687int vmw_kms_helper_resource_prepare(struct vmw_resource *res,
Thomas Hellstrom73a88252018-03-21 10:18:38 +01002688 bool interruptible,
2689 struct vmw_validation_ctx *ctx)
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002690{
2691 int ret = 0;
2692
Thomas Hellstrom73a88252018-03-21 10:18:38 +01002693 ctx->buf = NULL;
2694 ctx->res = res;
2695
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002696 if (interruptible)
2697 ret = mutex_lock_interruptible(&res->dev_priv->cmdbuf_mutex);
2698 else
2699 mutex_lock(&res->dev_priv->cmdbuf_mutex);
2700
2701 if (unlikely(ret != 0))
2702 return -ERESTARTSYS;
2703
2704 ret = vmw_resource_reserve(res, interruptible, false);
2705 if (ret)
2706 goto out_unlock;
2707
2708 if (res->backup) {
2709 ret = vmw_kms_helper_buffer_prepare(res->dev_priv, res->backup,
2710 interruptible,
Thomas Hellstromef86cfe2018-01-16 11:07:30 +01002711 res->dev_priv->has_mob,
2712 false);
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002713 if (ret)
2714 goto out_unreserve;
Thomas Hellstrom73a88252018-03-21 10:18:38 +01002715
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02002716 ctx->buf = vmw_bo_reference(res->backup);
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002717 }
2718 ret = vmw_resource_validate(res);
2719 if (ret)
2720 goto out_revert;
2721 return 0;
2722
2723out_revert:
Thomas Hellstrom73a88252018-03-21 10:18:38 +01002724 vmw_kms_helper_buffer_revert(ctx->buf);
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002725out_unreserve:
Thomas Hellstromd80efd52015-08-10 10:39:35 -07002726 vmw_resource_unreserve(res, false, NULL, 0);
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002727out_unlock:
2728 mutex_unlock(&res->dev_priv->cmdbuf_mutex);
2729 return ret;
2730}
2731
2732/**
2733 * vmw_kms_helper_resource_finish - Unreserve and fence a resource after
2734 * kms command submission.
2735 *
2736 * @res: Pointer to the resource. Typically a surface.
2737 * @out_fence: Optional pointer to a fence pointer. If non-NULL, a
2738 * ref-counted fence pointer is returned here.
2739 */
Thomas Hellstrom73a88252018-03-21 10:18:38 +01002740void vmw_kms_helper_resource_finish(struct vmw_validation_ctx *ctx,
2741 struct vmw_fence_obj **out_fence)
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002742{
Thomas Hellstrom73a88252018-03-21 10:18:38 +01002743 struct vmw_resource *res = ctx->res;
2744
2745 if (ctx->buf || out_fence)
2746 vmw_kms_helper_buffer_finish(res->dev_priv, NULL, ctx->buf,
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002747 out_fence, NULL);
2748
Thomas Hellstromf1d34bf2018-06-19 15:02:16 +02002749 vmw_bo_unreference(&ctx->buf);
Thomas Hellstromd80efd52015-08-10 10:39:35 -07002750 vmw_resource_unreserve(res, false, NULL, 0);
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07002751 mutex_unlock(&res->dev_priv->cmdbuf_mutex);
2752}
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07002753
2754/**
2755 * vmw_kms_update_proxy - Helper function to update a proxy surface from
2756 * its backing MOB.
2757 *
2758 * @res: Pointer to the surface resource
2759 * @clips: Clip rects in framebuffer (surface) space.
2760 * @num_clips: Number of clips in @clips.
2761 * @increment: Integer with which to increment the clip counter when looping.
2762 * Used to skip a predetermined number of clip rects.
2763 *
2764 * This function makes sure the proxy surface is updated from its backing MOB
2765 * using the region given by @clips. The surface resource @res and its backing
2766 * MOB needs to be reserved and validated on call.
2767 */
2768int vmw_kms_update_proxy(struct vmw_resource *res,
2769 const struct drm_clip_rect *clips,
2770 unsigned num_clips,
2771 int increment)
2772{
2773 struct vmw_private *dev_priv = res->dev_priv;
2774 struct drm_vmw_size *size = &vmw_res_to_srf(res)->base_size;
2775 struct {
2776 SVGA3dCmdHeader header;
2777 SVGA3dCmdUpdateGBImage body;
2778 } *cmd;
2779 SVGA3dBox *box;
2780 size_t copy_size = 0;
2781 int i;
2782
2783 if (!clips)
2784 return 0;
2785
2786 cmd = vmw_fifo_reserve(dev_priv, sizeof(*cmd) * num_clips);
2787 if (!cmd) {
2788 DRM_ERROR("Couldn't reserve fifo space for proxy surface "
2789 "update.\n");
2790 return -ENOMEM;
2791 }
2792
2793 for (i = 0; i < num_clips; ++i, clips += increment, ++cmd) {
2794 box = &cmd->body.box;
2795
2796 cmd->header.id = SVGA_3D_CMD_UPDATE_GB_IMAGE;
2797 cmd->header.size = sizeof(cmd->body);
2798 cmd->body.image.sid = res->id;
2799 cmd->body.image.face = 0;
2800 cmd->body.image.mipmap = 0;
2801
2802 if (clips->x1 > size->width || clips->x2 > size->width ||
2803 clips->y1 > size->height || clips->y2 > size->height) {
2804 DRM_ERROR("Invalid clips outsize of framebuffer.\n");
2805 return -EINVAL;
2806 }
2807
2808 box->x = clips->x1;
2809 box->y = clips->y1;
2810 box->z = 0;
2811 box->w = clips->x2 - clips->x1;
2812 box->h = clips->y2 - clips->y1;
2813 box->d = 1;
2814
2815 copy_size += sizeof(*cmd);
2816 }
2817
2818 vmw_fifo_commit(dev_priv, copy_size);
2819
2820 return 0;
2821}
Thomas Hellstroma2787242015-06-29 12:55:07 -07002822
2823int vmw_kms_fbdev_init_data(struct vmw_private *dev_priv,
2824 unsigned unit,
2825 u32 max_width,
2826 u32 max_height,
2827 struct drm_connector **p_con,
2828 struct drm_crtc **p_crtc,
2829 struct drm_display_mode **p_mode)
2830{
2831 struct drm_connector *con;
2832 struct vmw_display_unit *du;
2833 struct drm_display_mode *mode;
2834 int i = 0;
Thomas Hellstrom21fbd082018-04-26 09:48:55 +02002835 int ret = 0;
Thomas Hellstroma2787242015-06-29 12:55:07 -07002836
Thomas Hellstrom21fbd082018-04-26 09:48:55 +02002837 mutex_lock(&dev_priv->dev->mode_config.mutex);
Thomas Hellstroma2787242015-06-29 12:55:07 -07002838 list_for_each_entry(con, &dev_priv->dev->mode_config.connector_list,
2839 head) {
2840 if (i == unit)
2841 break;
2842
2843 ++i;
2844 }
2845
2846 if (i != unit) {
2847 DRM_ERROR("Could not find initial display unit.\n");
Thomas Hellstrom21fbd082018-04-26 09:48:55 +02002848 ret = -EINVAL;
2849 goto out_unlock;
Thomas Hellstroma2787242015-06-29 12:55:07 -07002850 }
2851
2852 if (list_empty(&con->modes))
2853 (void) vmw_du_connector_fill_modes(con, max_width, max_height);
2854
2855 if (list_empty(&con->modes)) {
2856 DRM_ERROR("Could not find initial display mode.\n");
Thomas Hellstrom21fbd082018-04-26 09:48:55 +02002857 ret = -EINVAL;
2858 goto out_unlock;
Thomas Hellstroma2787242015-06-29 12:55:07 -07002859 }
2860
2861 du = vmw_connector_to_du(con);
2862 *p_con = con;
2863 *p_crtc = &du->crtc;
2864
2865 list_for_each_entry(mode, &con->modes, head) {
2866 if (mode->type & DRM_MODE_TYPE_PREFERRED)
2867 break;
2868 }
2869
2870 if (mode->type & DRM_MODE_TYPE_PREFERRED)
2871 *p_mode = mode;
2872 else {
2873 WARN_ONCE(true, "Could not find initial preferred mode.\n");
2874 *p_mode = list_first_entry(&con->modes,
2875 struct drm_display_mode,
2876 head);
2877 }
2878
Thomas Hellstrom21fbd082018-04-26 09:48:55 +02002879 out_unlock:
2880 mutex_unlock(&dev_priv->dev->mode_config.mutex);
2881
2882 return ret;
Thomas Hellstroma2787242015-06-29 12:55:07 -07002883}
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002884
2885/**
2886 * vmw_kms_del_active - unregister a crtc binding to the implicit framebuffer
2887 *
2888 * @dev_priv: Pointer to a device private struct.
2889 * @du: The display unit of the crtc.
2890 */
2891void vmw_kms_del_active(struct vmw_private *dev_priv,
2892 struct vmw_display_unit *du)
2893{
Thomas Hellstrom93cd1682016-05-03 11:24:35 +02002894 mutex_lock(&dev_priv->global_kms_state_mutex);
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002895 if (du->active_implicit) {
2896 if (--(dev_priv->num_implicit) == 0)
2897 dev_priv->implicit_fb = NULL;
2898 du->active_implicit = false;
2899 }
Thomas Hellstrom93cd1682016-05-03 11:24:35 +02002900 mutex_unlock(&dev_priv->global_kms_state_mutex);
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002901}
2902
2903/**
2904 * vmw_kms_add_active - register a crtc binding to an implicit framebuffer
2905 *
2906 * @vmw_priv: Pointer to a device private struct.
2907 * @du: The display unit of the crtc.
2908 * @vfb: The implicit framebuffer
2909 *
2910 * Registers a binding to an implicit framebuffer.
2911 */
2912void vmw_kms_add_active(struct vmw_private *dev_priv,
2913 struct vmw_display_unit *du,
2914 struct vmw_framebuffer *vfb)
2915{
Thomas Hellstrom93cd1682016-05-03 11:24:35 +02002916 mutex_lock(&dev_priv->global_kms_state_mutex);
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002917 WARN_ON_ONCE(!dev_priv->num_implicit && dev_priv->implicit_fb);
2918
2919 if (!du->active_implicit && du->is_implicit) {
2920 dev_priv->implicit_fb = vfb;
2921 du->active_implicit = true;
2922 dev_priv->num_implicit++;
2923 }
Thomas Hellstrom93cd1682016-05-03 11:24:35 +02002924 mutex_unlock(&dev_priv->global_kms_state_mutex);
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002925}
2926
2927/**
2928 * vmw_kms_screen_object_flippable - Check whether we can page-flip a crtc.
2929 *
2930 * @dev_priv: Pointer to device-private struct.
2931 * @crtc: The crtc we want to flip.
2932 *
2933 * Returns true or false depending whether it's OK to flip this crtc
2934 * based on the criterion that we must not have more than one implicit
2935 * frame-buffer at any one time.
2936 */
2937bool vmw_kms_crtc_flippable(struct vmw_private *dev_priv,
2938 struct drm_crtc *crtc)
2939{
2940 struct vmw_display_unit *du = vmw_crtc_to_du(crtc);
Thomas Hellstrom93cd1682016-05-03 11:24:35 +02002941 bool ret;
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002942
Thomas Hellstrom93cd1682016-05-03 11:24:35 +02002943 mutex_lock(&dev_priv->global_kms_state_mutex);
2944 ret = !du->is_implicit || dev_priv->num_implicit == 1;
2945 mutex_unlock(&dev_priv->global_kms_state_mutex);
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002946
Thomas Hellstrom93cd1682016-05-03 11:24:35 +02002947 return ret;
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002948}
2949
2950/**
2951 * vmw_kms_update_implicit_fb - Update the implicit fb.
2952 *
2953 * @dev_priv: Pointer to device-private struct.
2954 * @crtc: The crtc the new implicit frame-buffer is bound to.
2955 */
2956void vmw_kms_update_implicit_fb(struct vmw_private *dev_priv,
2957 struct drm_crtc *crtc)
2958{
2959 struct vmw_display_unit *du = vmw_crtc_to_du(crtc);
Ville Syrjäläec8a31a2018-05-25 21:50:35 +03002960 struct drm_plane *plane = crtc->primary;
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002961 struct vmw_framebuffer *vfb;
2962
Thomas Hellstrom93cd1682016-05-03 11:24:35 +02002963 mutex_lock(&dev_priv->global_kms_state_mutex);
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002964
2965 if (!du->is_implicit)
Thomas Hellstrom93cd1682016-05-03 11:24:35 +02002966 goto out_unlock;
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002967
Ville Syrjäläec8a31a2018-05-25 21:50:35 +03002968 vfb = vmw_framebuffer_to_vfb(plane->state->fb);
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002969 WARN_ON_ONCE(dev_priv->num_implicit != 1 &&
2970 dev_priv->implicit_fb != vfb);
2971
2972 dev_priv->implicit_fb = vfb;
Thomas Hellstrom93cd1682016-05-03 11:24:35 +02002973out_unlock:
2974 mutex_unlock(&dev_priv->global_kms_state_mutex);
Thomas Hellstrom75c06852016-02-12 09:00:26 +01002975}
Thomas Hellstrom76404ac2016-02-12 09:55:45 +01002976
2977/**
2978 * vmw_kms_create_implicit_placement_proparty - Set up the implicit placement
2979 * property.
2980 *
2981 * @dev_priv: Pointer to a device private struct.
2982 * @immutable: Whether the property is immutable.
2983 *
2984 * Sets up the implicit placement property unless it's already set up.
2985 */
2986void
2987vmw_kms_create_implicit_placement_property(struct vmw_private *dev_priv,
2988 bool immutable)
2989{
2990 if (dev_priv->implicit_placement_property)
2991 return;
2992
2993 dev_priv->implicit_placement_property =
2994 drm_property_create_range(dev_priv->dev,
2995 immutable ?
2996 DRM_MODE_PROP_IMMUTABLE : 0,
2997 "implicit_placement", 0, 1);
2998
2999}
Sinclair Yeh904bb5e2017-03-23 14:29:22 -07003000
3001
3002/**
3003 * vmw_kms_set_config - Wrapper around drm_atomic_helper_set_config
3004 *
3005 * @set: The configuration to set.
3006 *
3007 * The vmwgfx Xorg driver doesn't assign the mode::type member, which
3008 * when drm_mode_set_crtcinfo is called as part of the configuration setting
3009 * causes it to return incorrect crtc dimensions causing severe problems in
3010 * the vmwgfx modesetting. So explicitly clear that member before calling
3011 * into drm_atomic_helper_set_config.
3012 */
Dave Airlie320d8c32017-04-03 16:30:24 +10003013int vmw_kms_set_config(struct drm_mode_set *set,
3014 struct drm_modeset_acquire_ctx *ctx)
Sinclair Yeh904bb5e2017-03-23 14:29:22 -07003015{
3016 if (set && set->mode)
3017 set->mode->type = 0;
3018
Dave Airlie320d8c32017-04-03 16:30:24 +10003019 return drm_atomic_helper_set_config(set, ctx);
Sinclair Yeh904bb5e2017-03-23 14:29:22 -07003020}
Thomas Hellstromc3b9b162018-03-22 10:26:37 +01003021
3022
3023/**
3024 * vmw_kms_suspend - Save modesetting state and turn modesetting off.
3025 *
3026 * @dev: Pointer to the drm device
3027 * Return: 0 on success. Negative error code on failure.
3028 */
3029int vmw_kms_suspend(struct drm_device *dev)
3030{
3031 struct vmw_private *dev_priv = vmw_priv(dev);
3032
3033 dev_priv->suspend_state = drm_atomic_helper_suspend(dev);
3034 if (IS_ERR(dev_priv->suspend_state)) {
3035 int ret = PTR_ERR(dev_priv->suspend_state);
3036
3037 DRM_ERROR("Failed kms suspend: %d\n", ret);
3038 dev_priv->suspend_state = NULL;
3039
3040 return ret;
3041 }
3042
3043 return 0;
3044}
3045
3046
3047/**
3048 * vmw_kms_resume - Re-enable modesetting and restore state
3049 *
3050 * @dev: Pointer to the drm device
3051 * Return: 0 on success. Negative error code on failure.
3052 *
3053 * State is resumed from a previous vmw_kms_suspend(). It's illegal
3054 * to call this function without a previous vmw_kms_suspend().
3055 */
3056int vmw_kms_resume(struct drm_device *dev)
3057{
3058 struct vmw_private *dev_priv = vmw_priv(dev);
3059 int ret;
3060
3061 if (WARN_ON(!dev_priv->suspend_state))
3062 return 0;
3063
3064 ret = drm_atomic_helper_resume(dev, dev_priv->suspend_state);
3065 dev_priv->suspend_state = NULL;
3066
3067 return ret;
3068}
Dave Airlie2b4f44ee2018-03-28 14:30:41 +10003069
3070/**
Thomas Hellstrom140bcaa2018-03-08 10:07:37 +01003071 * vmw_kms_lost_device - Notify kms that modesetting capabilities will be lost
3072 *
3073 * @dev: Pointer to the drm device
3074 */
3075void vmw_kms_lost_device(struct drm_device *dev)
3076{
3077 drm_atomic_helper_shutdown(dev);
3078}