blob: c14eb764e096dec24c2096c5595f6723ff62cec0 [file] [log] [blame]
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001/**************************************************************************
2 *
3 * Copyright © 2009 VMware, Inc., Palo Alto, CA., USA
4 * 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
30/* Might need a hrtimer here? */
31#define VMWGFX_PRESENT_RATE ((HZ / 60 > 0) ? HZ / 60 : 1)
32
Thomas Hellstrom22ee8612010-05-28 11:22:00 +020033static int vmw_surface_dmabuf_pin(struct vmw_framebuffer *vfb);
34static int vmw_surface_dmabuf_unpin(struct vmw_framebuffer *vfb);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000035
36void vmw_display_unit_cleanup(struct vmw_display_unit *du)
37{
38 if (du->cursor_surface)
39 vmw_surface_unreference(&du->cursor_surface);
40 if (du->cursor_dmabuf)
41 vmw_dmabuf_unreference(&du->cursor_dmabuf);
42 drm_crtc_cleanup(&du->crtc);
43 drm_encoder_cleanup(&du->encoder);
44 drm_connector_cleanup(&du->connector);
45}
46
47/*
48 * Display Unit Cursor functions
49 */
50
51int vmw_cursor_update_image(struct vmw_private *dev_priv,
52 u32 *image, u32 width, u32 height,
53 u32 hotspotX, u32 hotspotY)
54{
55 struct {
56 u32 cmd;
57 SVGAFifoCmdDefineAlphaCursor cursor;
58 } *cmd;
59 u32 image_size = width * height * 4;
60 u32 cmd_size = sizeof(*cmd) + image_size;
61
62 if (!image)
63 return -EINVAL;
64
65 cmd = vmw_fifo_reserve(dev_priv, cmd_size);
66 if (unlikely(cmd == NULL)) {
67 DRM_ERROR("Fifo reserve failed.\n");
68 return -ENOMEM;
69 }
70
71 memset(cmd, 0, sizeof(*cmd));
72
73 memcpy(&cmd[1], image, image_size);
74
75 cmd->cmd = cpu_to_le32(SVGA_CMD_DEFINE_ALPHA_CURSOR);
76 cmd->cursor.id = cpu_to_le32(0);
77 cmd->cursor.width = cpu_to_le32(width);
78 cmd->cursor.height = cpu_to_le32(height);
79 cmd->cursor.hotspotX = cpu_to_le32(hotspotX);
80 cmd->cursor.hotspotY = cpu_to_le32(hotspotY);
81
82 vmw_fifo_commit(dev_priv, cmd_size);
83
84 return 0;
85}
86
87void vmw_cursor_update_position(struct vmw_private *dev_priv,
88 bool show, int x, int y)
89{
90 __le32 __iomem *fifo_mem = dev_priv->mmio_virt;
91 uint32_t count;
92
93 iowrite32(show ? 1 : 0, fifo_mem + SVGA_FIFO_CURSOR_ON);
94 iowrite32(x, fifo_mem + SVGA_FIFO_CURSOR_X);
95 iowrite32(y, fifo_mem + SVGA_FIFO_CURSOR_Y);
96 count = ioread32(fifo_mem + SVGA_FIFO_CURSOR_COUNT);
97 iowrite32(++count, fifo_mem + SVGA_FIFO_CURSOR_COUNT);
98}
99
100int vmw_du_crtc_cursor_set(struct drm_crtc *crtc, struct drm_file *file_priv,
101 uint32_t handle, uint32_t width, uint32_t height)
102{
103 struct vmw_private *dev_priv = vmw_priv(crtc->dev);
104 struct ttm_object_file *tfile = vmw_fpriv(file_priv)->tfile;
105 struct vmw_display_unit *du = vmw_crtc_to_du(crtc);
106 struct vmw_surface *surface = NULL;
107 struct vmw_dma_buffer *dmabuf = NULL;
108 int ret;
109
110 if (handle) {
Thomas Hellstrom7a73ba72009-12-22 16:53:41 +0100111 ret = vmw_user_surface_lookup_handle(dev_priv, tfile,
112 handle, &surface);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000113 if (!ret) {
114 if (!surface->snooper.image) {
115 DRM_ERROR("surface not suitable for cursor\n");
116 return -EINVAL;
117 }
118 } else {
119 ret = vmw_user_dmabuf_lookup(tfile,
120 handle, &dmabuf);
121 if (ret) {
122 DRM_ERROR("failed to find surface or dmabuf: %i\n", ret);
123 return -EINVAL;
124 }
125 }
126 }
127
128 /* takedown old cursor */
129 if (du->cursor_surface) {
130 du->cursor_surface->snooper.crtc = NULL;
131 vmw_surface_unreference(&du->cursor_surface);
132 }
133 if (du->cursor_dmabuf)
134 vmw_dmabuf_unreference(&du->cursor_dmabuf);
135
136 /* setup new image */
137 if (surface) {
138 /* vmw_user_surface_lookup takes one reference */
139 du->cursor_surface = surface;
140
141 du->cursor_surface->snooper.crtc = crtc;
142 du->cursor_age = du->cursor_surface->snooper.age;
143 vmw_cursor_update_image(dev_priv, surface->snooper.image,
144 64, 64, du->hotspot_x, du->hotspot_y);
145 } else if (dmabuf) {
146 struct ttm_bo_kmap_obj map;
147 unsigned long kmap_offset;
148 unsigned long kmap_num;
149 void *virtual;
150 bool dummy;
151
152 /* vmw_user_surface_lookup takes one reference */
153 du->cursor_dmabuf = dmabuf;
154
155 kmap_offset = 0;
156 kmap_num = (64*64*4) >> PAGE_SHIFT;
157
158 ret = ttm_bo_reserve(&dmabuf->base, true, false, false, 0);
159 if (unlikely(ret != 0)) {
160 DRM_ERROR("reserve failed\n");
161 return -EINVAL;
162 }
163
164 ret = ttm_bo_kmap(&dmabuf->base, kmap_offset, kmap_num, &map);
165 if (unlikely(ret != 0))
166 goto err_unreserve;
167
168 virtual = ttm_kmap_obj_virtual(&map, &dummy);
169 vmw_cursor_update_image(dev_priv, virtual, 64, 64,
170 du->hotspot_x, du->hotspot_y);
171
172 ttm_bo_kunmap(&map);
173err_unreserve:
174 ttm_bo_unreserve(&dmabuf->base);
175
176 } else {
177 vmw_cursor_update_position(dev_priv, false, 0, 0);
178 return 0;
179 }
180
181 vmw_cursor_update_position(dev_priv, true, du->cursor_x, du->cursor_y);
182
183 return 0;
184}
185
186int vmw_du_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
187{
188 struct vmw_private *dev_priv = vmw_priv(crtc->dev);
189 struct vmw_display_unit *du = vmw_crtc_to_du(crtc);
190 bool shown = du->cursor_surface || du->cursor_dmabuf ? true : false;
191
192 du->cursor_x = x + crtc->x;
193 du->cursor_y = y + crtc->y;
194
195 vmw_cursor_update_position(dev_priv, shown,
196 du->cursor_x, du->cursor_y);
197
198 return 0;
199}
200
201void vmw_kms_cursor_snoop(struct vmw_surface *srf,
202 struct ttm_object_file *tfile,
203 struct ttm_buffer_object *bo,
204 SVGA3dCmdHeader *header)
205{
206 struct ttm_bo_kmap_obj map;
207 unsigned long kmap_offset;
208 unsigned long kmap_num;
209 SVGA3dCopyBox *box;
210 unsigned box_count;
211 void *virtual;
212 bool dummy;
213 struct vmw_dma_cmd {
214 SVGA3dCmdHeader header;
215 SVGA3dCmdSurfaceDMA dma;
216 } *cmd;
217 int ret;
218
219 cmd = container_of(header, struct vmw_dma_cmd, header);
220
221 /* No snooper installed */
222 if (!srf->snooper.image)
223 return;
224
225 if (cmd->dma.host.face != 0 || cmd->dma.host.mipmap != 0) {
226 DRM_ERROR("face and mipmap for cursors should never != 0\n");
227 return;
228 }
229
230 if (cmd->header.size < 64) {
231 DRM_ERROR("at least one full copy box must be given\n");
232 return;
233 }
234
235 box = (SVGA3dCopyBox *)&cmd[1];
236 box_count = (cmd->header.size - sizeof(SVGA3dCmdSurfaceDMA)) /
237 sizeof(SVGA3dCopyBox);
238
239 if (cmd->dma.guest.pitch != (64 * 4) ||
240 cmd->dma.guest.ptr.offset % PAGE_SIZE ||
241 box->x != 0 || box->y != 0 || box->z != 0 ||
242 box->srcx != 0 || box->srcy != 0 || box->srcz != 0 ||
243 box->w != 64 || box->h != 64 || box->d != 1 ||
244 box_count != 1) {
245 /* TODO handle none page aligned offsets */
246 /* TODO handle partial uploads and pitch != 256 */
247 /* TODO handle more then one copy (size != 64) */
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300248 DRM_ERROR("lazy programmer, can't handle weird stuff\n");
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000249 return;
250 }
251
252 kmap_offset = cmd->dma.guest.ptr.offset >> PAGE_SHIFT;
253 kmap_num = (64*64*4) >> PAGE_SHIFT;
254
255 ret = ttm_bo_reserve(bo, true, false, false, 0);
256 if (unlikely(ret != 0)) {
257 DRM_ERROR("reserve failed\n");
258 return;
259 }
260
261 ret = ttm_bo_kmap(bo, kmap_offset, kmap_num, &map);
262 if (unlikely(ret != 0))
263 goto err_unreserve;
264
265 virtual = ttm_kmap_obj_virtual(&map, &dummy);
266
267 memcpy(srf->snooper.image, virtual, 64*64*4);
268 srf->snooper.age++;
269
270 /* we can't call this function from this function since execbuf has
271 * reserved fifo space.
272 *
273 * if (srf->snooper.crtc)
274 * vmw_ldu_crtc_cursor_update_image(dev_priv,
275 * srf->snooper.image, 64, 64,
276 * du->hotspot_x, du->hotspot_y);
277 */
278
279 ttm_bo_kunmap(&map);
280err_unreserve:
281 ttm_bo_unreserve(bo);
282}
283
284void vmw_kms_cursor_post_execbuf(struct vmw_private *dev_priv)
285{
286 struct drm_device *dev = dev_priv->dev;
287 struct vmw_display_unit *du;
288 struct drm_crtc *crtc;
289
290 mutex_lock(&dev->mode_config.mutex);
291
292 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
293 du = vmw_crtc_to_du(crtc);
294 if (!du->cursor_surface ||
295 du->cursor_age == du->cursor_surface->snooper.age)
296 continue;
297
298 du->cursor_age = du->cursor_surface->snooper.age;
299 vmw_cursor_update_image(dev_priv,
300 du->cursor_surface->snooper.image,
301 64, 64, du->hotspot_x, du->hotspot_y);
302 }
303
304 mutex_unlock(&dev->mode_config.mutex);
305}
306
307/*
308 * Generic framebuffer code
309 */
310
311int vmw_framebuffer_create_handle(struct drm_framebuffer *fb,
312 struct drm_file *file_priv,
313 unsigned int *handle)
314{
315 if (handle)
316 handle = 0;
317
318 return 0;
319}
320
321/*
322 * Surface framebuffer code
323 */
324
325#define vmw_framebuffer_to_vfbs(x) \
326 container_of(x, struct vmw_framebuffer_surface, base.base)
327
328struct vmw_framebuffer_surface {
329 struct vmw_framebuffer base;
330 struct vmw_surface *surface;
Thomas Hellstrom22ee8612010-05-28 11:22:00 +0200331 struct vmw_dma_buffer *buffer;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000332 struct delayed_work d_work;
333 struct mutex work_lock;
334 bool present_fs;
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200335 struct list_head head;
336 struct drm_master *master;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000337};
338
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200339/**
340 * vmw_kms_idle_workqueues - Flush workqueues on this master
341 *
342 * @vmaster - Pointer identifying the master, for the surfaces of which
343 * we idle the dirty work queues.
344 *
345 * This function should be called with the ttm lock held in exclusive mode
346 * to idle all dirty work queues before the fifo is taken down.
347 *
348 * The work task may actually requeue itself, but after the flush returns we're
349 * sure that there's nothing to present, since the ttm lock is held in
350 * exclusive mode, so the fifo will never get used.
351 */
352
353void vmw_kms_idle_workqueues(struct vmw_master *vmaster)
354{
355 struct vmw_framebuffer_surface *entry;
356
357 mutex_lock(&vmaster->fb_surf_mutex);
358 list_for_each_entry(entry, &vmaster->fb_surf, head) {
359 if (cancel_delayed_work_sync(&entry->d_work))
360 (void) entry->d_work.work.func(&entry->d_work.work);
361
362 (void) cancel_delayed_work_sync(&entry->d_work);
363 }
364 mutex_unlock(&vmaster->fb_surf_mutex);
365}
366
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000367void vmw_framebuffer_surface_destroy(struct drm_framebuffer *framebuffer)
368{
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200369 struct vmw_framebuffer_surface *vfbs =
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000370 vmw_framebuffer_to_vfbs(framebuffer);
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200371 struct vmw_master *vmaster = vmw_master(vfbs->master);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000372
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200373
374 mutex_lock(&vmaster->fb_surf_mutex);
375 list_del(&vfbs->head);
376 mutex_unlock(&vmaster->fb_surf_mutex);
377
378 cancel_delayed_work_sync(&vfbs->d_work);
379 drm_master_put(&vfbs->master);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000380 drm_framebuffer_cleanup(framebuffer);
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200381 vmw_surface_unreference(&vfbs->surface);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000382
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200383 kfree(vfbs);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000384}
385
386static void vmw_framebuffer_present_fs_callback(struct work_struct *work)
387{
388 struct delayed_work *d_work =
389 container_of(work, struct delayed_work, work);
390 struct vmw_framebuffer_surface *vfbs =
391 container_of(d_work, struct vmw_framebuffer_surface, d_work);
392 struct vmw_surface *surf = vfbs->surface;
393 struct drm_framebuffer *framebuffer = &vfbs->base.base;
394 struct vmw_private *dev_priv = vmw_priv(framebuffer->dev);
395
396 struct {
397 SVGA3dCmdHeader header;
398 SVGA3dCmdPresent body;
399 SVGA3dCopyRect cr;
400 } *cmd;
401
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200402 /**
403 * Strictly we should take the ttm_lock in read mode before accessing
404 * the fifo, to make sure the fifo is present and up. However,
405 * instead we flush all workqueues under the ttm lock in exclusive mode
406 * before taking down the fifo.
407 */
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000408 mutex_lock(&vfbs->work_lock);
409 if (!vfbs->present_fs)
410 goto out_unlock;
411
412 cmd = vmw_fifo_reserve(dev_priv, sizeof(*cmd));
413 if (unlikely(cmd == NULL))
414 goto out_resched;
415
416 cmd->header.id = cpu_to_le32(SVGA_3D_CMD_PRESENT);
417 cmd->header.size = cpu_to_le32(sizeof(cmd->body) + sizeof(cmd->cr));
418 cmd->body.sid = cpu_to_le32(surf->res.id);
419 cmd->cr.x = cpu_to_le32(0);
420 cmd->cr.y = cpu_to_le32(0);
421 cmd->cr.srcx = cmd->cr.x;
422 cmd->cr.srcy = cmd->cr.y;
423 cmd->cr.w = cpu_to_le32(framebuffer->width);
424 cmd->cr.h = cpu_to_le32(framebuffer->height);
425 vfbs->present_fs = false;
426 vmw_fifo_commit(dev_priv, sizeof(*cmd));
427out_resched:
428 /**
429 * Will not re-add if already pending.
430 */
431 schedule_delayed_work(&vfbs->d_work, VMWGFX_PRESENT_RATE);
432out_unlock:
433 mutex_unlock(&vfbs->work_lock);
434}
435
436
437int vmw_framebuffer_surface_dirty(struct drm_framebuffer *framebuffer,
Thomas Hellstrom02b00162010-10-05 12:43:02 +0200438 struct drm_file *file_priv,
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000439 unsigned flags, unsigned color,
440 struct drm_clip_rect *clips,
441 unsigned num_clips)
442{
443 struct vmw_private *dev_priv = vmw_priv(framebuffer->dev);
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200444 struct vmw_master *vmaster = vmw_master(file_priv->master);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000445 struct vmw_framebuffer_surface *vfbs =
446 vmw_framebuffer_to_vfbs(framebuffer);
447 struct vmw_surface *surf = vfbs->surface;
448 struct drm_clip_rect norect;
449 SVGA3dCopyRect *cr;
450 int i, inc = 1;
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200451 int ret;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000452
453 struct {
454 SVGA3dCmdHeader header;
455 SVGA3dCmdPresent body;
456 SVGA3dCopyRect cr;
457 } *cmd;
458
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200459 if (unlikely(vfbs->master != file_priv->master))
460 return -EINVAL;
461
462 ret = ttm_read_lock(&vmaster->lock, true);
463 if (unlikely(ret != 0))
464 return ret;
465
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000466 if (!num_clips ||
467 !(dev_priv->fifo.capabilities &
468 SVGA_FIFO_CAP_SCREEN_OBJECT)) {
469 int ret;
470
471 mutex_lock(&vfbs->work_lock);
472 vfbs->present_fs = true;
473 ret = schedule_delayed_work(&vfbs->d_work, VMWGFX_PRESENT_RATE);
474 mutex_unlock(&vfbs->work_lock);
475 if (ret) {
476 /**
477 * No work pending, Force immediate present.
478 */
479 vmw_framebuffer_present_fs_callback(&vfbs->d_work.work);
480 }
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200481 ttm_read_unlock(&vmaster->lock);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000482 return 0;
483 }
484
485 if (!num_clips) {
486 num_clips = 1;
487 clips = &norect;
488 norect.x1 = norect.y1 = 0;
489 norect.x2 = framebuffer->width;
490 norect.y2 = framebuffer->height;
491 } else if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY) {
492 num_clips /= 2;
493 inc = 2; /* skip source rects */
494 }
495
496 cmd = vmw_fifo_reserve(dev_priv, sizeof(*cmd) + (num_clips - 1) * sizeof(cmd->cr));
497 if (unlikely(cmd == NULL)) {
498 DRM_ERROR("Fifo reserve failed.\n");
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200499 ttm_read_unlock(&vmaster->lock);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000500 return -ENOMEM;
501 }
502
503 memset(cmd, 0, sizeof(*cmd));
504
505 cmd->header.id = cpu_to_le32(SVGA_3D_CMD_PRESENT);
506 cmd->header.size = cpu_to_le32(sizeof(cmd->body) + num_clips * sizeof(cmd->cr));
507 cmd->body.sid = cpu_to_le32(surf->res.id);
508
509 for (i = 0, cr = &cmd->cr; i < num_clips; i++, cr++, clips += inc) {
510 cr->x = cpu_to_le16(clips->x1);
511 cr->y = cpu_to_le16(clips->y1);
512 cr->srcx = cr->x;
513 cr->srcy = cr->y;
514 cr->w = cpu_to_le16(clips->x2 - clips->x1);
515 cr->h = cpu_to_le16(clips->y2 - clips->y1);
516 }
517
518 vmw_fifo_commit(dev_priv, sizeof(*cmd) + (num_clips - 1) * sizeof(cmd->cr));
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200519 ttm_read_unlock(&vmaster->lock);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000520 return 0;
521}
522
523static struct drm_framebuffer_funcs vmw_framebuffer_surface_funcs = {
524 .destroy = vmw_framebuffer_surface_destroy,
525 .dirty = vmw_framebuffer_surface_dirty,
526 .create_handle = vmw_framebuffer_create_handle,
527};
528
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200529static int vmw_kms_new_framebuffer_surface(struct vmw_private *dev_priv,
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200530 struct drm_file *file_priv,
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200531 struct vmw_surface *surface,
532 struct vmw_framebuffer **out,
533 const struct drm_mode_fb_cmd
534 *mode_cmd)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000535
536{
537 struct drm_device *dev = dev_priv->dev;
538 struct vmw_framebuffer_surface *vfbs;
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200539 enum SVGA3dSurfaceFormat format;
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200540 struct vmw_master *vmaster = vmw_master(file_priv->master);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000541 int ret;
542
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200543 /*
544 * Sanity checks.
545 */
546
547 if (unlikely(surface->mip_levels[0] != 1 ||
548 surface->num_sizes != 1 ||
549 surface->sizes[0].width < mode_cmd->width ||
550 surface->sizes[0].height < mode_cmd->height ||
551 surface->sizes[0].depth != 1)) {
552 DRM_ERROR("Incompatible surface dimensions "
553 "for requested mode.\n");
554 return -EINVAL;
555 }
556
557 switch (mode_cmd->depth) {
558 case 32:
559 format = SVGA3D_A8R8G8B8;
560 break;
561 case 24:
562 format = SVGA3D_X8R8G8B8;
563 break;
564 case 16:
565 format = SVGA3D_R5G6B5;
566 break;
567 case 15:
568 format = SVGA3D_A1R5G5B5;
569 break;
Michel Dänzerf01b7ba2011-08-31 07:42:47 +0000570 case 8:
571 format = SVGA3D_LUMINANCE8;
572 break;
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200573 default:
574 DRM_ERROR("Invalid color depth: %d\n", mode_cmd->depth);
575 return -EINVAL;
576 }
577
578 if (unlikely(format != surface->format)) {
579 DRM_ERROR("Invalid surface format for requested mode.\n");
580 return -EINVAL;
581 }
582
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000583 vfbs = kzalloc(sizeof(*vfbs), GFP_KERNEL);
584 if (!vfbs) {
585 ret = -ENOMEM;
586 goto out_err1;
587 }
588
589 ret = drm_framebuffer_init(dev, &vfbs->base.base,
590 &vmw_framebuffer_surface_funcs);
591 if (ret)
592 goto out_err2;
593
594 if (!vmw_surface_reference(surface)) {
595 DRM_ERROR("failed to reference surface %p\n", surface);
596 goto out_err3;
597 }
598
599 /* XXX get the first 3 from the surface info */
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200600 vfbs->base.base.bits_per_pixel = mode_cmd->bpp;
601 vfbs->base.base.pitch = mode_cmd->pitch;
602 vfbs->base.base.depth = mode_cmd->depth;
603 vfbs->base.base.width = mode_cmd->width;
604 vfbs->base.base.height = mode_cmd->height;
Thomas Hellstrom22ee8612010-05-28 11:22:00 +0200605 vfbs->base.pin = &vmw_surface_dmabuf_pin;
606 vfbs->base.unpin = &vmw_surface_dmabuf_unpin;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000607 vfbs->surface = surface;
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200608 vfbs->master = drm_master_get(file_priv->master);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000609 mutex_init(&vfbs->work_lock);
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200610
611 mutex_lock(&vmaster->fb_surf_mutex);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000612 INIT_DELAYED_WORK(&vfbs->d_work, &vmw_framebuffer_present_fs_callback);
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200613 list_add_tail(&vfbs->head, &vmaster->fb_surf);
614 mutex_unlock(&vmaster->fb_surf_mutex);
615
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000616 *out = &vfbs->base;
617
618 return 0;
619
620out_err3:
621 drm_framebuffer_cleanup(&vfbs->base.base);
622out_err2:
623 kfree(vfbs);
624out_err1:
625 return ret;
626}
627
628/*
629 * Dmabuf framebuffer code
630 */
631
632#define vmw_framebuffer_to_vfbd(x) \
633 container_of(x, struct vmw_framebuffer_dmabuf, base.base)
634
635struct vmw_framebuffer_dmabuf {
636 struct vmw_framebuffer base;
637 struct vmw_dma_buffer *buffer;
638};
639
640void vmw_framebuffer_dmabuf_destroy(struct drm_framebuffer *framebuffer)
641{
642 struct vmw_framebuffer_dmabuf *vfbd =
643 vmw_framebuffer_to_vfbd(framebuffer);
644
645 drm_framebuffer_cleanup(framebuffer);
646 vmw_dmabuf_unreference(&vfbd->buffer);
647
648 kfree(vfbd);
649}
650
651int vmw_framebuffer_dmabuf_dirty(struct drm_framebuffer *framebuffer,
Thomas Hellstrom02b00162010-10-05 12:43:02 +0200652 struct drm_file *file_priv,
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000653 unsigned flags, unsigned color,
654 struct drm_clip_rect *clips,
655 unsigned num_clips)
656{
657 struct vmw_private *dev_priv = vmw_priv(framebuffer->dev);
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200658 struct vmw_master *vmaster = vmw_master(file_priv->master);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000659 struct drm_clip_rect norect;
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200660 int ret;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000661 struct {
662 uint32_t header;
663 SVGAFifoCmdUpdate body;
664 } *cmd;
665 int i, increment = 1;
666
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200667 ret = ttm_read_lock(&vmaster->lock, true);
668 if (unlikely(ret != 0))
669 return ret;
670
Thomas Hellstromdf1c93b2010-01-13 22:28:36 +0100671 if (!num_clips) {
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000672 num_clips = 1;
673 clips = &norect;
674 norect.x1 = norect.y1 = 0;
675 norect.x2 = framebuffer->width;
676 norect.y2 = framebuffer->height;
677 } else if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY) {
678 num_clips /= 2;
679 increment = 2;
680 }
681
682 cmd = vmw_fifo_reserve(dev_priv, sizeof(*cmd) * num_clips);
683 if (unlikely(cmd == NULL)) {
684 DRM_ERROR("Fifo reserve failed.\n");
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200685 ttm_read_unlock(&vmaster->lock);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000686 return -ENOMEM;
687 }
688
689 for (i = 0; i < num_clips; i++, clips += increment) {
690 cmd[i].header = cpu_to_le32(SVGA_CMD_UPDATE);
Thomas Hellstromdf1c93b2010-01-13 22:28:36 +0100691 cmd[i].body.x = cpu_to_le32(clips->x1);
692 cmd[i].body.y = cpu_to_le32(clips->y1);
693 cmd[i].body.width = cpu_to_le32(clips->x2 - clips->x1);
694 cmd[i].body.height = cpu_to_le32(clips->y2 - clips->y1);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000695 }
696
697 vmw_fifo_commit(dev_priv, sizeof(*cmd) * num_clips);
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200698 ttm_read_unlock(&vmaster->lock);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000699
700 return 0;
701}
702
703static struct drm_framebuffer_funcs vmw_framebuffer_dmabuf_funcs = {
704 .destroy = vmw_framebuffer_dmabuf_destroy,
705 .dirty = vmw_framebuffer_dmabuf_dirty,
706 .create_handle = vmw_framebuffer_create_handle,
707};
708
Jakob Bornecrantz497a3ff2011-10-04 20:13:14 +0200709/**
710 * We need to reserve the start of vram because the host might
711 * scribble to it at mode changes, so we need to reserve it.
712 */
Thomas Hellstrom22ee8612010-05-28 11:22:00 +0200713static int vmw_surface_dmabuf_pin(struct vmw_framebuffer *vfb)
714{
715 struct vmw_private *dev_priv = vmw_priv(vfb->base.dev);
716 struct vmw_framebuffer_surface *vfbs =
717 vmw_framebuffer_to_vfbs(&vfb->base);
718 unsigned long size = vfbs->base.base.pitch * vfbs->base.base.height;
719 int ret;
720
721 vfbs->buffer = kzalloc(sizeof(*vfbs->buffer), GFP_KERNEL);
722 if (unlikely(vfbs->buffer == NULL))
723 return -ENOMEM;
724
725 vmw_overlay_pause_all(dev_priv);
726 ret = vmw_dmabuf_init(dev_priv, vfbs->buffer, size,
727 &vmw_vram_ne_placement,
728 false, &vmw_dmabuf_bo_free);
729 vmw_overlay_resume_all(dev_priv);
Thomas Hellstrom1ef07242010-11-02 13:21:49 +0000730 if (unlikely(ret != 0))
731 vfbs->buffer = NULL;
Thomas Hellstrom22ee8612010-05-28 11:22:00 +0200732
733 return ret;
734}
735
Jakob Bornecrantz497a3ff2011-10-04 20:13:14 +0200736/**
737 * See vmw_surface_dmabuf_pin.
738 */
Thomas Hellstrom22ee8612010-05-28 11:22:00 +0200739static int vmw_surface_dmabuf_unpin(struct vmw_framebuffer *vfb)
740{
741 struct ttm_buffer_object *bo;
742 struct vmw_framebuffer_surface *vfbs =
743 vmw_framebuffer_to_vfbs(&vfb->base);
744
Thomas Hellstrom1ef07242010-11-02 13:21:49 +0000745 if (unlikely(vfbs->buffer == NULL))
746 return 0;
747
Thomas Hellstrom22ee8612010-05-28 11:22:00 +0200748 bo = &vfbs->buffer->base;
749 ttm_bo_unref(&bo);
750 vfbs->buffer = NULL;
751
752 return 0;
753}
754
Jakob Bornecrantz497a3ff2011-10-04 20:13:14 +0200755/**
756 * Pin the dmabuffer to the start of vram.
757 */
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000758static int vmw_framebuffer_dmabuf_pin(struct vmw_framebuffer *vfb)
759{
760 struct vmw_private *dev_priv = vmw_priv(vfb->base.dev);
761 struct vmw_framebuffer_dmabuf *vfbd =
762 vmw_framebuffer_to_vfbd(&vfb->base);
763 int ret;
764
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +0200765
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000766 vmw_overlay_pause_all(dev_priv);
767
768 ret = vmw_dmabuf_to_start_of_vram(dev_priv, vfbd->buffer);
769
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000770 vmw_overlay_resume_all(dev_priv);
771
Jakob Bornecrantz316ab132010-05-28 11:22:05 +0200772 WARN_ON(ret != 0);
773
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000774 return 0;
775}
776
777static int vmw_framebuffer_dmabuf_unpin(struct vmw_framebuffer *vfb)
778{
779 struct vmw_private *dev_priv = vmw_priv(vfb->base.dev);
780 struct vmw_framebuffer_dmabuf *vfbd =
781 vmw_framebuffer_to_vfbd(&vfb->base);
782
783 if (!vfbd->buffer) {
784 WARN_ON(!vfbd->buffer);
785 return 0;
786 }
787
788 return vmw_dmabuf_from_vram(dev_priv, vfbd->buffer);
789}
790
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200791static int vmw_kms_new_framebuffer_dmabuf(struct vmw_private *dev_priv,
792 struct vmw_dma_buffer *dmabuf,
793 struct vmw_framebuffer **out,
794 const struct drm_mode_fb_cmd
795 *mode_cmd)
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000796
797{
798 struct drm_device *dev = dev_priv->dev;
799 struct vmw_framebuffer_dmabuf *vfbd;
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200800 unsigned int requested_size;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000801 int ret;
802
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200803 requested_size = mode_cmd->height * mode_cmd->pitch;
804 if (unlikely(requested_size > dmabuf->base.num_pages * PAGE_SIZE)) {
805 DRM_ERROR("Screen buffer object size is too small "
806 "for requested mode.\n");
807 return -EINVAL;
808 }
809
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000810 vfbd = kzalloc(sizeof(*vfbd), GFP_KERNEL);
811 if (!vfbd) {
812 ret = -ENOMEM;
813 goto out_err1;
814 }
815
816 ret = drm_framebuffer_init(dev, &vfbd->base.base,
817 &vmw_framebuffer_dmabuf_funcs);
818 if (ret)
819 goto out_err2;
820
821 if (!vmw_dmabuf_reference(dmabuf)) {
822 DRM_ERROR("failed to reference dmabuf %p\n", dmabuf);
823 goto out_err3;
824 }
825
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200826 vfbd->base.base.bits_per_pixel = mode_cmd->bpp;
827 vfbd->base.base.pitch = mode_cmd->pitch;
828 vfbd->base.base.depth = mode_cmd->depth;
829 vfbd->base.base.width = mode_cmd->width;
830 vfbd->base.base.height = mode_cmd->height;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000831 vfbd->base.pin = vmw_framebuffer_dmabuf_pin;
832 vfbd->base.unpin = vmw_framebuffer_dmabuf_unpin;
833 vfbd->buffer = dmabuf;
834 *out = &vfbd->base;
835
836 return 0;
837
838out_err3:
839 drm_framebuffer_cleanup(&vfbd->base.base);
840out_err2:
841 kfree(vfbd);
842out_err1:
843 return ret;
844}
845
846/*
847 * Generic Kernel modesetting functions
848 */
849
850static struct drm_framebuffer *vmw_kms_fb_create(struct drm_device *dev,
851 struct drm_file *file_priv,
852 struct drm_mode_fb_cmd *mode_cmd)
853{
854 struct vmw_private *dev_priv = vmw_priv(dev);
855 struct ttm_object_file *tfile = vmw_fpriv(file_priv)->tfile;
856 struct vmw_framebuffer *vfb = NULL;
857 struct vmw_surface *surface = NULL;
858 struct vmw_dma_buffer *bo = NULL;
Thomas Hellstrome133e732010-10-05 12:43:04 +0200859 u64 required_size;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000860 int ret;
861
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200862 /**
863 * This code should be conditioned on Screen Objects not being used.
864 * If screen objects are used, we can allocate a GMR to hold the
865 * requested framebuffer.
866 */
867
868 required_size = mode_cmd->pitch * mode_cmd->height;
Thomas Hellstrome133e732010-10-05 12:43:04 +0200869 if (unlikely(required_size > (u64) dev_priv->vram_size)) {
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200870 DRM_ERROR("VRAM size is too small for requested mode.\n");
871 return NULL;
872 }
873
874 /**
875 * End conditioned code.
876 */
877
Thomas Hellstrom7a73ba72009-12-22 16:53:41 +0100878 ret = vmw_user_surface_lookup_handle(dev_priv, tfile,
879 mode_cmd->handle, &surface);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000880 if (ret)
881 goto try_dmabuf;
882
Jakob Bornecrantz5ffdb652010-01-30 03:38:08 +0000883 if (!surface->scanout)
884 goto err_not_scanout;
885
Thomas Hellstrom3a939a52010-10-05 12:43:03 +0200886 ret = vmw_kms_new_framebuffer_surface(dev_priv, file_priv, surface,
887 &vfb, mode_cmd);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000888
889 /* vmw_user_surface_lookup takes one ref so does new_fb */
890 vmw_surface_unreference(&surface);
891
892 if (ret) {
893 DRM_ERROR("failed to create vmw_framebuffer: %i\n", ret);
Chris Wilsoncce13ff2010-08-08 13:36:38 +0100894 return ERR_PTR(ret);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000895 }
896 return &vfb->base;
897
898try_dmabuf:
899 DRM_INFO("%s: trying buffer\n", __func__);
900
901 ret = vmw_user_dmabuf_lookup(tfile, mode_cmd->handle, &bo);
902 if (ret) {
903 DRM_ERROR("failed to find buffer: %i\n", ret);
Chris Wilsoncce13ff2010-08-08 13:36:38 +0100904 return ERR_PTR(-ENOENT);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000905 }
906
907 ret = vmw_kms_new_framebuffer_dmabuf(dev_priv, bo, &vfb,
Thomas Hellstromd3216a02010-10-05 12:42:59 +0200908 mode_cmd);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000909
910 /* vmw_user_dmabuf_lookup takes one ref so does new_fb */
911 vmw_dmabuf_unreference(&bo);
912
913 if (ret) {
914 DRM_ERROR("failed to create vmw_framebuffer: %i\n", ret);
Chris Wilsoncce13ff2010-08-08 13:36:38 +0100915 return ERR_PTR(ret);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000916 }
917
918 return &vfb->base;
Jakob Bornecrantz5ffdb652010-01-30 03:38:08 +0000919
920err_not_scanout:
921 DRM_ERROR("surface not marked as scanout\n");
922 /* vmw_user_surface_lookup takes one ref */
923 vmw_surface_unreference(&surface);
924
Chris Wilsoncce13ff2010-08-08 13:36:38 +0100925 return ERR_PTR(-EINVAL);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000926}
927
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000928static struct drm_mode_config_funcs vmw_kms_funcs = {
929 .fb_create = vmw_kms_fb_create,
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000930};
931
932int vmw_kms_init(struct vmw_private *dev_priv)
933{
934 struct drm_device *dev = dev_priv->dev;
935 int ret;
936
937 drm_mode_config_init(dev);
938 dev->mode_config.funcs = &vmw_kms_funcs;
Jakob Bornecrantz3bef3572010-02-09 19:41:57 +0000939 dev->mode_config.min_width = 1;
940 dev->mode_config.min_height = 1;
Jakob Bornecrantz7e71f8a2010-05-28 11:21:54 +0200941 /* assumed largest fb size */
942 dev->mode_config.max_width = 8192;
943 dev->mode_config.max_height = 8192;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000944
945 ret = vmw_kms_init_legacy_display_system(dev_priv);
946
947 return 0;
948}
949
950int vmw_kms_close(struct vmw_private *dev_priv)
951{
952 /*
953 * Docs says we should take the lock before calling this function
954 * but since it destroys encoders and our destructor calls
955 * drm_encoder_cleanup which takes the lock we deadlock.
956 */
957 drm_mode_config_cleanup(dev_priv->dev);
958 vmw_kms_close_legacy_display_system(dev_priv);
959 return 0;
960}
961
962int vmw_kms_cursor_bypass_ioctl(struct drm_device *dev, void *data,
963 struct drm_file *file_priv)
964{
965 struct drm_vmw_cursor_bypass_arg *arg = data;
966 struct vmw_display_unit *du;
967 struct drm_mode_object *obj;
968 struct drm_crtc *crtc;
969 int ret = 0;
970
971
972 mutex_lock(&dev->mode_config.mutex);
973 if (arg->flags & DRM_VMW_CURSOR_BYPASS_ALL) {
974
975 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
976 du = vmw_crtc_to_du(crtc);
977 du->hotspot_x = arg->xhot;
978 du->hotspot_y = arg->yhot;
979 }
980
981 mutex_unlock(&dev->mode_config.mutex);
982 return 0;
983 }
984
985 obj = drm_mode_object_find(dev, arg->crtc_id, DRM_MODE_OBJECT_CRTC);
986 if (!obj) {
987 ret = -EINVAL;
988 goto out;
989 }
990
991 crtc = obj_to_crtc(obj);
992 du = vmw_crtc_to_du(crtc);
993
994 du->hotspot_x = arg->xhot;
995 du->hotspot_y = arg->yhot;
996
997out:
998 mutex_unlock(&dev->mode_config.mutex);
999
1000 return ret;
1001}
1002
Michel Dänzer0bef23f2011-08-31 07:42:50 +00001003int vmw_kms_write_svga(struct vmw_private *vmw_priv,
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +02001004 unsigned width, unsigned height, unsigned pitch,
Michel Dänzer6558429b2011-08-31 07:42:49 +00001005 unsigned bpp, unsigned depth)
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +02001006{
1007 if (vmw_priv->capabilities & SVGA_CAP_PITCHLOCK)
1008 vmw_write(vmw_priv, SVGA_REG_PITCHLOCK, pitch);
1009 else if (vmw_fifo_have_pitchlock(vmw_priv))
1010 iowrite32(pitch, vmw_priv->mmio_virt + SVGA_FIFO_PITCHLOCK);
1011 vmw_write(vmw_priv, SVGA_REG_WIDTH, width);
1012 vmw_write(vmw_priv, SVGA_REG_HEIGHT, height);
Michel Dänzer6558429b2011-08-31 07:42:49 +00001013 vmw_write(vmw_priv, SVGA_REG_BITS_PER_PIXEL, bpp);
Michel Dänzer0bef23f2011-08-31 07:42:50 +00001014
1015 if (vmw_read(vmw_priv, SVGA_REG_DEPTH) != depth) {
1016 DRM_ERROR("Invalid depth %u for %u bpp, host expects %u\n",
1017 depth, bpp, vmw_read(vmw_priv, SVGA_REG_DEPTH));
1018 return -EINVAL;
1019 }
1020
1021 return 0;
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +02001022}
1023
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001024int vmw_kms_save_vga(struct vmw_private *vmw_priv)
1025{
Thomas Hellstrom7c4f7782010-06-01 11:38:17 +02001026 struct vmw_vga_topology_state *save;
1027 uint32_t i;
1028
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001029 vmw_priv->vga_width = vmw_read(vmw_priv, SVGA_REG_WIDTH);
1030 vmw_priv->vga_height = vmw_read(vmw_priv, SVGA_REG_HEIGHT);
Thomas Hellstrom7c4f7782010-06-01 11:38:17 +02001031 vmw_priv->vga_bpp = vmw_read(vmw_priv, SVGA_REG_BITS_PER_PIXEL);
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +02001032 if (vmw_priv->capabilities & SVGA_CAP_PITCHLOCK)
1033 vmw_priv->vga_pitchlock =
Thomas Hellstrom7c4f7782010-06-01 11:38:17 +02001034 vmw_read(vmw_priv, SVGA_REG_PITCHLOCK);
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +02001035 else if (vmw_fifo_have_pitchlock(vmw_priv))
Thomas Hellstrom7c4f7782010-06-01 11:38:17 +02001036 vmw_priv->vga_pitchlock = ioread32(vmw_priv->mmio_virt +
1037 SVGA_FIFO_PITCHLOCK);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001038
Thomas Hellstrom7c4f7782010-06-01 11:38:17 +02001039 if (!(vmw_priv->capabilities & SVGA_CAP_DISPLAY_TOPOLOGY))
1040 return 0;
1041
1042 vmw_priv->num_displays = vmw_read(vmw_priv,
1043 SVGA_REG_NUM_GUEST_DISPLAYS);
1044
Thomas Hellstrom029e50b2010-10-05 12:43:08 +02001045 if (vmw_priv->num_displays == 0)
1046 vmw_priv->num_displays = 1;
1047
Thomas Hellstrom7c4f7782010-06-01 11:38:17 +02001048 for (i = 0; i < vmw_priv->num_displays; ++i) {
1049 save = &vmw_priv->vga_save[i];
1050 vmw_write(vmw_priv, SVGA_REG_DISPLAY_ID, i);
1051 save->primary = vmw_read(vmw_priv, SVGA_REG_DISPLAY_IS_PRIMARY);
1052 save->pos_x = vmw_read(vmw_priv, SVGA_REG_DISPLAY_POSITION_X);
1053 save->pos_y = vmw_read(vmw_priv, SVGA_REG_DISPLAY_POSITION_Y);
1054 save->width = vmw_read(vmw_priv, SVGA_REG_DISPLAY_WIDTH);
1055 save->height = vmw_read(vmw_priv, SVGA_REG_DISPLAY_HEIGHT);
1056 vmw_write(vmw_priv, SVGA_REG_DISPLAY_ID, SVGA_ID_INVALID);
Thomas Hellstrom30c78bb2010-10-01 10:21:48 +02001057 if (i == 0 && vmw_priv->num_displays == 1 &&
1058 save->width == 0 && save->height == 0) {
1059
1060 /*
1061 * It should be fairly safe to assume that these
1062 * values are uninitialized.
1063 */
1064
1065 save->width = vmw_priv->vga_width - save->pos_x;
1066 save->height = vmw_priv->vga_height - save->pos_y;
1067 }
Thomas Hellstrom7c4f7782010-06-01 11:38:17 +02001068 }
Thomas Hellstrom30c78bb2010-10-01 10:21:48 +02001069
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001070 return 0;
1071}
1072
1073int vmw_kms_restore_vga(struct vmw_private *vmw_priv)
1074{
Thomas Hellstrom7c4f7782010-06-01 11:38:17 +02001075 struct vmw_vga_topology_state *save;
1076 uint32_t i;
1077
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001078 vmw_write(vmw_priv, SVGA_REG_WIDTH, vmw_priv->vga_width);
1079 vmw_write(vmw_priv, SVGA_REG_HEIGHT, vmw_priv->vga_height);
Thomas Hellstrom7c4f7782010-06-01 11:38:17 +02001080 vmw_write(vmw_priv, SVGA_REG_BITS_PER_PIXEL, vmw_priv->vga_bpp);
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +02001081 if (vmw_priv->capabilities & SVGA_CAP_PITCHLOCK)
1082 vmw_write(vmw_priv, SVGA_REG_PITCHLOCK,
1083 vmw_priv->vga_pitchlock);
1084 else if (vmw_fifo_have_pitchlock(vmw_priv))
1085 iowrite32(vmw_priv->vga_pitchlock,
1086 vmw_priv->mmio_virt + SVGA_FIFO_PITCHLOCK);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001087
Thomas Hellstrom7c4f7782010-06-01 11:38:17 +02001088 if (!(vmw_priv->capabilities & SVGA_CAP_DISPLAY_TOPOLOGY))
1089 return 0;
1090
1091 for (i = 0; i < vmw_priv->num_displays; ++i) {
1092 save = &vmw_priv->vga_save[i];
1093 vmw_write(vmw_priv, SVGA_REG_DISPLAY_ID, i);
1094 vmw_write(vmw_priv, SVGA_REG_DISPLAY_IS_PRIMARY, save->primary);
1095 vmw_write(vmw_priv, SVGA_REG_DISPLAY_POSITION_X, save->pos_x);
1096 vmw_write(vmw_priv, SVGA_REG_DISPLAY_POSITION_Y, save->pos_y);
1097 vmw_write(vmw_priv, SVGA_REG_DISPLAY_WIDTH, save->width);
1098 vmw_write(vmw_priv, SVGA_REG_DISPLAY_HEIGHT, save->height);
1099 vmw_write(vmw_priv, SVGA_REG_DISPLAY_ID, SVGA_ID_INVALID);
1100 }
1101
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001102 return 0;
1103}
Jakob Bornecrantzd8bd19d2010-06-01 11:54:20 +02001104
Thomas Hellstrome133e732010-10-05 12:43:04 +02001105bool vmw_kms_validate_mode_vram(struct vmw_private *dev_priv,
1106 uint32_t pitch,
1107 uint32_t height)
1108{
1109 return ((u64) pitch * (u64) height) < (u64) dev_priv->vram_size;
1110}
1111
Thomas Hellstrom7a1c2f62010-10-01 10:21:49 +02001112u32 vmw_get_vblank_counter(struct drm_device *dev, int crtc)
1113{
1114 return 0;
1115}