blob: 61fb7f3de3119ae3f94ad6dd9fef57f0c9c780c4 [file] [log] [blame]
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001/**************************************************************************
2 *
Sinclair Yeh54fbde82015-07-29 12:38:02 -07003 * Copyright © 2009-2015 VMware, Inc., Palo Alto, CA., USA
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00004 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
21 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
22 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
23 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
24 * USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28#include "vmwgfx_kms.h"
29
Jakob Bornecrantz56d1c782011-10-04 20:13:22 +020030
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000031/* Might need a hrtimer here? */
32#define VMWGFX_PRESENT_RATE ((HZ / 60 > 0) ? HZ / 60 : 1)
33
Sinclair Yehc8261a92015-06-26 01:23:42 -070034void vmw_du_cleanup(struct vmw_display_unit *du)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000035{
36 if (du->cursor_surface)
37 vmw_surface_unreference(&du->cursor_surface);
38 if (du->cursor_dmabuf)
39 vmw_dmabuf_unreference(&du->cursor_dmabuf);
Thomas Wood34ea3d32014-05-29 16:57:41 +010040 drm_connector_unregister(&du->connector);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000041 drm_crtc_cleanup(&du->crtc);
42 drm_encoder_cleanup(&du->encoder);
43 drm_connector_cleanup(&du->connector);
44}
45
46/*
47 * Display Unit Cursor functions
48 */
49
50int vmw_cursor_update_image(struct vmw_private *dev_priv,
51 u32 *image, u32 width, u32 height,
52 u32 hotspotX, u32 hotspotY)
53{
54 struct {
55 u32 cmd;
56 SVGAFifoCmdDefineAlphaCursor cursor;
57 } *cmd;
58 u32 image_size = width * height * 4;
59 u32 cmd_size = sizeof(*cmd) + image_size;
60
61 if (!image)
62 return -EINVAL;
63
64 cmd = vmw_fifo_reserve(dev_priv, cmd_size);
65 if (unlikely(cmd == NULL)) {
66 DRM_ERROR("Fifo reserve failed.\n");
67 return -ENOMEM;
68 }
69
70 memset(cmd, 0, sizeof(*cmd));
71
72 memcpy(&cmd[1], image, image_size);
73
Thomas Hellstromb9eb1a62015-04-02 02:39:45 -070074 cmd->cmd = SVGA_CMD_DEFINE_ALPHA_CURSOR;
75 cmd->cursor.id = 0;
76 cmd->cursor.width = width;
77 cmd->cursor.height = height;
78 cmd->cursor.hotspotX = hotspotX;
79 cmd->cursor.hotspotY = hotspotY;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000080
81 vmw_fifo_commit(dev_priv, cmd_size);
82
83 return 0;
84}
85
Jakob Bornecrantz6a91d972011-11-28 13:19:10 +010086int vmw_cursor_update_dmabuf(struct vmw_private *dev_priv,
87 struct vmw_dma_buffer *dmabuf,
88 u32 width, u32 height,
89 u32 hotspotX, u32 hotspotY)
90{
91 struct ttm_bo_kmap_obj map;
92 unsigned long kmap_offset;
93 unsigned long kmap_num;
94 void *virtual;
95 bool dummy;
96 int ret;
97
98 kmap_offset = 0;
99 kmap_num = (width*height*4 + PAGE_SIZE - 1) >> PAGE_SHIFT;
100
Thierry Redingee3939e2014-07-21 13:15:51 +0200101 ret = ttm_bo_reserve(&dmabuf->base, true, false, false, NULL);
Jakob Bornecrantz6a91d972011-11-28 13:19:10 +0100102 if (unlikely(ret != 0)) {
103 DRM_ERROR("reserve failed\n");
104 return -EINVAL;
105 }
106
107 ret = ttm_bo_kmap(&dmabuf->base, kmap_offset, kmap_num, &map);
108 if (unlikely(ret != 0))
109 goto err_unreserve;
110
111 virtual = ttm_kmap_obj_virtual(&map, &dummy);
112 ret = vmw_cursor_update_image(dev_priv, virtual, width, height,
113 hotspotX, hotspotY);
114
115 ttm_bo_kunmap(&map);
116err_unreserve:
117 ttm_bo_unreserve(&dmabuf->base);
118
119 return ret;
120}
121
122
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000123void vmw_cursor_update_position(struct vmw_private *dev_priv,
124 bool show, int x, int y)
125{
Thomas Hellstromb9eb1a62015-04-02 02:39:45 -0700126 u32 __iomem *fifo_mem = dev_priv->mmio_virt;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000127 uint32_t count;
128
129 iowrite32(show ? 1 : 0, fifo_mem + SVGA_FIFO_CURSOR_ON);
130 iowrite32(x, fifo_mem + SVGA_FIFO_CURSOR_X);
131 iowrite32(y, fifo_mem + SVGA_FIFO_CURSOR_Y);
132 count = ioread32(fifo_mem + SVGA_FIFO_CURSOR_COUNT);
133 iowrite32(++count, fifo_mem + SVGA_FIFO_CURSOR_COUNT);
134}
135
136int vmw_du_crtc_cursor_set(struct drm_crtc *crtc, struct drm_file *file_priv,
137 uint32_t handle, uint32_t width, uint32_t height)
138{
139 struct vmw_private *dev_priv = vmw_priv(crtc->dev);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000140 struct vmw_display_unit *du = vmw_crtc_to_du(crtc);
141 struct vmw_surface *surface = NULL;
142 struct vmw_dma_buffer *dmabuf = NULL;
143 int ret;
144
Daniel Vetterbfb89922012-12-02 13:48:21 +0100145 /*
146 * FIXME: Unclear whether there's any global state touched by the
147 * cursor_set function, especially vmw_cursor_update_position looks
148 * suspicious. For now take the easy route and reacquire all locks. We
149 * can do this since the caller in the drm core doesn't check anything
150 * which is protected by any looks.
151 */
Rob Clark21e88622014-10-30 13:39:04 -0400152 drm_modeset_unlock_crtc(crtc);
Daniel Vetterbfb89922012-12-02 13:48:21 +0100153 drm_modeset_lock_all(dev_priv->dev);
154
Jakob Bornecrantzbaa91d642011-11-09 10:25:28 +0100155 /* A lot of the code assumes this */
Daniel Vetterbfb89922012-12-02 13:48:21 +0100156 if (handle && (width != 64 || height != 64)) {
157 ret = -EINVAL;
158 goto out;
159 }
Jakob Bornecrantzbaa91d642011-11-09 10:25:28 +0100160
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000161 if (handle) {
Ville Syrjäläa5d0f572013-06-03 16:10:41 +0300162 struct ttm_object_file *tfile = vmw_fpriv(file_priv)->tfile;
163
Jakob Bornecrantze7ac9212011-11-28 13:19:12 +0100164 ret = vmw_user_lookup_handle(dev_priv, tfile,
165 handle, &surface, &dmabuf);
166 if (ret) {
167 DRM_ERROR("failed to find surface or dmabuf: %i\n", ret);
Daniel Vetterbfb89922012-12-02 13:48:21 +0100168 ret = -EINVAL;
169 goto out;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000170 }
171 }
172
Jakob Bornecrantze7ac9212011-11-28 13:19:12 +0100173 /* need to do this before taking down old image */
174 if (surface && !surface->snooper.image) {
175 DRM_ERROR("surface not suitable for cursor\n");
176 vmw_surface_unreference(&surface);
Daniel Vetterbfb89922012-12-02 13:48:21 +0100177 ret = -EINVAL;
178 goto out;
Jakob Bornecrantze7ac9212011-11-28 13:19:12 +0100179 }
180
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000181 /* takedown old cursor */
182 if (du->cursor_surface) {
183 du->cursor_surface->snooper.crtc = NULL;
184 vmw_surface_unreference(&du->cursor_surface);
185 }
186 if (du->cursor_dmabuf)
187 vmw_dmabuf_unreference(&du->cursor_dmabuf);
188
189 /* setup new image */
190 if (surface) {
191 /* vmw_user_surface_lookup takes one reference */
192 du->cursor_surface = surface;
193
194 du->cursor_surface->snooper.crtc = crtc;
195 du->cursor_age = du->cursor_surface->snooper.age;
196 vmw_cursor_update_image(dev_priv, surface->snooper.image,
197 64, 64, du->hotspot_x, du->hotspot_y);
198 } else if (dmabuf) {
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000199 /* vmw_user_surface_lookup takes one reference */
200 du->cursor_dmabuf = dmabuf;
201
Jakob Bornecrantz6a91d972011-11-28 13:19:10 +0100202 ret = vmw_cursor_update_dmabuf(dev_priv, dmabuf, width, height,
203 du->hotspot_x, du->hotspot_y);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000204 } else {
205 vmw_cursor_update_position(dev_priv, false, 0, 0);
Daniel Vetterbfb89922012-12-02 13:48:21 +0100206 ret = 0;
207 goto out;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000208 }
209
Thomas Hellstromda7653d2011-11-02 09:43:12 +0100210 vmw_cursor_update_position(dev_priv, true,
211 du->cursor_x + du->hotspot_x,
212 du->cursor_y + du->hotspot_y);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000213
Daniel Vetterbfb89922012-12-02 13:48:21 +0100214 ret = 0;
215out:
216 drm_modeset_unlock_all(dev_priv->dev);
Daniel Vetter4d02e2d2014-11-11 10:12:00 +0100217 drm_modeset_lock_crtc(crtc, crtc->cursor);
Daniel Vetterbfb89922012-12-02 13:48:21 +0100218
219 return ret;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000220}
221
222int vmw_du_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
223{
224 struct vmw_private *dev_priv = vmw_priv(crtc->dev);
225 struct vmw_display_unit *du = vmw_crtc_to_du(crtc);
226 bool shown = du->cursor_surface || du->cursor_dmabuf ? true : false;
227
228 du->cursor_x = x + crtc->x;
229 du->cursor_y = y + crtc->y;
230
Daniel Vetterdac35662012-12-02 15:24:10 +0100231 /*
232 * FIXME: Unclear whether there's any global state touched by the
233 * cursor_set function, especially vmw_cursor_update_position looks
234 * suspicious. For now take the easy route and reacquire all locks. We
235 * can do this since the caller in the drm core doesn't check anything
236 * which is protected by any looks.
237 */
Rob Clark21e88622014-10-30 13:39:04 -0400238 drm_modeset_unlock_crtc(crtc);
Daniel Vetterdac35662012-12-02 15:24:10 +0100239 drm_modeset_lock_all(dev_priv->dev);
240
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000241 vmw_cursor_update_position(dev_priv, shown,
Thomas Hellstromda7653d2011-11-02 09:43:12 +0100242 du->cursor_x + du->hotspot_x,
243 du->cursor_y + du->hotspot_y);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000244
Daniel Vetterdac35662012-12-02 15:24:10 +0100245 drm_modeset_unlock_all(dev_priv->dev);
Daniel Vetter4d02e2d2014-11-11 10:12:00 +0100246 drm_modeset_lock_crtc(crtc, crtc->cursor);
Daniel Vetterdac35662012-12-02 15:24:10 +0100247
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000248 return 0;
249}
250
251void vmw_kms_cursor_snoop(struct vmw_surface *srf,
252 struct ttm_object_file *tfile,
253 struct ttm_buffer_object *bo,
254 SVGA3dCmdHeader *header)
255{
256 struct ttm_bo_kmap_obj map;
257 unsigned long kmap_offset;
258 unsigned long kmap_num;
259 SVGA3dCopyBox *box;
260 unsigned box_count;
261 void *virtual;
262 bool dummy;
263 struct vmw_dma_cmd {
264 SVGA3dCmdHeader header;
265 SVGA3dCmdSurfaceDMA dma;
266 } *cmd;
Jakob Bornecrantz2ac86372011-11-03 21:03:08 +0100267 int i, ret;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000268
269 cmd = container_of(header, struct vmw_dma_cmd, header);
270
271 /* No snooper installed */
272 if (!srf->snooper.image)
273 return;
274
275 if (cmd->dma.host.face != 0 || cmd->dma.host.mipmap != 0) {
276 DRM_ERROR("face and mipmap for cursors should never != 0\n");
277 return;
278 }
279
280 if (cmd->header.size < 64) {
281 DRM_ERROR("at least one full copy box must be given\n");
282 return;
283 }
284
285 box = (SVGA3dCopyBox *)&cmd[1];
286 box_count = (cmd->header.size - sizeof(SVGA3dCmdSurfaceDMA)) /
287 sizeof(SVGA3dCopyBox);
288
Jakob Bornecrantz2ac86372011-11-03 21:03:08 +0100289 if (cmd->dma.guest.ptr.offset % PAGE_SIZE ||
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000290 box->x != 0 || box->y != 0 || box->z != 0 ||
291 box->srcx != 0 || box->srcy != 0 || box->srcz != 0 ||
Jakob Bornecrantz2ac86372011-11-03 21:03:08 +0100292 box->d != 1 || box_count != 1) {
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000293 /* TODO handle none page aligned offsets */
Jakob Bornecrantz2ac86372011-11-03 21:03:08 +0100294 /* TODO handle more dst & src != 0 */
295 /* TODO handle more then one copy */
296 DRM_ERROR("Cant snoop dma request for cursor!\n");
297 DRM_ERROR("(%u, %u, %u) (%u, %u, %u) (%ux%ux%u) %u %u\n",
298 box->srcx, box->srcy, box->srcz,
299 box->x, box->y, box->z,
300 box->w, box->h, box->d, box_count,
301 cmd->dma.guest.ptr.offset);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000302 return;
303 }
304
305 kmap_offset = cmd->dma.guest.ptr.offset >> PAGE_SHIFT;
306 kmap_num = (64*64*4) >> PAGE_SHIFT;
307
Thierry Redingee3939e2014-07-21 13:15:51 +0200308 ret = ttm_bo_reserve(bo, true, false, false, NULL);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000309 if (unlikely(ret != 0)) {
310 DRM_ERROR("reserve failed\n");
311 return;
312 }
313
314 ret = ttm_bo_kmap(bo, kmap_offset, kmap_num, &map);
315 if (unlikely(ret != 0))
316 goto err_unreserve;
317
318 virtual = ttm_kmap_obj_virtual(&map, &dummy);
319
Jakob Bornecrantz2ac86372011-11-03 21:03:08 +0100320 if (box->w == 64 && cmd->dma.guest.pitch == 64*4) {
321 memcpy(srf->snooper.image, virtual, 64*64*4);
322 } else {
323 /* Image is unsigned pointer. */
324 for (i = 0; i < box->h; i++)
325 memcpy(srf->snooper.image + i * 64,
326 virtual + i * cmd->dma.guest.pitch,
327 box->w * 4);
328 }
329
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000330 srf->snooper.age++;
331
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000332 ttm_bo_kunmap(&map);
333err_unreserve:
334 ttm_bo_unreserve(bo);
335}
336
337void vmw_kms_cursor_post_execbuf(struct vmw_private *dev_priv)
338{
339 struct drm_device *dev = dev_priv->dev;
340 struct vmw_display_unit *du;
341 struct drm_crtc *crtc;
342
343 mutex_lock(&dev->mode_config.mutex);
344
345 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
346 du = vmw_crtc_to_du(crtc);
347 if (!du->cursor_surface ||
348 du->cursor_age == du->cursor_surface->snooper.age)
349 continue;
350
351 du->cursor_age = du->cursor_surface->snooper.age;
352 vmw_cursor_update_image(dev_priv,
353 du->cursor_surface->snooper.image,
354 64, 64, du->hotspot_x, du->hotspot_y);
355 }
356
357 mutex_unlock(&dev->mode_config.mutex);
358}
359
360/*
361 * Generic framebuffer code
362 */
363
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000364/*
365 * Surface framebuffer code
366 */
367
Rashika Kheria847c5962014-01-06 22:18:10 +0530368static void vmw_framebuffer_surface_destroy(struct drm_framebuffer *framebuffer)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000369{
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200370 struct vmw_framebuffer_surface *vfbs =
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000371 vmw_framebuffer_to_vfbs(framebuffer);
372
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000373 drm_framebuffer_cleanup(framebuffer);
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200374 vmw_surface_unreference(&vfbs->surface);
Thomas Hellstroma2787242015-06-29 12:55:07 -0700375 if (vfbs->base.user_obj)
376 ttm_base_object_unref(&vfbs->base.user_obj);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000377
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200378 kfree(vfbs);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000379}
380
Rashika Kheria847c5962014-01-06 22:18:10 +0530381static int vmw_framebuffer_surface_dirty(struct drm_framebuffer *framebuffer,
Thomas Hellstrom02b00162010-10-05 12:43:02 +0200382 struct drm_file *file_priv,
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000383 unsigned flags, unsigned color,
384 struct drm_clip_rect *clips,
385 unsigned num_clips)
386{
387 struct vmw_private *dev_priv = vmw_priv(framebuffer->dev);
388 struct vmw_framebuffer_surface *vfbs =
389 vmw_framebuffer_to_vfbs(framebuffer);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000390 struct drm_clip_rect norect;
Jakob Bornecrantz5deb65c2011-10-04 20:13:18 +0200391 int ret, inc = 1;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000392
Sinclair Yehc8261a92015-06-26 01:23:42 -0700393 /* Legacy Display Unit does not support 3D */
394 if (dev_priv->active_display_unit == vmw_du_legacy)
Jakob Bornecrantz01e81412011-10-04 20:13:24 +0200395 return -EINVAL;
396
Ville Syrjälä73e9efd2013-12-04 14:13:58 +0200397 drm_modeset_lock_all(dev_priv->dev);
398
Thomas Hellstrom294adf72014-02-27 12:34:51 +0100399 ret = ttm_read_lock(&dev_priv->reservation_sem, true);
Ville Syrjälä73e9efd2013-12-04 14:13:58 +0200400 if (unlikely(ret != 0)) {
401 drm_modeset_unlock_all(dev_priv->dev);
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200402 return ret;
Ville Syrjälä73e9efd2013-12-04 14:13:58 +0200403 }
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200404
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000405 if (!num_clips) {
406 num_clips = 1;
407 clips = &norect;
408 norect.x1 = norect.y1 = 0;
409 norect.x2 = framebuffer->width;
410 norect.y2 = framebuffer->height;
411 } else if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY) {
412 num_clips /= 2;
413 inc = 2; /* skip source rects */
414 }
415
Sinclair Yehc8261a92015-06-26 01:23:42 -0700416 if (dev_priv->active_display_unit == vmw_du_screen_object)
Thomas Hellstrom10b1e0c2015-06-26 02:14:27 -0700417 ret = vmw_kms_sou_do_surface_dirty(dev_priv, &vfbs->base,
418 clips, NULL, NULL, 0, 0,
419 num_clips, inc, NULL);
Sinclair Yeh35c05122015-06-26 01:42:06 -0700420 else
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -0700421 ret = vmw_kms_stdu_surface_dirty(dev_priv, &vfbs->base,
422 clips, NULL, NULL, 0, 0,
423 num_clips, inc, NULL);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000424
Thomas Hellstrom3eab3d92015-06-25 11:57:56 -0700425 vmw_fifo_flush(dev_priv, false);
Thomas Hellstrom294adf72014-02-27 12:34:51 +0100426 ttm_read_unlock(&dev_priv->reservation_sem);
Ville Syrjälä73e9efd2013-12-04 14:13:58 +0200427
428 drm_modeset_unlock_all(dev_priv->dev);
429
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000430 return 0;
431}
432
Thomas Hellstrom10b1e0c2015-06-26 02:14:27 -0700433/**
434 * vmw_kms_readback - Perform a readback from the screen system to
435 * a dma-buffer backed framebuffer.
436 *
437 * @dev_priv: Pointer to the device private structure.
438 * @file_priv: Pointer to a struct drm_file identifying the caller.
439 * Must be set to NULL if @user_fence_rep is NULL.
440 * @vfb: Pointer to the dma-buffer backed framebuffer.
441 * @user_fence_rep: User-space provided structure for fence information.
442 * Must be set to non-NULL if @file_priv is non-NULL.
443 * @vclips: Array of clip rects.
444 * @num_clips: Number of clip rects in @vclips.
445 *
446 * Returns 0 on success, negative error code on failure. -ERESTARTSYS if
447 * interrupted.
448 */
449int vmw_kms_readback(struct vmw_private *dev_priv,
450 struct drm_file *file_priv,
451 struct vmw_framebuffer *vfb,
452 struct drm_vmw_fence_rep __user *user_fence_rep,
453 struct drm_vmw_rect *vclips,
454 uint32_t num_clips)
455{
456 switch (dev_priv->active_display_unit) {
457 case vmw_du_screen_object:
458 return vmw_kms_sou_readback(dev_priv, file_priv, vfb,
459 user_fence_rep, vclips, num_clips);
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -0700460 case vmw_du_screen_target:
461 return vmw_kms_stdu_dma(dev_priv, file_priv, vfb,
462 user_fence_rep, NULL, vclips, num_clips,
463 1, false, true);
Thomas Hellstrom10b1e0c2015-06-26 02:14:27 -0700464 default:
465 WARN_ONCE(true,
466 "Readback called with invalid display system.\n");
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -0700467}
Thomas Hellstrom10b1e0c2015-06-26 02:14:27 -0700468
469 return -ENOSYS;
470}
471
472
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000473static struct drm_framebuffer_funcs vmw_framebuffer_surface_funcs = {
474 .destroy = vmw_framebuffer_surface_destroy,
475 .dirty = vmw_framebuffer_surface_dirty,
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000476};
477
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200478static int vmw_kms_new_framebuffer_surface(struct vmw_private *dev_priv,
479 struct vmw_surface *surface,
480 struct vmw_framebuffer **out,
481 const struct drm_mode_fb_cmd
Sinclair Yehf89c6c32015-06-26 01:54:28 -0700482 *mode_cmd,
483 bool is_dmabuf_proxy)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000484
485{
486 struct drm_device *dev = dev_priv->dev;
487 struct vmw_framebuffer_surface *vfbs;
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200488 enum SVGA3dSurfaceFormat format;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000489 int ret;
490
Sinclair Yehc8261a92015-06-26 01:23:42 -0700491 /* 3D is only supported on HWv8 and newer hosts */
492 if (dev_priv->active_display_unit == vmw_du_legacy)
Jakob Bornecrantz01e81412011-10-04 20:13:24 +0200493 return -ENOSYS;
494
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200495 /*
496 * Sanity checks.
497 */
498
Jakob Bornecrantze7ac9212011-11-28 13:19:12 +0100499 /* Surface must be marked as a scanout. */
500 if (unlikely(!surface->scanout))
501 return -EINVAL;
502
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200503 if (unlikely(surface->mip_levels[0] != 1 ||
504 surface->num_sizes != 1 ||
Thomas Hellstromb360a3c2014-01-15 08:51:36 +0100505 surface->base_size.width < mode_cmd->width ||
506 surface->base_size.height < mode_cmd->height ||
507 surface->base_size.depth != 1)) {
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200508 DRM_ERROR("Incompatible surface dimensions "
509 "for requested mode.\n");
510 return -EINVAL;
511 }
512
513 switch (mode_cmd->depth) {
514 case 32:
515 format = SVGA3D_A8R8G8B8;
516 break;
517 case 24:
518 format = SVGA3D_X8R8G8B8;
519 break;
520 case 16:
521 format = SVGA3D_R5G6B5;
522 break;
523 case 15:
524 format = SVGA3D_A1R5G5B5;
525 break;
526 default:
527 DRM_ERROR("Invalid color depth: %d\n", mode_cmd->depth);
528 return -EINVAL;
529 }
530
Thomas Hellstromd80efd52015-08-10 10:39:35 -0700531 /*
532 * For DX, surface format validation is done when surface->scanout
533 * is set.
534 */
535 if (!dev_priv->has_dx && format != surface->format) {
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200536 DRM_ERROR("Invalid surface format for requested mode.\n");
537 return -EINVAL;
538 }
539
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000540 vfbs = kzalloc(sizeof(*vfbs), GFP_KERNEL);
541 if (!vfbs) {
542 ret = -ENOMEM;
543 goto out_err1;
544 }
545
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000546 /* XXX get the first 3 from the surface info */
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200547 vfbs->base.base.bits_per_pixel = mode_cmd->bpp;
Ville Syrjälä01f2c772011-12-20 00:06:49 +0200548 vfbs->base.base.pitches[0] = mode_cmd->pitch;
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200549 vfbs->base.base.depth = mode_cmd->depth;
550 vfbs->base.base.width = mode_cmd->width;
551 vfbs->base.base.height = mode_cmd->height;
Sinclair Yeh05c95012015-08-11 22:53:39 -0700552 vfbs->surface = vmw_surface_reference(surface);
Thomas Hellstrom90ff18b2011-10-04 20:13:32 +0200553 vfbs->base.user_handle = mode_cmd->handle;
Sinclair Yehf89c6c32015-06-26 01:54:28 -0700554 vfbs->is_dmabuf_proxy = is_dmabuf_proxy;
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200555
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000556 *out = &vfbs->base;
557
Daniel Vetter80f0b5a2012-12-13 23:39:01 +0100558 ret = drm_framebuffer_init(dev, &vfbs->base.base,
559 &vmw_framebuffer_surface_funcs);
560 if (ret)
Sinclair Yeh05c95012015-08-11 22:53:39 -0700561 goto out_err2;
Daniel Vetter80f0b5a2012-12-13 23:39:01 +0100562
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000563 return 0;
564
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000565out_err2:
Sinclair Yeh05c95012015-08-11 22:53:39 -0700566 vmw_surface_unreference(&surface);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000567 kfree(vfbs);
568out_err1:
569 return ret;
570}
571
572/*
573 * Dmabuf framebuffer code
574 */
575
Rashika Kheria847c5962014-01-06 22:18:10 +0530576static void vmw_framebuffer_dmabuf_destroy(struct drm_framebuffer *framebuffer)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000577{
578 struct vmw_framebuffer_dmabuf *vfbd =
579 vmw_framebuffer_to_vfbd(framebuffer);
580
581 drm_framebuffer_cleanup(framebuffer);
582 vmw_dmabuf_unreference(&vfbd->buffer);
Thomas Hellstroma2787242015-06-29 12:55:07 -0700583 if (vfbd->base.user_obj)
584 ttm_base_object_unref(&vfbd->base.user_obj);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000585
586 kfree(vfbd);
587}
588
Rashika Kheria847c5962014-01-06 22:18:10 +0530589static int vmw_framebuffer_dmabuf_dirty(struct drm_framebuffer *framebuffer,
Thomas Hellstrom02b00162010-10-05 12:43:02 +0200590 struct drm_file *file_priv,
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000591 unsigned flags, unsigned color,
592 struct drm_clip_rect *clips,
593 unsigned num_clips)
594{
595 struct vmw_private *dev_priv = vmw_priv(framebuffer->dev);
Jakob Bornecrantz5deb65c2011-10-04 20:13:18 +0200596 struct vmw_framebuffer_dmabuf *vfbd =
597 vmw_framebuffer_to_vfbd(framebuffer);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000598 struct drm_clip_rect norect;
Jakob Bornecrantz5deb65c2011-10-04 20:13:18 +0200599 int ret, increment = 1;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000600
Ville Syrjälä73e9efd2013-12-04 14:13:58 +0200601 drm_modeset_lock_all(dev_priv->dev);
602
Thomas Hellstrom294adf72014-02-27 12:34:51 +0100603 ret = ttm_read_lock(&dev_priv->reservation_sem, true);
Ville Syrjälä73e9efd2013-12-04 14:13:58 +0200604 if (unlikely(ret != 0)) {
605 drm_modeset_unlock_all(dev_priv->dev);
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200606 return ret;
Ville Syrjälä73e9efd2013-12-04 14:13:58 +0200607 }
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200608
Thomas Hellstromdf1c93b2010-01-13 22:28:36 +0100609 if (!num_clips) {
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000610 num_clips = 1;
611 clips = &norect;
612 norect.x1 = norect.y1 = 0;
613 norect.x2 = framebuffer->width;
614 norect.y2 = framebuffer->height;
615 } else if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY) {
616 num_clips /= 2;
617 increment = 2;
618 }
619
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -0700620 switch (dev_priv->active_display_unit) {
621 case vmw_du_screen_target:
622 ret = vmw_kms_stdu_dma(dev_priv, NULL, &vfbd->base, NULL,
623 clips, NULL, num_clips, increment,
624 true, true);
625 break;
626 case vmw_du_screen_object:
Thomas Hellstrom10b1e0c2015-06-26 02:14:27 -0700627 ret = vmw_kms_sou_do_dmabuf_dirty(dev_priv, &vfbd->base,
Sinclair Yehc8261a92015-06-26 01:23:42 -0700628 clips, num_clips, increment,
Thomas Hellstrom10b1e0c2015-06-26 02:14:27 -0700629 true,
Sinclair Yehc8261a92015-06-26 01:23:42 -0700630 NULL);
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -0700631 break;
Thomas Hellstrom352b20d2015-06-29 12:57:37 -0700632 case vmw_du_legacy:
633 ret = vmw_kms_ldu_do_dmabuf_dirty(dev_priv, &vfbd->base, 0, 0,
634 clips, num_clips, increment);
635 break;
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -0700636 default:
Thomas Hellstrom352b20d2015-06-29 12:57:37 -0700637 ret = -EINVAL;
638 WARN_ONCE(true, "Dirty called with invalid display system.\n");
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -0700639 break;
Jakob Bornecrantz56d1c782011-10-04 20:13:22 +0200640 }
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000641
Thomas Hellstrom3eab3d92015-06-25 11:57:56 -0700642 vmw_fifo_flush(dev_priv, false);
Thomas Hellstrom294adf72014-02-27 12:34:51 +0100643 ttm_read_unlock(&dev_priv->reservation_sem);
Ville Syrjälä73e9efd2013-12-04 14:13:58 +0200644
645 drm_modeset_unlock_all(dev_priv->dev);
646
Jakob Bornecrantz5deb65c2011-10-04 20:13:18 +0200647 return ret;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000648}
649
650static struct drm_framebuffer_funcs vmw_framebuffer_dmabuf_funcs = {
651 .destroy = vmw_framebuffer_dmabuf_destroy,
652 .dirty = vmw_framebuffer_dmabuf_dirty,
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000653};
654
Jakob Bornecrantz497a3ff2011-10-04 20:13:14 +0200655/**
Jakob Bornecrantz497a3ff2011-10-04 20:13:14 +0200656 * Pin the dmabuffer to the start of vram.
657 */
Thomas Hellstromfd006a42015-06-28 02:50:56 -0700658static int vmw_framebuffer_pin(struct vmw_framebuffer *vfb)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000659{
660 struct vmw_private *dev_priv = vmw_priv(vfb->base.dev);
Thomas Hellstromfd006a42015-06-28 02:50:56 -0700661 struct vmw_dma_buffer *buf;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000662 int ret;
663
Thomas Hellstromfd006a42015-06-28 02:50:56 -0700664 buf = vfb->dmabuf ? vmw_framebuffer_to_vfbd(&vfb->base)->buffer :
665 vmw_framebuffer_to_vfbs(&vfb->base)->surface->res.backup;
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +0200666
Thomas Hellstromfd006a42015-06-28 02:50:56 -0700667 if (!buf)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000668 return 0;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000669
Thomas Hellstromfd006a42015-06-28 02:50:56 -0700670 switch (dev_priv->active_display_unit) {
671 case vmw_du_legacy:
672 vmw_overlay_pause_all(dev_priv);
673 ret = vmw_dmabuf_pin_in_start_of_vram(dev_priv, buf, false);
674 vmw_overlay_resume_all(dev_priv);
675 break;
676 case vmw_du_screen_object:
677 case vmw_du_screen_target:
678 if (vfb->dmabuf)
679 return vmw_dmabuf_pin_in_vram_or_gmr(dev_priv, buf,
680 false);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000681
Thomas Hellstromfd006a42015-06-28 02:50:56 -0700682 return vmw_dmabuf_pin_in_placement(dev_priv, buf,
683 &vmw_mob_placement, false);
684 default:
685 return -EINVAL;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000686 }
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000687
Thomas Hellstromfd006a42015-06-28 02:50:56 -0700688 return ret;
689}
690
691static int vmw_framebuffer_unpin(struct vmw_framebuffer *vfb)
692{
693 struct vmw_private *dev_priv = vmw_priv(vfb->base.dev);
694 struct vmw_dma_buffer *buf;
695
696 buf = vfb->dmabuf ? vmw_framebuffer_to_vfbd(&vfb->base)->buffer :
697 vmw_framebuffer_to_vfbs(&vfb->base)->surface->res.backup;
698
699 if (WARN_ON(!buf))
700 return 0;
701
702 return vmw_dmabuf_unpin(dev_priv, buf, false);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000703}
704
Sinclair Yehf89c6c32015-06-26 01:54:28 -0700705/**
706 * vmw_create_dmabuf_proxy - create a proxy surface for the DMA buf
707 *
708 * @dev: DRM device
709 * @mode_cmd: parameters for the new surface
710 * @dmabuf_mob: MOB backing the DMA buf
711 * @srf_out: newly created surface
712 *
713 * When the content FB is a DMA buf, we create a surface as a proxy to the
714 * same buffer. This way we can do a surface copy rather than a surface DMA.
715 * This is a more efficient approach
716 *
717 * RETURNS:
718 * 0 on success, error code otherwise
719 */
720static int vmw_create_dmabuf_proxy(struct drm_device *dev,
Thomas Hellstromfd006a42015-06-28 02:50:56 -0700721 const struct drm_mode_fb_cmd *mode_cmd,
Sinclair Yehf89c6c32015-06-26 01:54:28 -0700722 struct vmw_dma_buffer *dmabuf_mob,
723 struct vmw_surface **srf_out)
724{
725 uint32_t format;
726 struct drm_vmw_size content_base_size;
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -0700727 struct vmw_resource *res;
Sinclair Yehf89c6c32015-06-26 01:54:28 -0700728 int ret;
729
Sinclair Yehf89c6c32015-06-26 01:54:28 -0700730 switch (mode_cmd->depth) {
731 case 32:
732 case 24:
733 format = SVGA3D_X8R8G8B8;
734 break;
735
736 case 16:
737 case 15:
738 format = SVGA3D_R5G6B5;
739 break;
740
741 case 8:
742 format = SVGA3D_P8;
743 break;
744
745 default:
746 DRM_ERROR("Invalid framebuffer format %d\n", mode_cmd->depth);
747 return -EINVAL;
748 }
749
750 content_base_size.width = mode_cmd->width;
751 content_base_size.height = mode_cmd->height;
752 content_base_size.depth = 1;
753
754 ret = vmw_surface_gb_priv_define(dev,
755 0, /* kernel visible only */
756 0, /* flags */
757 format,
758 true, /* can be a scanout buffer */
759 1, /* num of mip levels */
760 0,
Thomas Hellstromd80efd52015-08-10 10:39:35 -0700761 0,
Sinclair Yehf89c6c32015-06-26 01:54:28 -0700762 content_base_size,
763 srf_out);
764 if (ret) {
765 DRM_ERROR("Failed to allocate proxy content buffer\n");
766 return ret;
767 }
768
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -0700769 res = &(*srf_out)->res;
Sinclair Yehf89c6c32015-06-26 01:54:28 -0700770
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -0700771 /* Reserve and switch the backing mob. */
772 mutex_lock(&res->dev_priv->cmdbuf_mutex);
773 (void) vmw_resource_reserve(res, false, true);
774 vmw_dmabuf_unreference(&res->backup);
775 res->backup = vmw_dmabuf_reference(dmabuf_mob);
776 res->backup_offset = 0;
Thomas Hellstromd80efd52015-08-10 10:39:35 -0700777 vmw_resource_unreserve(res, false, NULL, 0);
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -0700778 mutex_unlock(&res->dev_priv->cmdbuf_mutex);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000779
780 return 0;
781}
782
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000783
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000784
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200785static int vmw_kms_new_framebuffer_dmabuf(struct vmw_private *dev_priv,
786 struct vmw_dma_buffer *dmabuf,
787 struct vmw_framebuffer **out,
788 const struct drm_mode_fb_cmd
789 *mode_cmd)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000790
791{
792 struct drm_device *dev = dev_priv->dev;
793 struct vmw_framebuffer_dmabuf *vfbd;
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200794 unsigned int requested_size;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000795 int ret;
796
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200797 requested_size = mode_cmd->height * mode_cmd->pitch;
798 if (unlikely(requested_size > dmabuf->base.num_pages * PAGE_SIZE)) {
799 DRM_ERROR("Screen buffer object size is too small "
800 "for requested mode.\n");
801 return -EINVAL;
802 }
803
Jakob Bornecrantzc337ada2011-10-04 20:13:34 +0200804 /* Limited framebuffer color depth support for screen objects */
Sinclair Yehc8261a92015-06-26 01:23:42 -0700805 if (dev_priv->active_display_unit == vmw_du_screen_object) {
Jakob Bornecrantzc337ada2011-10-04 20:13:34 +0200806 switch (mode_cmd->depth) {
807 case 32:
808 case 24:
809 /* Only support 32 bpp for 32 and 24 depth fbs */
810 if (mode_cmd->bpp == 32)
811 break;
812
813 DRM_ERROR("Invalid color depth/bbp: %d %d\n",
814 mode_cmd->depth, mode_cmd->bpp);
815 return -EINVAL;
816 case 16:
817 case 15:
818 /* Only support 16 bpp for 16 and 15 depth fbs */
819 if (mode_cmd->bpp == 16)
820 break;
821
822 DRM_ERROR("Invalid color depth/bbp: %d %d\n",
823 mode_cmd->depth, mode_cmd->bpp);
824 return -EINVAL;
825 default:
826 DRM_ERROR("Invalid color depth: %d\n", mode_cmd->depth);
827 return -EINVAL;
828 }
829 }
830
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000831 vfbd = kzalloc(sizeof(*vfbd), GFP_KERNEL);
832 if (!vfbd) {
833 ret = -ENOMEM;
834 goto out_err1;
835 }
836
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200837 vfbd->base.base.bits_per_pixel = mode_cmd->bpp;
Ville Syrjälä01f2c772011-12-20 00:06:49 +0200838 vfbd->base.base.pitches[0] = mode_cmd->pitch;
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200839 vfbd->base.base.depth = mode_cmd->depth;
840 vfbd->base.base.width = mode_cmd->width;
841 vfbd->base.base.height = mode_cmd->height;
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +0200842 vfbd->base.dmabuf = true;
Sinclair Yeh05c95012015-08-11 22:53:39 -0700843 vfbd->buffer = vmw_dmabuf_reference(dmabuf);
Thomas Hellstrom90ff18b2011-10-04 20:13:32 +0200844 vfbd->base.user_handle = mode_cmd->handle;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000845 *out = &vfbd->base;
846
Daniel Vetter80f0b5a2012-12-13 23:39:01 +0100847 ret = drm_framebuffer_init(dev, &vfbd->base.base,
848 &vmw_framebuffer_dmabuf_funcs);
849 if (ret)
Sinclair Yeh05c95012015-08-11 22:53:39 -0700850 goto out_err2;
Daniel Vetter80f0b5a2012-12-13 23:39:01 +0100851
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000852 return 0;
853
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000854out_err2:
Sinclair Yeh05c95012015-08-11 22:53:39 -0700855 vmw_dmabuf_unreference(&dmabuf);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000856 kfree(vfbd);
857out_err1:
858 return ret;
859}
860
Thomas Hellstromfd006a42015-06-28 02:50:56 -0700861/**
862 * vmw_kms_new_framebuffer - Create a new framebuffer.
863 *
864 * @dev_priv: Pointer to device private struct.
865 * @dmabuf: Pointer to dma buffer to wrap the kms framebuffer around.
866 * Either @dmabuf or @surface must be NULL.
867 * @surface: Pointer to a surface to wrap the kms framebuffer around.
868 * Either @dmabuf or @surface must be NULL.
869 * @only_2d: No presents will occur to this dma buffer based framebuffer. This
870 * Helps the code to do some important optimizations.
871 * @mode_cmd: Frame-buffer metadata.
872 */
873struct vmw_framebuffer *
874vmw_kms_new_framebuffer(struct vmw_private *dev_priv,
875 struct vmw_dma_buffer *dmabuf,
876 struct vmw_surface *surface,
877 bool only_2d,
878 const struct drm_mode_fb_cmd *mode_cmd)
879{
Sinclair Yeh05c95012015-08-11 22:53:39 -0700880 struct vmw_framebuffer *vfb = NULL;
Thomas Hellstromfd006a42015-06-28 02:50:56 -0700881 bool is_dmabuf_proxy = false;
882 int ret;
883
884 /*
885 * We cannot use the SurfaceDMA command in an non-accelerated VM,
886 * therefore, wrap the DMA buf in a surface so we can use the
887 * SurfaceCopy command.
888 */
889 if (dmabuf && only_2d &&
890 dev_priv->active_display_unit == vmw_du_screen_target) {
891 ret = vmw_create_dmabuf_proxy(dev_priv->dev, mode_cmd,
892 dmabuf, &surface);
893 if (ret)
894 return ERR_PTR(ret);
895
896 is_dmabuf_proxy = true;
897 }
898
899 /* Create the new framebuffer depending one what we have */
Sinclair Yeh05c95012015-08-11 22:53:39 -0700900 if (surface) {
Thomas Hellstromfd006a42015-06-28 02:50:56 -0700901 ret = vmw_kms_new_framebuffer_surface(dev_priv, surface, &vfb,
902 mode_cmd,
903 is_dmabuf_proxy);
Sinclair Yeh05c95012015-08-11 22:53:39 -0700904
905 /*
906 * vmw_create_dmabuf_proxy() adds a reference that is no longer
907 * needed
908 */
909 if (is_dmabuf_proxy)
910 vmw_surface_unreference(&surface);
911 } else if (dmabuf) {
Thomas Hellstromfd006a42015-06-28 02:50:56 -0700912 ret = vmw_kms_new_framebuffer_dmabuf(dev_priv, dmabuf, &vfb,
913 mode_cmd);
Sinclair Yeh05c95012015-08-11 22:53:39 -0700914 } else {
Thomas Hellstromfd006a42015-06-28 02:50:56 -0700915 BUG();
Sinclair Yeh05c95012015-08-11 22:53:39 -0700916 }
Thomas Hellstromfd006a42015-06-28 02:50:56 -0700917
918 if (ret)
919 return ERR_PTR(ret);
920
921 vfb->pin = vmw_framebuffer_pin;
922 vfb->unpin = vmw_framebuffer_unpin;
923
924 return vfb;
925}
926
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000927/*
928 * Generic Kernel modesetting functions
929 */
930
931static struct drm_framebuffer *vmw_kms_fb_create(struct drm_device *dev,
932 struct drm_file *file_priv,
Jesse Barnes308e5bc2011-11-14 14:51:28 -0800933 struct drm_mode_fb_cmd2 *mode_cmd2)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000934{
935 struct vmw_private *dev_priv = vmw_priv(dev);
936 struct ttm_object_file *tfile = vmw_fpriv(file_priv)->tfile;
937 struct vmw_framebuffer *vfb = NULL;
938 struct vmw_surface *surface = NULL;
939 struct vmw_dma_buffer *bo = NULL;
Thomas Hellstrom90ff18b2011-10-04 20:13:32 +0200940 struct ttm_base_object *user_obj;
Jesse Barnes308e5bc2011-11-14 14:51:28 -0800941 struct drm_mode_fb_cmd mode_cmd;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000942 int ret;
943
Jesse Barnes308e5bc2011-11-14 14:51:28 -0800944 mode_cmd.width = mode_cmd2->width;
945 mode_cmd.height = mode_cmd2->height;
946 mode_cmd.pitch = mode_cmd2->pitches[0];
947 mode_cmd.handle = mode_cmd2->handles[0];
Dave Airlie248dbc22011-11-29 20:02:54 +0000948 drm_fb_get_bpp_depth(mode_cmd2->pixel_format, &mode_cmd.depth,
Jesse Barnes308e5bc2011-11-14 14:51:28 -0800949 &mode_cmd.bpp);
950
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200951 /**
952 * This code should be conditioned on Screen Objects not being used.
953 * If screen objects are used, we can allocate a GMR to hold the
954 * requested framebuffer.
955 */
956
Xi Wang8a783892011-12-21 05:18:33 -0500957 if (!vmw_kms_validate_mode_vram(dev_priv,
Linus Torvalds1a464cb2012-01-10 11:04:36 -0800958 mode_cmd.pitch,
959 mode_cmd.height)) {
Sinclair Yehc8261a92015-06-26 01:23:42 -0700960 DRM_ERROR("Requested mode exceed bounding box limit.\n");
Jakob Bornecrantzd9826402011-11-03 21:03:04 +0100961 return ERR_PTR(-ENOMEM);
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200962 }
963
Thomas Hellstrom90ff18b2011-10-04 20:13:32 +0200964 /*
965 * Take a reference on the user object of the resource
966 * backing the kms fb. This ensures that user-space handle
967 * lookups on that resource will always work as long as
968 * it's registered with a kms framebuffer. This is important,
969 * since vmw_execbuf_process identifies resources in the
970 * command stream using user-space handles.
971 */
972
Jesse Barnes308e5bc2011-11-14 14:51:28 -0800973 user_obj = ttm_base_object_lookup(tfile, mode_cmd.handle);
Thomas Hellstrom90ff18b2011-10-04 20:13:32 +0200974 if (unlikely(user_obj == NULL)) {
975 DRM_ERROR("Could not locate requested kms frame buffer.\n");
976 return ERR_PTR(-ENOENT);
977 }
978
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200979 /**
980 * End conditioned code.
981 */
982
Jakob Bornecrantze7ac9212011-11-28 13:19:12 +0100983 /* returns either a dmabuf or surface */
984 ret = vmw_user_lookup_handle(dev_priv, tfile,
Dave Airlie4cf73122011-12-21 09:50:56 +0000985 mode_cmd.handle,
Jakob Bornecrantze7ac9212011-11-28 13:19:12 +0100986 &surface, &bo);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000987 if (ret)
Jakob Bornecrantze7ac9212011-11-28 13:19:12 +0100988 goto err_out;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000989
Thomas Hellstromfd006a42015-06-28 02:50:56 -0700990 vfb = vmw_kms_new_framebuffer(dev_priv, bo, surface,
991 !(dev_priv->capabilities & SVGA_CAP_3D),
992 &mode_cmd);
993 if (IS_ERR(vfb)) {
994 ret = PTR_ERR(vfb);
995 goto err_out;
996 }
Jakob Bornecrantz5ffdb652010-01-30 03:38:08 +0000997
Jakob Bornecrantze7ac9212011-11-28 13:19:12 +0100998err_out:
999 /* vmw_user_lookup_handle takes one ref so does new_fb */
1000 if (bo)
1001 vmw_dmabuf_unreference(&bo);
1002 if (surface)
1003 vmw_surface_unreference(&surface);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001004
1005 if (ret) {
1006 DRM_ERROR("failed to create vmw_framebuffer: %i\n", ret);
Thomas Hellstrom90ff18b2011-10-04 20:13:32 +02001007 ttm_base_object_unref(&user_obj);
Chris Wilsoncce13ff2010-08-08 13:36:38 +01001008 return ERR_PTR(ret);
Thomas Hellstrom90ff18b2011-10-04 20:13:32 +02001009 } else
1010 vfb->user_obj = user_obj;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001011
1012 return &vfb->base;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001013}
1014
Laurent Pincharte6ecefa2012-05-17 13:27:23 +02001015static const struct drm_mode_config_funcs vmw_kms_funcs = {
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001016 .fb_create = vmw_kms_fb_create,
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001017};
1018
Thomas Hellstromb9eb1a62015-04-02 02:39:45 -07001019static int vmw_kms_generic_present(struct vmw_private *dev_priv,
1020 struct drm_file *file_priv,
1021 struct vmw_framebuffer *vfb,
1022 struct vmw_surface *surface,
1023 uint32_t sid,
1024 int32_t destX, int32_t destY,
1025 struct drm_vmw_rect *clips,
1026 uint32_t num_clips)
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +02001027{
Thomas Hellstrom10b1e0c2015-06-26 02:14:27 -07001028 return vmw_kms_sou_do_surface_dirty(dev_priv, vfb, NULL, clips,
1029 &surface->res, destX, destY,
1030 num_clips, 1, NULL);
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +02001031}
1032
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001033
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001034int vmw_kms_present(struct vmw_private *dev_priv,
1035 struct drm_file *file_priv,
1036 struct vmw_framebuffer *vfb,
1037 struct vmw_surface *surface,
1038 uint32_t sid,
1039 int32_t destX, int32_t destY,
1040 struct drm_vmw_rect *clips,
1041 uint32_t num_clips)
1042{
Sinclair Yeh35c05122015-06-26 01:42:06 -07001043 int ret;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001044
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001045 switch (dev_priv->active_display_unit) {
1046 case vmw_du_screen_target:
1047 ret = vmw_kms_stdu_surface_dirty(dev_priv, vfb, NULL, clips,
1048 &surface->res, destX, destY,
1049 num_clips, 1, NULL);
1050 break;
1051 case vmw_du_screen_object:
1052 ret = vmw_kms_generic_present(dev_priv, file_priv, vfb, surface,
1053 sid, destX, destY, clips,
1054 num_clips);
1055 break;
1056 default:
1057 WARN_ONCE(true,
1058 "Present called with invalid display system.\n");
1059 ret = -ENOSYS;
1060 break;
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +02001061 }
Sinclair Yeh35c05122015-06-26 01:42:06 -07001062 if (ret)
1063 return ret;
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +02001064
Sinclair Yeh35c05122015-06-26 01:42:06 -07001065 vmw_fifo_flush(dev_priv, false);
Michel Dänzer0bef23f2011-08-31 07:42:50 +00001066
Sinclair Yeh35c05122015-06-26 01:42:06 -07001067 return 0;
Thomas Hellstrom7c4f7782010-06-01 11:38:17 +02001068}
1069
1070int vmw_kms_init(struct vmw_private *dev_priv)
1071{
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001072 struct drm_device *dev = dev_priv->dev;
1073 int ret;
Jakob Bornecrantzd8bd19d2010-06-01 11:54:20 +02001074
Thomas Hellstrome133e732010-10-05 12:43:04 +02001075 drm_mode_config_init(dev);
1076 dev->mode_config.funcs = &vmw_kms_funcs;
1077 dev->mode_config.min_width = 1;
1078 dev->mode_config.min_height = 1;
Sinclair Yeh65ade7d2015-07-16 10:49:13 -07001079 dev->mode_config.max_width = dev_priv->texture_max_width;
1080 dev->mode_config.max_height = dev_priv->texture_max_height;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001081
Sinclair Yeh35c05122015-06-26 01:42:06 -07001082 ret = vmw_kms_stdu_init_display(dev_priv);
1083 if (ret) {
1084 ret = vmw_kms_sou_init_display(dev_priv);
1085 if (ret) /* Fallback */
1086 ret = vmw_kms_ldu_init_display(dev_priv);
1087 }
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001088
Sinclair Yehc8261a92015-06-26 01:23:42 -07001089 return ret;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001090}
1091
1092int vmw_kms_close(struct vmw_private *dev_priv)
1093{
Sinclair Yehc8261a92015-06-26 01:23:42 -07001094 int ret;
1095
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001096 /*
1097 * Docs says we should take the lock before calling this function
1098 * but since it destroys encoders and our destructor calls
1099 * drm_encoder_cleanup which takes the lock we deadlock.
1100 */
1101 drm_mode_config_cleanup(dev_priv->dev);
Sinclair Yehc8261a92015-06-26 01:23:42 -07001102 if (dev_priv->active_display_unit == vmw_du_screen_object)
1103 ret = vmw_kms_sou_close_display(dev_priv);
Sinclair Yeh35c05122015-06-26 01:42:06 -07001104 else if (dev_priv->active_display_unit == vmw_du_screen_target)
1105 ret = vmw_kms_stdu_close_display(dev_priv);
Jakob Bornecrantzc0d18312011-11-09 10:25:26 +01001106 else
Sinclair Yehc8261a92015-06-26 01:23:42 -07001107 ret = vmw_kms_ldu_close_display(dev_priv);
1108
1109 return ret;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001110}
1111
1112int vmw_kms_cursor_bypass_ioctl(struct drm_device *dev, void *data,
1113 struct drm_file *file_priv)
1114{
1115 struct drm_vmw_cursor_bypass_arg *arg = data;
1116 struct vmw_display_unit *du;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001117 struct drm_crtc *crtc;
1118 int ret = 0;
1119
1120
1121 mutex_lock(&dev->mode_config.mutex);
1122 if (arg->flags & DRM_VMW_CURSOR_BYPASS_ALL) {
1123
1124 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
1125 du = vmw_crtc_to_du(crtc);
1126 du->hotspot_x = arg->xhot;
1127 du->hotspot_y = arg->yhot;
1128 }
1129
1130 mutex_unlock(&dev->mode_config.mutex);
1131 return 0;
1132 }
1133
Rob Clarka4cd5d62014-07-17 23:30:02 -04001134 crtc = drm_crtc_find(dev, arg->crtc_id);
1135 if (!crtc) {
Ville Syrjälä4ae87ff2013-10-17 13:35:05 +03001136 ret = -ENOENT;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001137 goto out;
1138 }
1139
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001140 du = vmw_crtc_to_du(crtc);
1141
1142 du->hotspot_x = arg->xhot;
1143 du->hotspot_y = arg->yhot;
1144
1145out:
1146 mutex_unlock(&dev->mode_config.mutex);
1147
1148 return ret;
1149}
1150
1151int vmw_kms_write_svga(struct vmw_private *vmw_priv,
1152 unsigned width, unsigned height, unsigned pitch,
1153 unsigned bpp, unsigned depth)
1154{
1155 if (vmw_priv->capabilities & SVGA_CAP_PITCHLOCK)
1156 vmw_write(vmw_priv, SVGA_REG_PITCHLOCK, pitch);
1157 else if (vmw_fifo_have_pitchlock(vmw_priv))
1158 iowrite32(pitch, vmw_priv->mmio_virt + SVGA_FIFO_PITCHLOCK);
1159 vmw_write(vmw_priv, SVGA_REG_WIDTH, width);
1160 vmw_write(vmw_priv, SVGA_REG_HEIGHT, height);
1161 vmw_write(vmw_priv, SVGA_REG_BITS_PER_PIXEL, bpp);
1162
1163 if (vmw_read(vmw_priv, SVGA_REG_DEPTH) != depth) {
1164 DRM_ERROR("Invalid depth %u for %u bpp, host expects %u\n",
1165 depth, bpp, vmw_read(vmw_priv, SVGA_REG_DEPTH));
1166 return -EINVAL;
1167 }
1168
1169 return 0;
1170}
1171
1172int vmw_kms_save_vga(struct vmw_private *vmw_priv)
1173{
1174 struct vmw_vga_topology_state *save;
1175 uint32_t i;
1176
1177 vmw_priv->vga_width = vmw_read(vmw_priv, SVGA_REG_WIDTH);
1178 vmw_priv->vga_height = vmw_read(vmw_priv, SVGA_REG_HEIGHT);
1179 vmw_priv->vga_bpp = vmw_read(vmw_priv, SVGA_REG_BITS_PER_PIXEL);
1180 if (vmw_priv->capabilities & SVGA_CAP_PITCHLOCK)
1181 vmw_priv->vga_pitchlock =
1182 vmw_read(vmw_priv, SVGA_REG_PITCHLOCK);
1183 else if (vmw_fifo_have_pitchlock(vmw_priv))
1184 vmw_priv->vga_pitchlock = ioread32(vmw_priv->mmio_virt +
Sinclair Yehc8261a92015-06-26 01:23:42 -07001185 SVGA_FIFO_PITCHLOCK);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001186
1187 if (!(vmw_priv->capabilities & SVGA_CAP_DISPLAY_TOPOLOGY))
1188 return 0;
1189
1190 vmw_priv->num_displays = vmw_read(vmw_priv,
1191 SVGA_REG_NUM_GUEST_DISPLAYS);
1192
1193 if (vmw_priv->num_displays == 0)
1194 vmw_priv->num_displays = 1;
1195
1196 for (i = 0; i < vmw_priv->num_displays; ++i) {
1197 save = &vmw_priv->vga_save[i];
1198 vmw_write(vmw_priv, SVGA_REG_DISPLAY_ID, i);
1199 save->primary = vmw_read(vmw_priv, SVGA_REG_DISPLAY_IS_PRIMARY);
1200 save->pos_x = vmw_read(vmw_priv, SVGA_REG_DISPLAY_POSITION_X);
1201 save->pos_y = vmw_read(vmw_priv, SVGA_REG_DISPLAY_POSITION_Y);
1202 save->width = vmw_read(vmw_priv, SVGA_REG_DISPLAY_WIDTH);
1203 save->height = vmw_read(vmw_priv, SVGA_REG_DISPLAY_HEIGHT);
1204 vmw_write(vmw_priv, SVGA_REG_DISPLAY_ID, SVGA_ID_INVALID);
1205 if (i == 0 && vmw_priv->num_displays == 1 &&
1206 save->width == 0 && save->height == 0) {
1207
1208 /*
1209 * It should be fairly safe to assume that these
1210 * values are uninitialized.
1211 */
1212
1213 save->width = vmw_priv->vga_width - save->pos_x;
1214 save->height = vmw_priv->vga_height - save->pos_y;
1215 }
1216 }
1217
1218 return 0;
1219}
1220
1221int vmw_kms_restore_vga(struct vmw_private *vmw_priv)
1222{
1223 struct vmw_vga_topology_state *save;
1224 uint32_t i;
1225
1226 vmw_write(vmw_priv, SVGA_REG_WIDTH, vmw_priv->vga_width);
1227 vmw_write(vmw_priv, SVGA_REG_HEIGHT, vmw_priv->vga_height);
1228 vmw_write(vmw_priv, SVGA_REG_BITS_PER_PIXEL, vmw_priv->vga_bpp);
1229 if (vmw_priv->capabilities & SVGA_CAP_PITCHLOCK)
1230 vmw_write(vmw_priv, SVGA_REG_PITCHLOCK,
1231 vmw_priv->vga_pitchlock);
1232 else if (vmw_fifo_have_pitchlock(vmw_priv))
1233 iowrite32(vmw_priv->vga_pitchlock,
1234 vmw_priv->mmio_virt + SVGA_FIFO_PITCHLOCK);
1235
1236 if (!(vmw_priv->capabilities & SVGA_CAP_DISPLAY_TOPOLOGY))
1237 return 0;
1238
1239 for (i = 0; i < vmw_priv->num_displays; ++i) {
1240 save = &vmw_priv->vga_save[i];
1241 vmw_write(vmw_priv, SVGA_REG_DISPLAY_ID, i);
1242 vmw_write(vmw_priv, SVGA_REG_DISPLAY_IS_PRIMARY, save->primary);
1243 vmw_write(vmw_priv, SVGA_REG_DISPLAY_POSITION_X, save->pos_x);
1244 vmw_write(vmw_priv, SVGA_REG_DISPLAY_POSITION_Y, save->pos_y);
1245 vmw_write(vmw_priv, SVGA_REG_DISPLAY_WIDTH, save->width);
1246 vmw_write(vmw_priv, SVGA_REG_DISPLAY_HEIGHT, save->height);
1247 vmw_write(vmw_priv, SVGA_REG_DISPLAY_ID, SVGA_ID_INVALID);
1248 }
1249
1250 return 0;
Jakob Bornecrantzd8bd19d2010-06-01 11:54:20 +02001251}
1252
1253bool vmw_kms_validate_mode_vram(struct vmw_private *dev_priv,
1254 uint32_t pitch,
1255 uint32_t height)
1256{
Sinclair Yeh35c05122015-06-26 01:42:06 -07001257 return ((u64) pitch * (u64) height) < (u64)
1258 ((dev_priv->active_display_unit == vmw_du_screen_target) ?
1259 dev_priv->prim_bb_mem : dev_priv->vram_size);
Thomas Hellstrome133e732010-10-05 12:43:04 +02001260}
1261
Jakob Bornecrantz1c482ab2011-10-17 11:59:45 +02001262
1263/**
1264 * Function called by DRM code called with vbl_lock held.
1265 */
Thomas Hellstrom7a1c2f62010-10-01 10:21:49 +02001266u32 vmw_get_vblank_counter(struct drm_device *dev, int crtc)
1267{
1268 return 0;
1269}
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001270
Jakob Bornecrantz1c482ab2011-10-17 11:59:45 +02001271/**
1272 * Function called by DRM code called with vbl_lock held.
1273 */
1274int vmw_enable_vblank(struct drm_device *dev, int crtc)
1275{
1276 return -ENOSYS;
1277}
1278
1279/**
1280 * Function called by DRM code called with vbl_lock held.
1281 */
1282void vmw_disable_vblank(struct drm_device *dev, int crtc)
1283{
1284}
1285
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001286
1287/*
1288 * Small shared kms functions.
1289 */
1290
Rashika Kheria847c5962014-01-06 22:18:10 +05301291static int vmw_du_update_layout(struct vmw_private *dev_priv, unsigned num,
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001292 struct drm_vmw_rect *rects)
1293{
1294 struct drm_device *dev = dev_priv->dev;
1295 struct vmw_display_unit *du;
1296 struct drm_connector *con;
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001297
1298 mutex_lock(&dev->mode_config.mutex);
1299
1300#if 0
Thomas Hellstrom6ea77d12011-10-04 20:13:36 +02001301 {
1302 unsigned int i;
1303
1304 DRM_INFO("%s: new layout ", __func__);
1305 for (i = 0; i < num; i++)
1306 DRM_INFO("(%i, %i %ux%u) ", rects[i].x, rects[i].y,
1307 rects[i].w, rects[i].h);
1308 DRM_INFO("\n");
1309 }
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001310#endif
1311
1312 list_for_each_entry(con, &dev->mode_config.connector_list, head) {
1313 du = vmw_connector_to_du(con);
1314 if (num > du->unit) {
1315 du->pref_width = rects[du->unit].w;
1316 du->pref_height = rects[du->unit].h;
1317 du->pref_active = true;
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02001318 du->gui_x = rects[du->unit].x;
1319 du->gui_y = rects[du->unit].y;
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001320 } else {
1321 du->pref_width = 800;
1322 du->pref_height = 600;
1323 du->pref_active = false;
1324 }
1325 con->status = vmw_du_connector_detect(con, true);
1326 }
1327
1328 mutex_unlock(&dev->mode_config.mutex);
1329
1330 return 0;
1331}
1332
1333void vmw_du_crtc_save(struct drm_crtc *crtc)
1334{
1335}
1336
1337void vmw_du_crtc_restore(struct drm_crtc *crtc)
1338{
1339}
1340
1341void vmw_du_crtc_gamma_set(struct drm_crtc *crtc,
1342 u16 *r, u16 *g, u16 *b,
1343 uint32_t start, uint32_t size)
1344{
1345 struct vmw_private *dev_priv = vmw_priv(crtc->dev);
1346 int i;
1347
1348 for (i = 0; i < size; i++) {
1349 DRM_DEBUG("%d r/g/b = 0x%04x / 0x%04x / 0x%04x\n", i,
1350 r[i], g[i], b[i]);
1351 vmw_write(dev_priv, SVGA_PALETTE_BASE + i * 3 + 0, r[i] >> 8);
1352 vmw_write(dev_priv, SVGA_PALETTE_BASE + i * 3 + 1, g[i] >> 8);
1353 vmw_write(dev_priv, SVGA_PALETTE_BASE + i * 3 + 2, b[i] >> 8);
1354 }
1355}
1356
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02001357int vmw_du_connector_dpms(struct drm_connector *connector, int mode)
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001358{
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02001359 return 0;
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001360}
1361
1362void vmw_du_connector_save(struct drm_connector *connector)
1363{
1364}
1365
1366void vmw_du_connector_restore(struct drm_connector *connector)
1367{
1368}
1369
1370enum drm_connector_status
1371vmw_du_connector_detect(struct drm_connector *connector, bool force)
1372{
1373 uint32_t num_displays;
1374 struct drm_device *dev = connector->dev;
1375 struct vmw_private *dev_priv = vmw_priv(dev);
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02001376 struct vmw_display_unit *du = vmw_connector_to_du(connector);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001377
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001378 num_displays = vmw_read(dev_priv, SVGA_REG_NUM_DISPLAYS);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001379
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02001380 return ((vmw_connector_to_du(connector)->unit < num_displays &&
1381 du->pref_active) ?
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001382 connector_status_connected : connector_status_disconnected);
1383}
1384
1385static struct drm_display_mode vmw_kms_connector_builtin[] = {
1386 /* 640x480@60Hz */
1387 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25175, 640, 656,
1388 752, 800, 0, 480, 489, 492, 525, 0,
1389 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
1390 /* 800x600@60Hz */
1391 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 40000, 800, 840,
1392 968, 1056, 0, 600, 601, 605, 628, 0,
1393 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
1394 /* 1024x768@60Hz */
1395 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 65000, 1024, 1048,
1396 1184, 1344, 0, 768, 771, 777, 806, 0,
1397 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
1398 /* 1152x864@75Hz */
1399 { DRM_MODE("1152x864", DRM_MODE_TYPE_DRIVER, 108000, 1152, 1216,
1400 1344, 1600, 0, 864, 865, 868, 900, 0,
1401 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
1402 /* 1280x768@60Hz */
1403 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 79500, 1280, 1344,
1404 1472, 1664, 0, 768, 771, 778, 798, 0,
1405 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
1406 /* 1280x800@60Hz */
1407 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 83500, 1280, 1352,
1408 1480, 1680, 0, 800, 803, 809, 831, 0,
1409 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
1410 /* 1280x960@60Hz */
1411 { DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1376,
1412 1488, 1800, 0, 960, 961, 964, 1000, 0,
1413 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
1414 /* 1280x1024@60Hz */
1415 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1328,
1416 1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
1417 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
1418 /* 1360x768@60Hz */
1419 { DRM_MODE("1360x768", DRM_MODE_TYPE_DRIVER, 85500, 1360, 1424,
1420 1536, 1792, 0, 768, 771, 777, 795, 0,
1421 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
1422 /* 1440x1050@60Hz */
1423 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 121750, 1400, 1488,
1424 1632, 1864, 0, 1050, 1053, 1057, 1089, 0,
1425 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
1426 /* 1440x900@60Hz */
1427 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 106500, 1440, 1520,
1428 1672, 1904, 0, 900, 903, 909, 934, 0,
1429 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
1430 /* 1600x1200@60Hz */
1431 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 162000, 1600, 1664,
1432 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
1433 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
1434 /* 1680x1050@60Hz */
1435 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 146250, 1680, 1784,
1436 1960, 2240, 0, 1050, 1053, 1059, 1089, 0,
1437 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
1438 /* 1792x1344@60Hz */
1439 { DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER, 204750, 1792, 1920,
1440 2120, 2448, 0, 1344, 1345, 1348, 1394, 0,
1441 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
1442 /* 1853x1392@60Hz */
1443 { DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER, 218250, 1856, 1952,
1444 2176, 2528, 0, 1392, 1393, 1396, 1439, 0,
1445 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
1446 /* 1920x1200@60Hz */
1447 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 193250, 1920, 2056,
1448 2256, 2592, 0, 1200, 1203, 1209, 1245, 0,
1449 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
1450 /* 1920x1440@60Hz */
1451 { DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER, 234000, 1920, 2048,
1452 2256, 2600, 0, 1440, 1441, 1444, 1500, 0,
1453 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
1454 /* 2560x1600@60Hz */
1455 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 348500, 2560, 2752,
1456 3032, 3504, 0, 1600, 1603, 1609, 1658, 0,
1457 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
1458 /* Terminate */
1459 { DRM_MODE("", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) },
1460};
1461
Thomas Hellstrom1543b4d2011-11-02 09:43:10 +01001462/**
1463 * vmw_guess_mode_timing - Provide fake timings for a
1464 * 60Hz vrefresh mode.
1465 *
1466 * @mode - Pointer to a struct drm_display_mode with hdisplay and vdisplay
1467 * members filled in.
1468 */
Thomas Hellstroma2787242015-06-29 12:55:07 -07001469void vmw_guess_mode_timing(struct drm_display_mode *mode)
Thomas Hellstrom1543b4d2011-11-02 09:43:10 +01001470{
1471 mode->hsync_start = mode->hdisplay + 50;
1472 mode->hsync_end = mode->hsync_start + 50;
1473 mode->htotal = mode->hsync_end + 50;
1474
1475 mode->vsync_start = mode->vdisplay + 50;
1476 mode->vsync_end = mode->vsync_start + 50;
1477 mode->vtotal = mode->vsync_end + 50;
1478
1479 mode->clock = (u32)mode->htotal * (u32)mode->vtotal / 100 * 6;
1480 mode->vrefresh = drm_mode_vrefresh(mode);
1481}
1482
1483
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001484int vmw_du_connector_fill_modes(struct drm_connector *connector,
1485 uint32_t max_width, uint32_t max_height)
1486{
1487 struct vmw_display_unit *du = vmw_connector_to_du(connector);
1488 struct drm_device *dev = connector->dev;
1489 struct vmw_private *dev_priv = vmw_priv(dev);
1490 struct drm_display_mode *mode = NULL;
1491 struct drm_display_mode *bmode;
1492 struct drm_display_mode prefmode = { DRM_MODE("preferred",
1493 DRM_MODE_TYPE_DRIVER | DRM_MODE_TYPE_PREFERRED,
1494 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1495 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC)
1496 };
1497 int i;
Sinclair Yeh9a723842014-10-31 09:58:06 +01001498 u32 assumed_bpp = 2;
1499
1500 /*
1501 * If using screen objects, then assume 32-bpp because that's what the
1502 * SVGA device is assuming
1503 */
Sinclair Yehc8261a92015-06-26 01:23:42 -07001504 if (dev_priv->active_display_unit == vmw_du_screen_object)
Sinclair Yeh9a723842014-10-31 09:58:06 +01001505 assumed_bpp = 4;
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001506
Sinclair Yeh35c05122015-06-26 01:42:06 -07001507 if (dev_priv->active_display_unit == vmw_du_screen_target) {
1508 max_width = min(max_width, dev_priv->stdu_max_width);
1509 max_height = min(max_height, dev_priv->stdu_max_height);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001510 }
1511
1512 /* Add preferred mode */
Sinclair Yehc8261a92015-06-26 01:23:42 -07001513 mode = drm_mode_duplicate(dev, &prefmode);
1514 if (!mode)
1515 return 0;
1516 mode->hdisplay = du->pref_width;
1517 mode->vdisplay = du->pref_height;
1518 vmw_guess_mode_timing(mode);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001519
Sinclair Yehc8261a92015-06-26 01:23:42 -07001520 if (vmw_kms_validate_mode_vram(dev_priv,
1521 mode->hdisplay * assumed_bpp,
1522 mode->vdisplay)) {
1523 drm_mode_probed_add(connector, mode);
1524 } else {
1525 drm_mode_destroy(dev, mode);
1526 mode = NULL;
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001527 }
1528
Sinclair Yehc8261a92015-06-26 01:23:42 -07001529 if (du->pref_mode) {
1530 list_del_init(&du->pref_mode->head);
1531 drm_mode_destroy(dev, du->pref_mode);
1532 }
1533
1534 /* mode might be null here, this is intended */
1535 du->pref_mode = mode;
1536
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001537 for (i = 0; vmw_kms_connector_builtin[i].type != 0; i++) {
1538 bmode = &vmw_kms_connector_builtin[i];
1539 if (bmode->hdisplay > max_width ||
1540 bmode->vdisplay > max_height)
1541 continue;
1542
Sinclair Yeh9a723842014-10-31 09:58:06 +01001543 if (!vmw_kms_validate_mode_vram(dev_priv,
1544 bmode->hdisplay * assumed_bpp,
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001545 bmode->vdisplay))
1546 continue;
1547
1548 mode = drm_mode_duplicate(dev, bmode);
1549 if (!mode)
1550 return 0;
1551 mode->vrefresh = drm_mode_vrefresh(mode);
1552
1553 drm_mode_probed_add(connector, mode);
1554 }
1555
Dave Airlieb87577b2014-05-01 09:26:53 +10001556 drm_mode_connector_list_update(connector, true);
Thomas Hellstromf6b05002015-06-29 12:59:58 -07001557 /* Move the prefered mode first, help apps pick the right mode. */
1558 drm_mode_sort(&connector->modes);
Jakob Bornecrantz626ab772011-10-04 20:13:20 +02001559
1560 return 1;
1561}
1562
1563int vmw_du_connector_set_property(struct drm_connector *connector,
1564 struct drm_property *property,
1565 uint64_t val)
1566{
1567 return 0;
1568}
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02001569
1570
1571int vmw_kms_update_layout_ioctl(struct drm_device *dev, void *data,
1572 struct drm_file *file_priv)
1573{
1574 struct vmw_private *dev_priv = vmw_priv(dev);
1575 struct drm_vmw_update_layout_arg *arg =
1576 (struct drm_vmw_update_layout_arg *)data;
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02001577 void __user *user_rects;
1578 struct drm_vmw_rect *rects;
1579 unsigned rects_size;
1580 int ret;
1581 int i;
Sinclair Yeh65ade7d2015-07-16 10:49:13 -07001582 u64 total_pixels = 0;
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02001583 struct drm_mode_config *mode_config = &dev->mode_config;
Sinclair Yehc8261a92015-06-26 01:23:42 -07001584 struct drm_vmw_rect bounding_box = {0};
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02001585
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02001586 if (!arg->num_outputs) {
1587 struct drm_vmw_rect def_rect = {0, 0, 800, 600};
1588 vmw_du_update_layout(dev_priv, 1, &def_rect);
Thomas Hellstrom5151adb2015-03-09 01:56:21 -07001589 return 0;
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02001590 }
1591
1592 rects_size = arg->num_outputs * sizeof(struct drm_vmw_rect);
Xi Wangbab9efc2011-11-28 12:25:43 +01001593 rects = kcalloc(arg->num_outputs, sizeof(struct drm_vmw_rect),
1594 GFP_KERNEL);
Thomas Hellstrom5151adb2015-03-09 01:56:21 -07001595 if (unlikely(!rects))
1596 return -ENOMEM;
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02001597
1598 user_rects = (void __user *)(unsigned long)arg->rects;
1599 ret = copy_from_user(rects, user_rects, rects_size);
1600 if (unlikely(ret != 0)) {
1601 DRM_ERROR("Failed to get rects.\n");
1602 ret = -EFAULT;
1603 goto out_free;
1604 }
1605
1606 for (i = 0; i < arg->num_outputs; ++i) {
Xi Wangbab9efc2011-11-28 12:25:43 +01001607 if (rects[i].x < 0 ||
1608 rects[i].y < 0 ||
1609 rects[i].x + rects[i].w > mode_config->max_width ||
1610 rects[i].y + rects[i].h > mode_config->max_height) {
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02001611 DRM_ERROR("Invalid GUI layout.\n");
1612 ret = -EINVAL;
1613 goto out_free;
1614 }
Sinclair Yehc8261a92015-06-26 01:23:42 -07001615
1616 /*
1617 * bounding_box.w and bunding_box.h are used as
1618 * lower-right coordinates
1619 */
1620 if (rects[i].x + rects[i].w > bounding_box.w)
1621 bounding_box.w = rects[i].x + rects[i].w;
1622
1623 if (rects[i].y + rects[i].h > bounding_box.h)
1624 bounding_box.h = rects[i].y + rects[i].h;
Sinclair Yeh65ade7d2015-07-16 10:49:13 -07001625
1626 total_pixels += (u64) rects[i].w * (u64) rects[i].h;
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02001627 }
1628
Sinclair Yeh65ade7d2015-07-16 10:49:13 -07001629 if (dev_priv->active_display_unit == vmw_du_screen_target) {
1630 /*
1631 * For Screen Targets, the limits for a toplogy are:
1632 * 1. Bounding box (assuming 32bpp) must be < prim_bb_mem
1633 * 2. Total pixels (assuming 32bpp) must be < prim_bb_mem
1634 */
1635 u64 bb_mem = bounding_box.w * bounding_box.h * 4;
1636 u64 pixel_mem = total_pixels * 4;
1637
1638 if (bb_mem > dev_priv->prim_bb_mem) {
1639 DRM_ERROR("Topology is beyond supported limits.\n");
Sinclair Yeh35c05122015-06-26 01:42:06 -07001640 ret = -EINVAL;
1641 goto out_free;
1642 }
1643
Sinclair Yeh65ade7d2015-07-16 10:49:13 -07001644 if (pixel_mem > dev_priv->prim_bb_mem) {
1645 DRM_ERROR("Combined output size too large\n");
1646 ret = -EINVAL;
1647 goto out_free;
1648 }
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02001649 }
1650
1651 vmw_du_update_layout(dev_priv, arg->num_outputs, rects);
1652
1653out_free:
1654 kfree(rects);
Thomas Hellstromcd2b89e2011-10-25 23:35:53 +02001655 return ret;
1656}
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07001657
1658/**
1659 * vmw_kms_helper_dirty - Helper to build commands and perform actions based
1660 * on a set of cliprects and a set of display units.
1661 *
1662 * @dev_priv: Pointer to a device private structure.
1663 * @framebuffer: Pointer to the framebuffer on which to perform the actions.
1664 * @clips: A set of struct drm_clip_rect. Either this os @vclips must be NULL.
1665 * Cliprects are given in framebuffer coordinates.
1666 * @vclips: A set of struct drm_vmw_rect cliprects. Either this or @clips must
1667 * be NULL. Cliprects are given in source coordinates.
1668 * @dest_x: X coordinate offset for the crtc / destination clip rects.
1669 * @dest_y: Y coordinate offset for the crtc / destination clip rects.
1670 * @num_clips: Number of cliprects in the @clips or @vclips array.
1671 * @increment: Integer with which to increment the clip counter when looping.
1672 * Used to skip a predetermined number of clip rects.
1673 * @dirty: Closure structure. See the description of struct vmw_kms_dirty.
1674 */
1675int vmw_kms_helper_dirty(struct vmw_private *dev_priv,
1676 struct vmw_framebuffer *framebuffer,
1677 const struct drm_clip_rect *clips,
1678 const struct drm_vmw_rect *vclips,
1679 s32 dest_x, s32 dest_y,
1680 int num_clips,
1681 int increment,
1682 struct vmw_kms_dirty *dirty)
1683{
1684 struct vmw_display_unit *units[VMWGFX_NUM_DISPLAY_UNITS];
1685 struct drm_crtc *crtc;
1686 u32 num_units = 0;
1687 u32 i, k;
1688 int ret;
1689
1690 dirty->dev_priv = dev_priv;
1691
1692 list_for_each_entry(crtc, &dev_priv->dev->mode_config.crtc_list, head) {
1693 if (crtc->primary->fb != &framebuffer->base)
1694 continue;
1695 units[num_units++] = vmw_crtc_to_du(crtc);
1696 }
1697
1698 for (k = 0; k < num_units; k++) {
1699 struct vmw_display_unit *unit = units[k];
1700 s32 crtc_x = unit->crtc.x;
1701 s32 crtc_y = unit->crtc.y;
1702 s32 crtc_width = unit->crtc.mode.hdisplay;
1703 s32 crtc_height = unit->crtc.mode.vdisplay;
1704 const struct drm_clip_rect *clips_ptr = clips;
1705 const struct drm_vmw_rect *vclips_ptr = vclips;
1706
1707 dirty->unit = unit;
1708 if (dirty->fifo_reserve_size > 0) {
1709 dirty->cmd = vmw_fifo_reserve(dev_priv,
1710 dirty->fifo_reserve_size);
1711 if (!dirty->cmd) {
1712 DRM_ERROR("Couldn't reserve fifo space "
1713 "for dirty blits.\n");
1714 return ret;
1715 }
1716 memset(dirty->cmd, 0, dirty->fifo_reserve_size);
1717 }
1718 dirty->num_hits = 0;
1719 for (i = 0; i < num_clips; i++, clips_ptr += increment,
1720 vclips_ptr += increment) {
1721 s32 clip_left;
1722 s32 clip_top;
1723
1724 /*
1725 * Select clip array type. Note that integer type
1726 * in @clips is unsigned short, whereas in @vclips
1727 * it's 32-bit.
1728 */
1729 if (clips) {
1730 dirty->fb_x = (s32) clips_ptr->x1;
1731 dirty->fb_y = (s32) clips_ptr->y1;
1732 dirty->unit_x2 = (s32) clips_ptr->x2 + dest_x -
1733 crtc_x;
1734 dirty->unit_y2 = (s32) clips_ptr->y2 + dest_y -
1735 crtc_y;
1736 } else {
1737 dirty->fb_x = vclips_ptr->x;
1738 dirty->fb_y = vclips_ptr->y;
1739 dirty->unit_x2 = dirty->fb_x + vclips_ptr->w +
1740 dest_x - crtc_x;
1741 dirty->unit_y2 = dirty->fb_y + vclips_ptr->h +
1742 dest_y - crtc_y;
1743 }
1744
1745 dirty->unit_x1 = dirty->fb_x + dest_x - crtc_x;
1746 dirty->unit_y1 = dirty->fb_y + dest_y - crtc_y;
1747
1748 /* Skip this clip if it's outside the crtc region */
1749 if (dirty->unit_x1 >= crtc_width ||
1750 dirty->unit_y1 >= crtc_height ||
1751 dirty->unit_x2 <= 0 || dirty->unit_y2 <= 0)
1752 continue;
1753
1754 /* Clip right and bottom to crtc limits */
1755 dirty->unit_x2 = min_t(s32, dirty->unit_x2,
1756 crtc_width);
1757 dirty->unit_y2 = min_t(s32, dirty->unit_y2,
1758 crtc_height);
1759
1760 /* Clip left and top to crtc limits */
1761 clip_left = min_t(s32, dirty->unit_x1, 0);
1762 clip_top = min_t(s32, dirty->unit_y1, 0);
1763 dirty->unit_x1 -= clip_left;
1764 dirty->unit_y1 -= clip_top;
1765 dirty->fb_x -= clip_left;
1766 dirty->fb_y -= clip_top;
1767
1768 dirty->clip(dirty);
1769 }
1770
1771 dirty->fifo_commit(dirty);
1772 }
1773
1774 return 0;
1775}
1776
1777/**
1778 * vmw_kms_helper_buffer_prepare - Reserve and validate a buffer object before
1779 * command submission.
1780 *
1781 * @dev_priv. Pointer to a device private structure.
1782 * @buf: The buffer object
1783 * @interruptible: Whether to perform waits as interruptible.
1784 * @validate_as_mob: Whether the buffer should be validated as a MOB. If false,
1785 * The buffer will be validated as a GMR. Already pinned buffers will not be
1786 * validated.
1787 *
1788 * Returns 0 on success, negative error code on failure, -ERESTARTSYS if
1789 * interrupted by a signal.
1790 */
1791int vmw_kms_helper_buffer_prepare(struct vmw_private *dev_priv,
1792 struct vmw_dma_buffer *buf,
1793 bool interruptible,
1794 bool validate_as_mob)
1795{
1796 struct ttm_buffer_object *bo = &buf->base;
1797 int ret;
1798
Thomas Hellstromb9eb1a62015-04-02 02:39:45 -07001799 ttm_bo_reserve(bo, false, false, interruptible, NULL);
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07001800 ret = vmw_validate_single_buffer(dev_priv, bo, interruptible,
1801 validate_as_mob);
1802 if (ret)
1803 ttm_bo_unreserve(bo);
1804
1805 return ret;
1806}
1807
1808/**
1809 * vmw_kms_helper_buffer_revert - Undo the actions of
1810 * vmw_kms_helper_buffer_prepare.
1811 *
1812 * @res: Pointer to the buffer object.
1813 *
1814 * Helper to be used if an error forces the caller to undo the actions of
1815 * vmw_kms_helper_buffer_prepare.
1816 */
1817void vmw_kms_helper_buffer_revert(struct vmw_dma_buffer *buf)
1818{
1819 if (buf)
1820 ttm_bo_unreserve(&buf->base);
1821}
1822
1823/**
1824 * vmw_kms_helper_buffer_finish - Unreserve and fence a buffer object after
1825 * kms command submission.
1826 *
1827 * @dev_priv: Pointer to a device private structure.
1828 * @file_priv: Pointer to a struct drm_file representing the caller's
1829 * connection. Must be set to NULL if @user_fence_rep is NULL, and conversely
1830 * if non-NULL, @user_fence_rep must be non-NULL.
1831 * @buf: The buffer object.
1832 * @out_fence: Optional pointer to a fence pointer. If non-NULL, a
1833 * ref-counted fence pointer is returned here.
1834 * @user_fence_rep: Optional pointer to a user-space provided struct
1835 * drm_vmw_fence_rep. If provided, @file_priv must also be provided and the
1836 * function copies fence data to user-space in a fail-safe manner.
1837 */
1838void vmw_kms_helper_buffer_finish(struct vmw_private *dev_priv,
1839 struct drm_file *file_priv,
1840 struct vmw_dma_buffer *buf,
1841 struct vmw_fence_obj **out_fence,
1842 struct drm_vmw_fence_rep __user *
1843 user_fence_rep)
1844{
1845 struct vmw_fence_obj *fence;
1846 uint32_t handle;
1847 int ret;
1848
1849 ret = vmw_execbuf_fence_commands(file_priv, dev_priv, &fence,
1850 file_priv ? &handle : NULL);
1851 if (buf)
1852 vmw_fence_single_bo(&buf->base, fence);
1853 if (file_priv)
1854 vmw_execbuf_copy_fence_user(dev_priv, vmw_fpriv(file_priv),
1855 ret, user_fence_rep, fence,
1856 handle);
1857 if (out_fence)
1858 *out_fence = fence;
1859 else
1860 vmw_fence_obj_unreference(&fence);
1861
1862 vmw_kms_helper_buffer_revert(buf);
1863}
1864
1865
1866/**
1867 * vmw_kms_helper_resource_revert - Undo the actions of
1868 * vmw_kms_helper_resource_prepare.
1869 *
1870 * @res: Pointer to the resource. Typically a surface.
1871 *
1872 * Helper to be used if an error forces the caller to undo the actions of
1873 * vmw_kms_helper_resource_prepare.
1874 */
1875void vmw_kms_helper_resource_revert(struct vmw_resource *res)
1876{
1877 vmw_kms_helper_buffer_revert(res->backup);
Thomas Hellstromd80efd52015-08-10 10:39:35 -07001878 vmw_resource_unreserve(res, false, NULL, 0);
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07001879 mutex_unlock(&res->dev_priv->cmdbuf_mutex);
1880}
1881
1882/**
1883 * vmw_kms_helper_resource_prepare - Reserve and validate a resource before
1884 * command submission.
1885 *
1886 * @res: Pointer to the resource. Typically a surface.
1887 * @interruptible: Whether to perform waits as interruptible.
1888 *
1889 * Reserves and validates also the backup buffer if a guest-backed resource.
1890 * Returns 0 on success, negative error code on failure. -ERESTARTSYS if
1891 * interrupted by a signal.
1892 */
1893int vmw_kms_helper_resource_prepare(struct vmw_resource *res,
1894 bool interruptible)
1895{
1896 int ret = 0;
1897
1898 if (interruptible)
1899 ret = mutex_lock_interruptible(&res->dev_priv->cmdbuf_mutex);
1900 else
1901 mutex_lock(&res->dev_priv->cmdbuf_mutex);
1902
1903 if (unlikely(ret != 0))
1904 return -ERESTARTSYS;
1905
1906 ret = vmw_resource_reserve(res, interruptible, false);
1907 if (ret)
1908 goto out_unlock;
1909
1910 if (res->backup) {
1911 ret = vmw_kms_helper_buffer_prepare(res->dev_priv, res->backup,
1912 interruptible,
1913 res->dev_priv->has_mob);
1914 if (ret)
1915 goto out_unreserve;
1916 }
1917 ret = vmw_resource_validate(res);
1918 if (ret)
1919 goto out_revert;
1920 return 0;
1921
1922out_revert:
1923 vmw_kms_helper_buffer_revert(res->backup);
1924out_unreserve:
Thomas Hellstromd80efd52015-08-10 10:39:35 -07001925 vmw_resource_unreserve(res, false, NULL, 0);
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07001926out_unlock:
1927 mutex_unlock(&res->dev_priv->cmdbuf_mutex);
1928 return ret;
1929}
1930
1931/**
1932 * vmw_kms_helper_resource_finish - Unreserve and fence a resource after
1933 * kms command submission.
1934 *
1935 * @res: Pointer to the resource. Typically a surface.
1936 * @out_fence: Optional pointer to a fence pointer. If non-NULL, a
1937 * ref-counted fence pointer is returned here.
1938 */
1939void vmw_kms_helper_resource_finish(struct vmw_resource *res,
1940 struct vmw_fence_obj **out_fence)
1941{
1942 if (res->backup || out_fence)
1943 vmw_kms_helper_buffer_finish(res->dev_priv, NULL, res->backup,
1944 out_fence, NULL);
1945
Thomas Hellstromd80efd52015-08-10 10:39:35 -07001946 vmw_resource_unreserve(res, false, NULL, 0);
Thomas Hellstrom1a4b1722015-06-26 02:03:53 -07001947 mutex_unlock(&res->dev_priv->cmdbuf_mutex);
1948}
Thomas Hellstrom6bf6bf02015-06-26 02:22:40 -07001949
1950/**
1951 * vmw_kms_update_proxy - Helper function to update a proxy surface from
1952 * its backing MOB.
1953 *
1954 * @res: Pointer to the surface resource
1955 * @clips: Clip rects in framebuffer (surface) space.
1956 * @num_clips: Number of clips in @clips.
1957 * @increment: Integer with which to increment the clip counter when looping.
1958 * Used to skip a predetermined number of clip rects.
1959 *
1960 * This function makes sure the proxy surface is updated from its backing MOB
1961 * using the region given by @clips. The surface resource @res and its backing
1962 * MOB needs to be reserved and validated on call.
1963 */
1964int vmw_kms_update_proxy(struct vmw_resource *res,
1965 const struct drm_clip_rect *clips,
1966 unsigned num_clips,
1967 int increment)
1968{
1969 struct vmw_private *dev_priv = res->dev_priv;
1970 struct drm_vmw_size *size = &vmw_res_to_srf(res)->base_size;
1971 struct {
1972 SVGA3dCmdHeader header;
1973 SVGA3dCmdUpdateGBImage body;
1974 } *cmd;
1975 SVGA3dBox *box;
1976 size_t copy_size = 0;
1977 int i;
1978
1979 if (!clips)
1980 return 0;
1981
1982 cmd = vmw_fifo_reserve(dev_priv, sizeof(*cmd) * num_clips);
1983 if (!cmd) {
1984 DRM_ERROR("Couldn't reserve fifo space for proxy surface "
1985 "update.\n");
1986 return -ENOMEM;
1987 }
1988
1989 for (i = 0; i < num_clips; ++i, clips += increment, ++cmd) {
1990 box = &cmd->body.box;
1991
1992 cmd->header.id = SVGA_3D_CMD_UPDATE_GB_IMAGE;
1993 cmd->header.size = sizeof(cmd->body);
1994 cmd->body.image.sid = res->id;
1995 cmd->body.image.face = 0;
1996 cmd->body.image.mipmap = 0;
1997
1998 if (clips->x1 > size->width || clips->x2 > size->width ||
1999 clips->y1 > size->height || clips->y2 > size->height) {
2000 DRM_ERROR("Invalid clips outsize of framebuffer.\n");
2001 return -EINVAL;
2002 }
2003
2004 box->x = clips->x1;
2005 box->y = clips->y1;
2006 box->z = 0;
2007 box->w = clips->x2 - clips->x1;
2008 box->h = clips->y2 - clips->y1;
2009 box->d = 1;
2010
2011 copy_size += sizeof(*cmd);
2012 }
2013
2014 vmw_fifo_commit(dev_priv, copy_size);
2015
2016 return 0;
2017}
Thomas Hellstroma2787242015-06-29 12:55:07 -07002018
2019int vmw_kms_fbdev_init_data(struct vmw_private *dev_priv,
2020 unsigned unit,
2021 u32 max_width,
2022 u32 max_height,
2023 struct drm_connector **p_con,
2024 struct drm_crtc **p_crtc,
2025 struct drm_display_mode **p_mode)
2026{
2027 struct drm_connector *con;
2028 struct vmw_display_unit *du;
2029 struct drm_display_mode *mode;
2030 int i = 0;
2031
2032 list_for_each_entry(con, &dev_priv->dev->mode_config.connector_list,
2033 head) {
2034 if (i == unit)
2035 break;
2036
2037 ++i;
2038 }
2039
2040 if (i != unit) {
2041 DRM_ERROR("Could not find initial display unit.\n");
2042 return -EINVAL;
2043 }
2044
2045 if (list_empty(&con->modes))
2046 (void) vmw_du_connector_fill_modes(con, max_width, max_height);
2047
2048 if (list_empty(&con->modes)) {
2049 DRM_ERROR("Could not find initial display mode.\n");
2050 return -EINVAL;
2051 }
2052
2053 du = vmw_connector_to_du(con);
2054 *p_con = con;
2055 *p_crtc = &du->crtc;
2056
2057 list_for_each_entry(mode, &con->modes, head) {
2058 if (mode->type & DRM_MODE_TYPE_PREFERRED)
2059 break;
2060 }
2061
2062 if (mode->type & DRM_MODE_TYPE_PREFERRED)
2063 *p_mode = mode;
2064 else {
2065 WARN_ONCE(true, "Could not find initial preferred mode.\n");
2066 *p_mode = list_first_entry(&con->modes,
2067 struct drm_display_mode,
2068 head);
2069 }
2070
2071 return 0;
2072}