x86/xen: resume timer irqs early
[linux/fpc-iii.git] / drivers / gpu / drm / vmwgfx / vmwgfx_fb.c
blob1b0f34bd3a038b64bbf6e074b085e99f75269181
1 /**************************************************************************
3 * Copyright © 2007 David Airlie
4 * Copyright © 2009 VMware, Inc., Palo Alto, CA., USA
5 * All Rights Reserved.
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:
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.
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.
27 **************************************************************************/
29 #include <linux/export.h>
31 #include <drm/drmP.h>
32 #include "vmwgfx_drv.h"
34 #include <drm/ttm/ttm_placement.h>
36 #define VMW_DIRTY_DELAY (HZ / 30)
38 struct vmw_fb_par {
39 struct vmw_private *vmw_priv;
41 void *vmalloc;
43 struct vmw_dma_buffer *vmw_bo;
44 struct ttm_bo_kmap_obj map;
46 u32 pseudo_palette[17];
48 unsigned depth;
49 unsigned bpp;
51 unsigned max_width;
52 unsigned max_height;
54 void *bo_ptr;
55 unsigned bo_size;
56 bool bo_iowrite;
58 struct {
59 spinlock_t lock;
60 bool active;
61 unsigned x1;
62 unsigned y1;
63 unsigned x2;
64 unsigned y2;
65 } dirty;
68 static int vmw_fb_setcolreg(unsigned regno, unsigned red, unsigned green,
69 unsigned blue, unsigned transp,
70 struct fb_info *info)
72 struct vmw_fb_par *par = info->par;
73 u32 *pal = par->pseudo_palette;
75 if (regno > 15) {
76 DRM_ERROR("Bad regno %u.\n", regno);
77 return 1;
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;
92 return 0;
95 static int vmw_fb_check_var(struct fb_var_screeninfo *var,
96 struct fb_info *info)
98 int depth = var->bits_per_pixel;
99 struct vmw_fb_par *par = info->par;
100 struct vmw_private *vmw_priv = par->vmw_priv;
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;
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;
137 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");
140 return -EINVAL;
143 if ((var->xoffset + var->xres) > par->max_width ||
144 (var->yoffset + var->yres) > par->max_height) {
145 DRM_ERROR("Requested geom can not fit in framebuffer\n");
146 return -EINVAL;
149 if (!vmw_kms_validate_mode_vram(vmw_priv,
150 var->xres * var->bits_per_pixel/8,
151 var->yoffset + var->yres)) {
152 DRM_ERROR("Requested geom can not fit in framebuffer\n");
153 return -EINVAL;
156 return 0;
159 static int vmw_fb_set_par(struct fb_info *info)
161 struct vmw_fb_par *par = info->par;
162 struct vmw_private *vmw_priv = par->vmw_priv;
163 int ret;
165 info->fix.line_length = info->var.xres * info->var.bits_per_pixel/8;
167 ret = vmw_kms_write_svga(vmw_priv, info->var.xres, info->var.yres,
168 info->fix.line_length,
169 par->bpp, par->depth);
170 if (ret)
171 return ret;
173 if (vmw_priv->capabilities & SVGA_CAP_DISPLAY_TOPOLOGY) {
174 /* TODO check if pitch and offset changes */
175 vmw_write(vmw_priv, SVGA_REG_NUM_GUEST_DISPLAYS, 1);
176 vmw_write(vmw_priv, SVGA_REG_DISPLAY_ID, 0);
177 vmw_write(vmw_priv, SVGA_REG_DISPLAY_IS_PRIMARY, true);
178 vmw_write(vmw_priv, SVGA_REG_DISPLAY_POSITION_X, info->var.xoffset);
179 vmw_write(vmw_priv, SVGA_REG_DISPLAY_POSITION_Y, info->var.yoffset);
180 vmw_write(vmw_priv, SVGA_REG_DISPLAY_WIDTH, info->var.xres);
181 vmw_write(vmw_priv, SVGA_REG_DISPLAY_HEIGHT, info->var.yres);
182 vmw_write(vmw_priv, SVGA_REG_DISPLAY_ID, SVGA_ID_INVALID);
185 /* This is really helpful since if this fails the user
186 * can probably not see anything on the screen.
188 WARN_ON(vmw_read(vmw_priv, SVGA_REG_FB_OFFSET) != 0);
190 return 0;
193 static int vmw_fb_pan_display(struct fb_var_screeninfo *var,
194 struct fb_info *info)
196 return 0;
199 static int vmw_fb_blank(int blank, struct fb_info *info)
201 return 0;
205 * Dirty code
208 static void vmw_fb_dirty_flush(struct vmw_fb_par *par)
210 struct vmw_private *vmw_priv = par->vmw_priv;
211 struct fb_info *info = vmw_priv->fb_info;
212 int stride = (info->fix.line_length / 4);
213 int *src = (int *)info->screen_base;
214 __le32 __iomem *vram_mem = par->bo_ptr;
215 unsigned long flags;
216 unsigned x, y, w, h;
217 int i, k;
218 struct {
219 uint32_t header;
220 SVGAFifoCmdUpdate body;
221 } *cmd;
223 if (vmw_priv->suspended)
224 return;
226 spin_lock_irqsave(&par->dirty.lock, flags);
227 if (!par->dirty.active) {
228 spin_unlock_irqrestore(&par->dirty.lock, flags);
229 return;
231 x = par->dirty.x1;
232 y = par->dirty.y1;
233 w = min(par->dirty.x2, info->var.xres) - x;
234 h = min(par->dirty.y2, info->var.yres) - y;
235 par->dirty.x1 = par->dirty.x2 = 0;
236 par->dirty.y1 = par->dirty.y2 = 0;
237 spin_unlock_irqrestore(&par->dirty.lock, flags);
239 for (i = y * stride; i < info->fix.smem_len / 4; i += stride) {
240 for (k = i+x; k < i+x+w && k < info->fix.smem_len / 4; k++)
241 iowrite32(src[k], vram_mem + k);
244 #if 0
245 DRM_INFO("%s, (%u, %u) (%ux%u)\n", __func__, x, y, w, h);
246 #endif
248 cmd = vmw_fifo_reserve(vmw_priv, sizeof(*cmd));
249 if (unlikely(cmd == NULL)) {
250 DRM_ERROR("Fifo reserve failed.\n");
251 return;
254 cmd->header = cpu_to_le32(SVGA_CMD_UPDATE);
255 cmd->body.x = cpu_to_le32(x);
256 cmd->body.y = cpu_to_le32(y);
257 cmd->body.width = cpu_to_le32(w);
258 cmd->body.height = cpu_to_le32(h);
259 vmw_fifo_commit(vmw_priv, sizeof(*cmd));
262 static void vmw_fb_dirty_mark(struct vmw_fb_par *par,
263 unsigned x1, unsigned y1,
264 unsigned width, unsigned height)
266 struct fb_info *info = par->vmw_priv->fb_info;
267 unsigned long flags;
268 unsigned x2 = x1 + width;
269 unsigned y2 = y1 + height;
271 spin_lock_irqsave(&par->dirty.lock, flags);
272 if (par->dirty.x1 == par->dirty.x2) {
273 par->dirty.x1 = x1;
274 par->dirty.y1 = y1;
275 par->dirty.x2 = x2;
276 par->dirty.y2 = y2;
277 /* if we are active start the dirty work
278 * we share the work with the defio system */
279 if (par->dirty.active)
280 schedule_delayed_work(&info->deferred_work, VMW_DIRTY_DELAY);
281 } else {
282 if (x1 < par->dirty.x1)
283 par->dirty.x1 = x1;
284 if (y1 < par->dirty.y1)
285 par->dirty.y1 = y1;
286 if (x2 > par->dirty.x2)
287 par->dirty.x2 = x2;
288 if (y2 > par->dirty.y2)
289 par->dirty.y2 = y2;
291 spin_unlock_irqrestore(&par->dirty.lock, flags);
294 static void vmw_deferred_io(struct fb_info *info,
295 struct list_head *pagelist)
297 struct vmw_fb_par *par = info->par;
298 unsigned long start, end, min, max;
299 unsigned long flags;
300 struct page *page;
301 int y1, y2;
303 min = ULONG_MAX;
304 max = 0;
305 list_for_each_entry(page, pagelist, lru) {
306 start = page->index << PAGE_SHIFT;
307 end = start + PAGE_SIZE - 1;
308 min = min(min, start);
309 max = max(max, end);
312 if (min < max) {
313 y1 = min / info->fix.line_length;
314 y2 = (max / info->fix.line_length) + 1;
316 spin_lock_irqsave(&par->dirty.lock, flags);
317 par->dirty.x1 = 0;
318 par->dirty.y1 = y1;
319 par->dirty.x2 = info->var.xres;
320 par->dirty.y2 = y2;
321 spin_unlock_irqrestore(&par->dirty.lock, flags);
324 vmw_fb_dirty_flush(par);
327 struct fb_deferred_io vmw_defio = {
328 .delay = VMW_DIRTY_DELAY,
329 .deferred_io = vmw_deferred_io,
333 * Draw code
336 static void vmw_fb_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
338 cfb_fillrect(info, rect);
339 vmw_fb_dirty_mark(info->par, rect->dx, rect->dy,
340 rect->width, rect->height);
343 static void vmw_fb_copyarea(struct fb_info *info, const struct fb_copyarea *region)
345 cfb_copyarea(info, region);
346 vmw_fb_dirty_mark(info->par, region->dx, region->dy,
347 region->width, region->height);
350 static void vmw_fb_imageblit(struct fb_info *info, const struct fb_image *image)
352 cfb_imageblit(info, image);
353 vmw_fb_dirty_mark(info->par, image->dx, image->dy,
354 image->width, image->height);
358 * Bring up code
361 static struct fb_ops vmw_fb_ops = {
362 .owner = THIS_MODULE,
363 .fb_check_var = vmw_fb_check_var,
364 .fb_set_par = vmw_fb_set_par,
365 .fb_setcolreg = vmw_fb_setcolreg,
366 .fb_fillrect = vmw_fb_fillrect,
367 .fb_copyarea = vmw_fb_copyarea,
368 .fb_imageblit = vmw_fb_imageblit,
369 .fb_pan_display = vmw_fb_pan_display,
370 .fb_blank = vmw_fb_blank,
373 static int vmw_fb_create_bo(struct vmw_private *vmw_priv,
374 size_t size, struct vmw_dma_buffer **out)
376 struct vmw_dma_buffer *vmw_bo;
377 struct ttm_placement ne_placement = vmw_vram_ne_placement;
378 int ret;
380 ne_placement.lpfn = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
382 /* interuptable? */
383 ret = ttm_write_lock(&vmw_priv->fbdev_master.lock, false);
384 if (unlikely(ret != 0))
385 return ret;
387 vmw_bo = kmalloc(sizeof(*vmw_bo), GFP_KERNEL);
388 if (!vmw_bo)
389 goto err_unlock;
391 ret = vmw_dmabuf_init(vmw_priv, vmw_bo, size,
392 &ne_placement,
393 false,
394 &vmw_dmabuf_bo_free);
395 if (unlikely(ret != 0))
396 goto err_unlock; /* init frees the buffer on failure */
398 *out = vmw_bo;
400 ttm_write_unlock(&vmw_priv->fbdev_master.lock);
402 return 0;
404 err_unlock:
405 ttm_write_unlock(&vmw_priv->fbdev_master.lock);
406 return ret;
409 int vmw_fb_init(struct vmw_private *vmw_priv)
411 struct device *device = &vmw_priv->dev->pdev->dev;
412 struct vmw_fb_par *par;
413 struct fb_info *info;
414 unsigned initial_width, initial_height;
415 unsigned fb_width, fb_height;
416 unsigned fb_bpp, fb_depth, fb_offset, fb_pitch, fb_size;
417 int ret;
419 fb_bpp = 32;
420 fb_depth = 24;
422 /* XXX As shouldn't these be as well. */
423 fb_width = min(vmw_priv->fb_max_width, (unsigned)2048);
424 fb_height = min(vmw_priv->fb_max_height, (unsigned)2048);
426 initial_width = min(vmw_priv->initial_width, fb_width);
427 initial_height = min(vmw_priv->initial_height, fb_height);
429 fb_pitch = fb_width * fb_bpp / 8;
430 fb_size = fb_pitch * fb_height;
431 fb_offset = vmw_read(vmw_priv, SVGA_REG_FB_OFFSET);
433 info = framebuffer_alloc(sizeof(*par), device);
434 if (!info)
435 return -ENOMEM;
438 * Par
440 vmw_priv->fb_info = info;
441 par = info->par;
442 par->vmw_priv = vmw_priv;
443 par->depth = fb_depth;
444 par->bpp = fb_bpp;
445 par->vmalloc = NULL;
446 par->max_width = fb_width;
447 par->max_height = fb_height;
450 * Create buffers and alloc memory
452 par->vmalloc = vmalloc(fb_size);
453 if (unlikely(par->vmalloc == NULL)) {
454 ret = -ENOMEM;
455 goto err_free;
458 ret = vmw_fb_create_bo(vmw_priv, fb_size, &par->vmw_bo);
459 if (unlikely(ret != 0))
460 goto err_free;
462 ret = ttm_bo_kmap(&par->vmw_bo->base,
464 par->vmw_bo->base.num_pages,
465 &par->map);
466 if (unlikely(ret != 0))
467 goto err_unref;
468 par->bo_ptr = ttm_kmap_obj_virtual(&par->map, &par->bo_iowrite);
469 par->bo_size = fb_size;
472 * Fixed and var
474 strcpy(info->fix.id, "svgadrmfb");
475 info->fix.type = FB_TYPE_PACKED_PIXELS;
476 info->fix.visual = FB_VISUAL_TRUECOLOR;
477 info->fix.type_aux = 0;
478 info->fix.xpanstep = 1; /* doing it in hw */
479 info->fix.ypanstep = 1; /* doing it in hw */
480 info->fix.ywrapstep = 0;
481 info->fix.accel = FB_ACCEL_NONE;
482 info->fix.line_length = fb_pitch;
484 info->fix.smem_start = 0;
485 info->fix.smem_len = fb_size;
487 info->pseudo_palette = par->pseudo_palette;
488 info->screen_base = par->vmalloc;
489 info->screen_size = fb_size;
491 info->flags = FBINFO_DEFAULT;
492 info->fbops = &vmw_fb_ops;
494 /* 24 depth per default */
495 info->var.red.offset = 16;
496 info->var.green.offset = 8;
497 info->var.blue.offset = 0;
498 info->var.red.length = 8;
499 info->var.green.length = 8;
500 info->var.blue.length = 8;
501 info->var.transp.offset = 0;
502 info->var.transp.length = 0;
504 info->var.xres_virtual = fb_width;
505 info->var.yres_virtual = fb_height;
506 info->var.bits_per_pixel = par->bpp;
507 info->var.xoffset = 0;
508 info->var.yoffset = 0;
509 info->var.activate = FB_ACTIVATE_NOW;
510 info->var.height = -1;
511 info->var.width = -1;
513 info->var.xres = initial_width;
514 info->var.yres = initial_height;
516 /* Use default scratch pixmap (info->pixmap.flags = FB_PIXMAP_SYSTEM) */
518 info->apertures = alloc_apertures(1);
519 if (!info->apertures) {
520 ret = -ENOMEM;
521 goto err_aper;
523 info->apertures->ranges[0].base = vmw_priv->vram_start;
524 info->apertures->ranges[0].size = vmw_priv->vram_size;
527 * Dirty & Deferred IO
529 par->dirty.x1 = par->dirty.x2 = 0;
530 par->dirty.y1 = par->dirty.y2 = 0;
531 par->dirty.active = true;
532 spin_lock_init(&par->dirty.lock);
533 info->fbdefio = &vmw_defio;
534 fb_deferred_io_init(info);
536 ret = register_framebuffer(info);
537 if (unlikely(ret != 0))
538 goto err_defio;
540 return 0;
542 err_defio:
543 fb_deferred_io_cleanup(info);
544 err_aper:
545 ttm_bo_kunmap(&par->map);
546 err_unref:
547 ttm_bo_unref((struct ttm_buffer_object **)&par->vmw_bo);
548 err_free:
549 vfree(par->vmalloc);
550 framebuffer_release(info);
551 vmw_priv->fb_info = NULL;
553 return ret;
556 int vmw_fb_close(struct vmw_private *vmw_priv)
558 struct fb_info *info;
559 struct vmw_fb_par *par;
560 struct ttm_buffer_object *bo;
562 if (!vmw_priv->fb_info)
563 return 0;
565 info = vmw_priv->fb_info;
566 par = info->par;
567 bo = &par->vmw_bo->base;
568 par->vmw_bo = NULL;
570 /* ??? order */
571 fb_deferred_io_cleanup(info);
572 unregister_framebuffer(info);
574 ttm_bo_kunmap(&par->map);
575 ttm_bo_unref(&bo);
577 vfree(par->vmalloc);
578 framebuffer_release(info);
580 return 0;
583 int vmw_fb_off(struct vmw_private *vmw_priv)
585 struct fb_info *info;
586 struct vmw_fb_par *par;
587 unsigned long flags;
589 if (!vmw_priv->fb_info)
590 return -EINVAL;
592 info = vmw_priv->fb_info;
593 par = info->par;
595 spin_lock_irqsave(&par->dirty.lock, flags);
596 par->dirty.active = false;
597 spin_unlock_irqrestore(&par->dirty.lock, flags);
599 flush_delayed_work(&info->deferred_work);
601 par->bo_ptr = NULL;
602 ttm_bo_kunmap(&par->map);
604 vmw_dmabuf_unpin(vmw_priv, par->vmw_bo, false);
606 return 0;
609 int vmw_fb_on(struct vmw_private *vmw_priv)
611 struct fb_info *info;
612 struct vmw_fb_par *par;
613 unsigned long flags;
614 bool dummy;
615 int ret;
617 if (!vmw_priv->fb_info)
618 return -EINVAL;
620 info = vmw_priv->fb_info;
621 par = info->par;
623 /* we are already active */
624 if (par->bo_ptr != NULL)
625 return 0;
627 /* Make sure that all overlays are stoped when we take over */
628 vmw_overlay_stop_all(vmw_priv);
630 ret = vmw_dmabuf_to_start_of_vram(vmw_priv, par->vmw_bo, true, false);
631 if (unlikely(ret != 0)) {
632 DRM_ERROR("could not move buffer to start of VRAM\n");
633 goto err_no_buffer;
636 ret = ttm_bo_kmap(&par->vmw_bo->base,
638 par->vmw_bo->base.num_pages,
639 &par->map);
640 BUG_ON(ret != 0);
641 par->bo_ptr = ttm_kmap_obj_virtual(&par->map, &dummy);
643 spin_lock_irqsave(&par->dirty.lock, flags);
644 par->dirty.active = true;
645 spin_unlock_irqrestore(&par->dirty.lock, flags);
647 err_no_buffer:
648 vmw_fb_set_par(info);
650 vmw_fb_dirty_mark(par, 0, 0, info->var.xres, info->var.yres);
652 /* If there already was stuff dirty we wont
653 * schedule a new work, so lets do it now */
654 schedule_delayed_work(&info->deferred_work, 0);
656 return 0;