blob: 9699bd174ae4ab8b89c88460559b7fb6fb2a31e7 [file] [log] [blame]
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001/**************************************************************************
2 *
3 * Copyright © 2007 David Airlie
4 * Copyright © 2009 VMware, Inc., Palo Alto, CA., USA
5 * All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the
9 * "Software"), to deal in the Software without restriction, including
10 * without limitation the rights to use, copy, modify, merge, publish,
11 * distribute, sub license, and/or sell copies of the Software, and to
12 * permit persons to whom the Software is furnished to do so, subject to
13 * the following conditions:
14 *
15 * The above copyright notice and this permission notice (including the
16 * next paragraph) shall be included in all copies or substantial portions
17 * of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
22 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
23 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
24 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
25 * USE OR OTHER DEALINGS IN THE SOFTWARE.
26 *
27 **************************************************************************/
28
Paul Gortmaker2d1a8a42011-08-30 18:16:33 -040029#include <linux/export.h>
30
David Howells760285e2012-10-02 18:01:07 +010031#include <drm/drmP.h>
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000032#include "vmwgfx_drv.h"
33
David Howells760285e2012-10-02 18:01:07 +010034#include <drm/ttm/ttm_placement.h>
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000035
36#define VMW_DIRTY_DELAY (HZ / 30)
37
38struct vmw_fb_par {
39 struct vmw_private *vmw_priv;
40
41 void *vmalloc;
42
43 struct vmw_dma_buffer *vmw_bo;
44 struct ttm_bo_kmap_obj map;
45
46 u32 pseudo_palette[17];
47
48 unsigned depth;
49 unsigned bpp;
50
51 unsigned max_width;
52 unsigned max_height;
53
54 void *bo_ptr;
55 unsigned bo_size;
56 bool bo_iowrite;
57
58 struct {
59 spinlock_t lock;
60 bool active;
61 unsigned x1;
62 unsigned y1;
63 unsigned x2;
64 unsigned y2;
65 } dirty;
66};
67
68static int vmw_fb_setcolreg(unsigned regno, unsigned red, unsigned green,
69 unsigned blue, unsigned transp,
70 struct fb_info *info)
71{
72 struct vmw_fb_par *par = info->par;
73 u32 *pal = par->pseudo_palette;
74
75 if (regno > 15) {
76 DRM_ERROR("Bad regno %u.\n", regno);
77 return 1;
78 }
79
80 switch (par->depth) {
81 case 24:
82 case 32:
83 pal[regno] = ((red & 0xff00) << 8) |
84 (green & 0xff00) |
85 ((blue & 0xff00) >> 8);
86 break;
87 default:
88 DRM_ERROR("Bad depth %u, bpp %u.\n", par->depth, par->bpp);
89 return 1;
90 }
91
92 return 0;
93}
94
95static int vmw_fb_check_var(struct fb_var_screeninfo *var,
96 struct fb_info *info)
97{
98 int depth = var->bits_per_pixel;
99 struct vmw_fb_par *par = info->par;
100 struct vmw_private *vmw_priv = par->vmw_priv;
101
102 switch (var->bits_per_pixel) {
103 case 32:
104 depth = (var->transp.length > 0) ? 32 : 24;
105 break;
106 default:
107 DRM_ERROR("Bad bpp %u.\n", var->bits_per_pixel);
108 return -EINVAL;
109 }
110
111 switch (depth) {
112 case 24:
113 var->red.offset = 16;
114 var->green.offset = 8;
115 var->blue.offset = 0;
116 var->red.length = 8;
117 var->green.length = 8;
118 var->blue.length = 8;
119 var->transp.length = 0;
120 var->transp.offset = 0;
121 break;
122 case 32:
123 var->red.offset = 16;
124 var->green.offset = 8;
125 var->blue.offset = 0;
126 var->red.length = 8;
127 var->green.length = 8;
128 var->blue.length = 8;
129 var->transp.length = 8;
130 var->transp.offset = 24;
131 break;
132 default:
133 DRM_ERROR("Bad depth %u.\n", depth);
134 return -EINVAL;
135 }
136
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +0200137 if (!(vmw_priv->capabilities & SVGA_CAP_DISPLAY_TOPOLOGY) &&
138 (var->xoffset != 0 || var->yoffset != 0)) {
139 DRM_ERROR("Can not handle panning without display topology\n");
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000140 return -EINVAL;
141 }
142
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +0200143 if ((var->xoffset + var->xres) > par->max_width ||
144 (var->yoffset + var->yres) > par->max_height) {
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000145 DRM_ERROR("Requested geom can not fit in framebuffer\n");
146 return -EINVAL;
147 }
148
Thomas Hellstrome133e732010-10-05 12:43:04 +0200149 if (!vmw_kms_validate_mode_vram(vmw_priv,
150 info->fix.line_length,
151 var->yoffset + var->yres)) {
152 DRM_ERROR("Requested geom can not fit in framebuffer\n");
153 return -EINVAL;
154 }
155
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000156 return 0;
157}
158
159static int vmw_fb_set_par(struct fb_info *info)
160{
161 struct vmw_fb_par *par = info->par;
162 struct vmw_private *vmw_priv = par->vmw_priv;
Michel Dänzer0bef23f2011-08-31 07:42:50 +0000163 int ret;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000164
Michel Dänzer0bef23f2011-08-31 07:42:50 +0000165 ret = vmw_kms_write_svga(vmw_priv, info->var.xres, info->var.yres,
166 info->fix.line_length,
167 par->bpp, par->depth);
168 if (ret)
169 return ret;
170
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +0200171 if (vmw_priv->capabilities & SVGA_CAP_DISPLAY_TOPOLOGY) {
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000172 /* TODO check if pitch and offset changes */
Jakob Bornecrantz991b7b42010-06-01 11:38:16 +0200173 vmw_write(vmw_priv, SVGA_REG_NUM_GUEST_DISPLAYS, 1);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000174 vmw_write(vmw_priv, SVGA_REG_DISPLAY_ID, 0);
175 vmw_write(vmw_priv, SVGA_REG_DISPLAY_IS_PRIMARY, true);
176 vmw_write(vmw_priv, SVGA_REG_DISPLAY_POSITION_X, info->var.xoffset);
177 vmw_write(vmw_priv, SVGA_REG_DISPLAY_POSITION_Y, info->var.yoffset);
178 vmw_write(vmw_priv, SVGA_REG_DISPLAY_WIDTH, info->var.xres);
179 vmw_write(vmw_priv, SVGA_REG_DISPLAY_HEIGHT, info->var.yres);
180 vmw_write(vmw_priv, SVGA_REG_DISPLAY_ID, SVGA_ID_INVALID);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000181 }
182
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +0200183 /* This is really helpful since if this fails the user
184 * can probably not see anything on the screen.
185 */
186 WARN_ON(vmw_read(vmw_priv, SVGA_REG_FB_OFFSET) != 0);
187
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000188 return 0;
189}
190
191static int vmw_fb_pan_display(struct fb_var_screeninfo *var,
192 struct fb_info *info)
193{
194 return 0;
195}
196
197static int vmw_fb_blank(int blank, struct fb_info *info)
198{
199 return 0;
200}
201
202/*
203 * Dirty code
204 */
205
206static void vmw_fb_dirty_flush(struct vmw_fb_par *par)
207{
208 struct vmw_private *vmw_priv = par->vmw_priv;
209 struct fb_info *info = vmw_priv->fb_info;
210 int stride = (info->fix.line_length / 4);
211 int *src = (int *)info->screen_base;
212 __le32 __iomem *vram_mem = par->bo_ptr;
213 unsigned long flags;
214 unsigned x, y, w, h;
215 int i, k;
216 struct {
217 uint32_t header;
218 SVGAFifoCmdUpdate body;
219 } *cmd;
220
Thomas Hellstrom09e26012010-10-05 12:43:05 +0200221 if (vmw_priv->suspended)
222 return;
223
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000224 spin_lock_irqsave(&par->dirty.lock, flags);
225 if (!par->dirty.active) {
226 spin_unlock_irqrestore(&par->dirty.lock, flags);
227 return;
228 }
229 x = par->dirty.x1;
230 y = par->dirty.y1;
231 w = min(par->dirty.x2, info->var.xres) - x;
232 h = min(par->dirty.y2, info->var.yres) - y;
233 par->dirty.x1 = par->dirty.x2 = 0;
234 par->dirty.y1 = par->dirty.y2 = 0;
235 spin_unlock_irqrestore(&par->dirty.lock, flags);
236
237 for (i = y * stride; i < info->fix.smem_len / 4; i += stride) {
238 for (k = i+x; k < i+x+w && k < info->fix.smem_len / 4; k++)
239 iowrite32(src[k], vram_mem + k);
240 }
241
242#if 0
243 DRM_INFO("%s, (%u, %u) (%ux%u)\n", __func__, x, y, w, h);
244#endif
245
246 cmd = vmw_fifo_reserve(vmw_priv, sizeof(*cmd));
247 if (unlikely(cmd == NULL)) {
248 DRM_ERROR("Fifo reserve failed.\n");
249 return;
250 }
251
252 cmd->header = cpu_to_le32(SVGA_CMD_UPDATE);
253 cmd->body.x = cpu_to_le32(x);
254 cmd->body.y = cpu_to_le32(y);
255 cmd->body.width = cpu_to_le32(w);
256 cmd->body.height = cpu_to_le32(h);
257 vmw_fifo_commit(vmw_priv, sizeof(*cmd));
258}
259
260static void vmw_fb_dirty_mark(struct vmw_fb_par *par,
261 unsigned x1, unsigned y1,
262 unsigned width, unsigned height)
263{
264 struct fb_info *info = par->vmw_priv->fb_info;
265 unsigned long flags;
266 unsigned x2 = x1 + width;
267 unsigned y2 = y1 + height;
268
269 spin_lock_irqsave(&par->dirty.lock, flags);
270 if (par->dirty.x1 == par->dirty.x2) {
271 par->dirty.x1 = x1;
272 par->dirty.y1 = y1;
273 par->dirty.x2 = x2;
274 par->dirty.y2 = y2;
275 /* if we are active start the dirty work
276 * we share the work with the defio system */
277 if (par->dirty.active)
278 schedule_delayed_work(&info->deferred_work, VMW_DIRTY_DELAY);
279 } else {
280 if (x1 < par->dirty.x1)
281 par->dirty.x1 = x1;
282 if (y1 < par->dirty.y1)
283 par->dirty.y1 = y1;
284 if (x2 > par->dirty.x2)
285 par->dirty.x2 = x2;
286 if (y2 > par->dirty.y2)
287 par->dirty.y2 = y2;
288 }
289 spin_unlock_irqrestore(&par->dirty.lock, flags);
290}
291
292static void vmw_deferred_io(struct fb_info *info,
293 struct list_head *pagelist)
294{
295 struct vmw_fb_par *par = info->par;
296 unsigned long start, end, min, max;
297 unsigned long flags;
298 struct page *page;
299 int y1, y2;
300
301 min = ULONG_MAX;
302 max = 0;
303 list_for_each_entry(page, pagelist, lru) {
304 start = page->index << PAGE_SHIFT;
305 end = start + PAGE_SIZE - 1;
306 min = min(min, start);
307 max = max(max, end);
308 }
309
310 if (min < max) {
311 y1 = min / info->fix.line_length;
312 y2 = (max / info->fix.line_length) + 1;
313
314 spin_lock_irqsave(&par->dirty.lock, flags);
315 par->dirty.x1 = 0;
316 par->dirty.y1 = y1;
317 par->dirty.x2 = info->var.xres;
318 par->dirty.y2 = y2;
319 spin_unlock_irqrestore(&par->dirty.lock, flags);
320 }
321
322 vmw_fb_dirty_flush(par);
323};
324
325struct fb_deferred_io vmw_defio = {
326 .delay = VMW_DIRTY_DELAY,
327 .deferred_io = vmw_deferred_io,
328};
329
330/*
331 * Draw code
332 */
333
334static void vmw_fb_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
335{
336 cfb_fillrect(info, rect);
337 vmw_fb_dirty_mark(info->par, rect->dx, rect->dy,
338 rect->width, rect->height);
339}
340
341static void vmw_fb_copyarea(struct fb_info *info, const struct fb_copyarea *region)
342{
343 cfb_copyarea(info, region);
344 vmw_fb_dirty_mark(info->par, region->dx, region->dy,
345 region->width, region->height);
346}
347
348static void vmw_fb_imageblit(struct fb_info *info, const struct fb_image *image)
349{
350 cfb_imageblit(info, image);
351 vmw_fb_dirty_mark(info->par, image->dx, image->dy,
352 image->width, image->height);
353}
354
355/*
356 * Bring up code
357 */
358
359static struct fb_ops vmw_fb_ops = {
360 .owner = THIS_MODULE,
361 .fb_check_var = vmw_fb_check_var,
362 .fb_set_par = vmw_fb_set_par,
363 .fb_setcolreg = vmw_fb_setcolreg,
364 .fb_fillrect = vmw_fb_fillrect,
365 .fb_copyarea = vmw_fb_copyarea,
366 .fb_imageblit = vmw_fb_imageblit,
367 .fb_pan_display = vmw_fb_pan_display,
368 .fb_blank = vmw_fb_blank,
369};
370
371static int vmw_fb_create_bo(struct vmw_private *vmw_priv,
372 size_t size, struct vmw_dma_buffer **out)
373{
374 struct vmw_dma_buffer *vmw_bo;
375 struct ttm_placement ne_placement = vmw_vram_ne_placement;
376 int ret;
377
378 ne_placement.lpfn = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
379
Thomas Hellstrom294adf72014-02-27 12:34:51 +0100380 (void) ttm_write_lock(&vmw_priv->reservation_sem, false);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000381
382 vmw_bo = kmalloc(sizeof(*vmw_bo), GFP_KERNEL);
Thomas Hellstrom294adf72014-02-27 12:34:51 +0100383 if (!vmw_bo) {
384 ret = -ENOMEM;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000385 goto err_unlock;
Thomas Hellstrom294adf72014-02-27 12:34:51 +0100386 }
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000387
388 ret = vmw_dmabuf_init(vmw_priv, vmw_bo, size,
389 &ne_placement,
390 false,
391 &vmw_dmabuf_bo_free);
392 if (unlikely(ret != 0))
393 goto err_unlock; /* init frees the buffer on failure */
394
395 *out = vmw_bo;
396
397 ttm_write_unlock(&vmw_priv->fbdev_master.lock);
398
399 return 0;
400
401err_unlock:
402 ttm_write_unlock(&vmw_priv->fbdev_master.lock);
403 return ret;
404}
405
406int vmw_fb_init(struct vmw_private *vmw_priv)
407{
408 struct device *device = &vmw_priv->dev->pdev->dev;
409 struct vmw_fb_par *par;
410 struct fb_info *info;
411 unsigned initial_width, initial_height;
412 unsigned fb_width, fb_height;
Michel Dänzer6558429b2011-08-31 07:42:49 +0000413 unsigned fb_bpp, fb_depth, fb_offset, fb_pitch, fb_size;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000414 int ret;
415
Michel Dänzer6558429b2011-08-31 07:42:49 +0000416 fb_bpp = 32;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000417 fb_depth = 24;
418
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +0200419 /* XXX As shouldn't these be as well. */
420 fb_width = min(vmw_priv->fb_max_width, (unsigned)2048);
421 fb_height = min(vmw_priv->fb_max_height, (unsigned)2048);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000422
Jakob Bornecrantzeb4f9232012-02-09 16:56:46 +0100423 initial_width = min(vmw_priv->initial_width, fb_width);
424 initial_height = min(vmw_priv->initial_height, fb_height);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000425
Michel Dänzer6558429b2011-08-31 07:42:49 +0000426 fb_pitch = fb_width * fb_bpp / 8;
Jakob Bornecrantzd7e19582010-05-28 11:21:59 +0200427 fb_size = fb_pitch * fb_height;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000428 fb_offset = vmw_read(vmw_priv, SVGA_REG_FB_OFFSET);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000429
430 info = framebuffer_alloc(sizeof(*par), device);
431 if (!info)
432 return -ENOMEM;
433
434 /*
435 * Par
436 */
437 vmw_priv->fb_info = info;
438 par = info->par;
439 par->vmw_priv = vmw_priv;
440 par->depth = fb_depth;
Michel Dänzer6558429b2011-08-31 07:42:49 +0000441 par->bpp = fb_bpp;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000442 par->vmalloc = NULL;
443 par->max_width = fb_width;
444 par->max_height = fb_height;
445
446 /*
447 * Create buffers and alloc memory
448 */
449 par->vmalloc = vmalloc(fb_size);
450 if (unlikely(par->vmalloc == NULL)) {
451 ret = -ENOMEM;
452 goto err_free;
453 }
454
455 ret = vmw_fb_create_bo(vmw_priv, fb_size, &par->vmw_bo);
456 if (unlikely(ret != 0))
457 goto err_free;
458
459 ret = ttm_bo_kmap(&par->vmw_bo->base,
460 0,
461 par->vmw_bo->base.num_pages,
462 &par->map);
463 if (unlikely(ret != 0))
464 goto err_unref;
465 par->bo_ptr = ttm_kmap_obj_virtual(&par->map, &par->bo_iowrite);
466 par->bo_size = fb_size;
467
468 /*
469 * Fixed and var
470 */
471 strcpy(info->fix.id, "svgadrmfb");
472 info->fix.type = FB_TYPE_PACKED_PIXELS;
473 info->fix.visual = FB_VISUAL_TRUECOLOR;
474 info->fix.type_aux = 0;
475 info->fix.xpanstep = 1; /* doing it in hw */
476 info->fix.ypanstep = 1; /* doing it in hw */
477 info->fix.ywrapstep = 0;
478 info->fix.accel = FB_ACCEL_NONE;
479 info->fix.line_length = fb_pitch;
480
481 info->fix.smem_start = 0;
482 info->fix.smem_len = fb_size;
483
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000484 info->pseudo_palette = par->pseudo_palette;
485 info->screen_base = par->vmalloc;
486 info->screen_size = fb_size;
487
488 info->flags = FBINFO_DEFAULT;
489 info->fbops = &vmw_fb_ops;
490
491 /* 24 depth per default */
492 info->var.red.offset = 16;
493 info->var.green.offset = 8;
494 info->var.blue.offset = 0;
495 info->var.red.length = 8;
496 info->var.green.length = 8;
497 info->var.blue.length = 8;
498 info->var.transp.offset = 0;
499 info->var.transp.length = 0;
500
501 info->var.xres_virtual = fb_width;
502 info->var.yres_virtual = fb_height;
503 info->var.bits_per_pixel = par->bpp;
504 info->var.xoffset = 0;
505 info->var.yoffset = 0;
506 info->var.activate = FB_ACTIVATE_NOW;
507 info->var.height = -1;
508 info->var.width = -1;
509
510 info->var.xres = initial_width;
511 info->var.yres = initial_height;
512
Sascha Hauerfb2a99e2012-02-06 10:58:19 +0100513 /* Use default scratch pixmap (info->pixmap.flags = FB_PIXMAP_SYSTEM) */
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000514
Marcin Slusarz1471ca92010-05-16 17:27:03 +0200515 info->apertures = alloc_apertures(1);
516 if (!info->apertures) {
517 ret = -ENOMEM;
518 goto err_aper;
519 }
520 info->apertures->ranges[0].base = vmw_priv->vram_start;
521 info->apertures->ranges[0].size = vmw_priv->vram_size;
Thomas Hellstromf2d12b82010-02-15 14:45:22 +0000522
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000523 /*
524 * Dirty & Deferred IO
525 */
526 par->dirty.x1 = par->dirty.x2 = 0;
Chris Wilsonc39721c2010-07-24 17:15:11 +0100527 par->dirty.y1 = par->dirty.y2 = 0;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000528 par->dirty.active = true;
529 spin_lock_init(&par->dirty.lock);
530 info->fbdefio = &vmw_defio;
531 fb_deferred_io_init(info);
532
533 ret = register_framebuffer(info);
534 if (unlikely(ret != 0))
535 goto err_defio;
536
537 return 0;
538
539err_defio:
540 fb_deferred_io_cleanup(info);
Marcin Slusarz1471ca92010-05-16 17:27:03 +0200541err_aper:
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000542 ttm_bo_kunmap(&par->map);
543err_unref:
544 ttm_bo_unref((struct ttm_buffer_object **)&par->vmw_bo);
545err_free:
546 vfree(par->vmalloc);
547 framebuffer_release(info);
548 vmw_priv->fb_info = NULL;
549
550 return ret;
551}
552
553int vmw_fb_close(struct vmw_private *vmw_priv)
554{
555 struct fb_info *info;
556 struct vmw_fb_par *par;
557 struct ttm_buffer_object *bo;
558
559 if (!vmw_priv->fb_info)
560 return 0;
561
562 info = vmw_priv->fb_info;
563 par = info->par;
564 bo = &par->vmw_bo->base;
565 par->vmw_bo = NULL;
566
567 /* ??? order */
568 fb_deferred_io_cleanup(info);
569 unregister_framebuffer(info);
570
571 ttm_bo_kunmap(&par->map);
572 ttm_bo_unref(&bo);
573
574 vfree(par->vmalloc);
575 framebuffer_release(info);
576
577 return 0;
578}
579
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000580int vmw_fb_off(struct vmw_private *vmw_priv)
581{
582 struct fb_info *info;
583 struct vmw_fb_par *par;
584 unsigned long flags;
585
586 if (!vmw_priv->fb_info)
587 return -EINVAL;
588
589 info = vmw_priv->fb_info;
590 par = info->par;
591
592 spin_lock_irqsave(&par->dirty.lock, flags);
593 par->dirty.active = false;
594 spin_unlock_irqrestore(&par->dirty.lock, flags);
595
Tejun Heo43829732012-08-20 14:51:24 -0700596 flush_delayed_work(&info->deferred_work);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000597
598 par->bo_ptr = NULL;
599 ttm_bo_kunmap(&par->map);
600
Thomas Hellstromb37a6b92011-10-04 20:13:28 +0200601 vmw_dmabuf_unpin(vmw_priv, par->vmw_bo, false);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000602
603 return 0;
604}
605
606int vmw_fb_on(struct vmw_private *vmw_priv)
607{
608 struct fb_info *info;
609 struct vmw_fb_par *par;
610 unsigned long flags;
611 bool dummy;
612 int ret;
613
614 if (!vmw_priv->fb_info)
615 return -EINVAL;
616
617 info = vmw_priv->fb_info;
618 par = info->par;
619
620 /* we are already active */
621 if (par->bo_ptr != NULL)
622 return 0;
623
624 /* Make sure that all overlays are stoped when we take over */
625 vmw_overlay_stop_all(vmw_priv);
626
Jakob Bornecrantzd991ef02011-10-04 20:13:21 +0200627 ret = vmw_dmabuf_to_start_of_vram(vmw_priv, par->vmw_bo, true, false);
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000628 if (unlikely(ret != 0)) {
629 DRM_ERROR("could not move buffer to start of VRAM\n");
630 goto err_no_buffer;
631 }
632
633 ret = ttm_bo_kmap(&par->vmw_bo->base,
634 0,
635 par->vmw_bo->base.num_pages,
636 &par->map);
637 BUG_ON(ret != 0);
638 par->bo_ptr = ttm_kmap_obj_virtual(&par->map, &dummy);
639
640 spin_lock_irqsave(&par->dirty.lock, flags);
641 par->dirty.active = true;
642 spin_unlock_irqrestore(&par->dirty.lock, flags);
643
644err_no_buffer:
645 vmw_fb_set_par(info);
646
647 vmw_fb_dirty_mark(par, 0, 0, info->var.xres, info->var.yres);
648
649 /* If there already was stuff dirty we wont
650 * schedule a new work, so lets do it now */
651 schedule_delayed_work(&info->deferred_work, 0);
652
653 return 0;
654}