]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blob - drivers/gpu/drm/vmwgfx/vmwgfx_fb.c
sh: switch to NO_BOOTMEM
[mirror_ubuntu-eoan-kernel.git] / drivers / gpu / drm / vmwgfx / vmwgfx_fb.c
1 /**************************************************************************
2 *
3 * Copyright © 2007 David Airlie
4 * Copyright © 2009-2015 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
29 #include <linux/export.h>
30
31 #include <drm/drmP.h>
32 #include "vmwgfx_drv.h"
33 #include "vmwgfx_kms.h"
34
35 #include <drm/ttm/ttm_placement.h>
36
37 #define VMW_DIRTY_DELAY (HZ / 30)
38
39 struct vmw_fb_par {
40 struct vmw_private *vmw_priv;
41
42 void *vmalloc;
43
44 struct mutex bo_mutex;
45 struct vmw_dma_buffer *vmw_bo;
46 unsigned bo_size;
47 struct drm_framebuffer *set_fb;
48 struct drm_display_mode *set_mode;
49 u32 fb_x;
50 u32 fb_y;
51 bool bo_iowrite;
52
53 u32 pseudo_palette[17];
54
55 unsigned max_width;
56 unsigned max_height;
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 struct drm_crtc *crtc;
68 struct drm_connector *con;
69 struct delayed_work local_work;
70 };
71
72 static int vmw_fb_setcolreg(unsigned regno, unsigned red, unsigned green,
73 unsigned blue, unsigned transp,
74 struct fb_info *info)
75 {
76 struct vmw_fb_par *par = info->par;
77 u32 *pal = par->pseudo_palette;
78
79 if (regno > 15) {
80 DRM_ERROR("Bad regno %u.\n", regno);
81 return 1;
82 }
83
84 switch (par->set_fb->format->depth) {
85 case 24:
86 case 32:
87 pal[regno] = ((red & 0xff00) << 8) |
88 (green & 0xff00) |
89 ((blue & 0xff00) >> 8);
90 break;
91 default:
92 DRM_ERROR("Bad depth %u, bpp %u.\n",
93 par->set_fb->format->depth,
94 par->set_fb->format->cpp[0] * 8);
95 return 1;
96 }
97
98 return 0;
99 }
100
101 static int vmw_fb_check_var(struct fb_var_screeninfo *var,
102 struct fb_info *info)
103 {
104 int depth = var->bits_per_pixel;
105 struct vmw_fb_par *par = info->par;
106 struct vmw_private *vmw_priv = par->vmw_priv;
107
108 switch (var->bits_per_pixel) {
109 case 32:
110 depth = (var->transp.length > 0) ? 32 : 24;
111 break;
112 default:
113 DRM_ERROR("Bad bpp %u.\n", var->bits_per_pixel);
114 return -EINVAL;
115 }
116
117 switch (depth) {
118 case 24:
119 var->red.offset = 16;
120 var->green.offset = 8;
121 var->blue.offset = 0;
122 var->red.length = 8;
123 var->green.length = 8;
124 var->blue.length = 8;
125 var->transp.length = 0;
126 var->transp.offset = 0;
127 break;
128 case 32:
129 var->red.offset = 16;
130 var->green.offset = 8;
131 var->blue.offset = 0;
132 var->red.length = 8;
133 var->green.length = 8;
134 var->blue.length = 8;
135 var->transp.length = 8;
136 var->transp.offset = 24;
137 break;
138 default:
139 DRM_ERROR("Bad depth %u.\n", depth);
140 return -EINVAL;
141 }
142
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;
147 }
148
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;
154 }
155
156 return 0;
157 }
158
159 static int vmw_fb_blank(int blank, struct fb_info *info)
160 {
161 return 0;
162 }
163
164 /**
165 * vmw_fb_dirty_flush - flush dirty regions to the kms framebuffer
166 *
167 * @work: The struct work_struct associated with this task.
168 *
169 * This function flushes the dirty regions of the vmalloc framebuffer to the
170 * kms framebuffer, and if the kms framebuffer is visible, also updated the
171 * corresponding displays. Note that this function runs even if the kms
172 * framebuffer is not bound to a crtc and thus not visible, but it's turned
173 * off during hibernation using the par->dirty.active bool.
174 */
175 static void vmw_fb_dirty_flush(struct work_struct *work)
176 {
177 struct vmw_fb_par *par = container_of(work, struct vmw_fb_par,
178 local_work.work);
179 struct vmw_private *vmw_priv = par->vmw_priv;
180 struct fb_info *info = vmw_priv->fb_info;
181 unsigned long irq_flags;
182 s32 dst_x1, dst_x2, dst_y1, dst_y2, w = 0, h = 0;
183 u32 cpp, max_x, max_y;
184 struct drm_clip_rect clip;
185 struct drm_framebuffer *cur_fb;
186 u8 *src_ptr, *dst_ptr;
187 struct vmw_dma_buffer *vbo = par->vmw_bo;
188 void *virtual;
189
190 if (!READ_ONCE(par->dirty.active))
191 return;
192
193 mutex_lock(&par->bo_mutex);
194 cur_fb = par->set_fb;
195 if (!cur_fb)
196 goto out_unlock;
197
198 (void) ttm_read_lock(&vmw_priv->reservation_sem, false);
199 (void) ttm_bo_reserve(&vbo->base, false, false, NULL);
200 virtual = vmw_dma_buffer_map_and_cache(vbo);
201 if (!virtual)
202 goto out_unreserve;
203
204 spin_lock_irqsave(&par->dirty.lock, irq_flags);
205 if (!par->dirty.active) {
206 spin_unlock_irqrestore(&par->dirty.lock, irq_flags);
207 goto out_unreserve;
208 }
209
210 /*
211 * Handle panning when copying from vmalloc to framebuffer.
212 * Clip dirty area to framebuffer.
213 */
214 cpp = cur_fb->format->cpp[0];
215 max_x = par->fb_x + cur_fb->width;
216 max_y = par->fb_y + cur_fb->height;
217
218 dst_x1 = par->dirty.x1 - par->fb_x;
219 dst_y1 = par->dirty.y1 - par->fb_y;
220 dst_x1 = max_t(s32, dst_x1, 0);
221 dst_y1 = max_t(s32, dst_y1, 0);
222
223 dst_x2 = par->dirty.x2 - par->fb_x;
224 dst_y2 = par->dirty.y2 - par->fb_y;
225 dst_x2 = min_t(s32, dst_x2, max_x);
226 dst_y2 = min_t(s32, dst_y2, max_y);
227 w = dst_x2 - dst_x1;
228 h = dst_y2 - dst_y1;
229 w = max_t(s32, 0, w);
230 h = max_t(s32, 0, h);
231
232 par->dirty.x1 = par->dirty.x2 = 0;
233 par->dirty.y1 = par->dirty.y2 = 0;
234 spin_unlock_irqrestore(&par->dirty.lock, irq_flags);
235
236 if (w && h) {
237 dst_ptr = (u8 *)virtual +
238 (dst_y1 * par->set_fb->pitches[0] + dst_x1 * cpp);
239 src_ptr = (u8 *)par->vmalloc +
240 ((dst_y1 + par->fb_y) * info->fix.line_length +
241 (dst_x1 + par->fb_x) * cpp);
242
243 while (h-- > 0) {
244 memcpy(dst_ptr, src_ptr, w*cpp);
245 dst_ptr += par->set_fb->pitches[0];
246 src_ptr += info->fix.line_length;
247 }
248
249 clip.x1 = dst_x1;
250 clip.x2 = dst_x2;
251 clip.y1 = dst_y1;
252 clip.y2 = dst_y2;
253 }
254
255 out_unreserve:
256 ttm_bo_unreserve(&vbo->base);
257 ttm_read_unlock(&vmw_priv->reservation_sem);
258 if (w && h) {
259 WARN_ON_ONCE(par->set_fb->funcs->dirty(cur_fb, NULL, 0, 0,
260 &clip, 1));
261 vmw_fifo_flush(vmw_priv, false);
262 }
263 out_unlock:
264 mutex_unlock(&par->bo_mutex);
265 }
266
267 static void vmw_fb_dirty_mark(struct vmw_fb_par *par,
268 unsigned x1, unsigned y1,
269 unsigned width, unsigned height)
270 {
271 unsigned long flags;
272 unsigned x2 = x1 + width;
273 unsigned y2 = y1 + height;
274
275 spin_lock_irqsave(&par->dirty.lock, flags);
276 if (par->dirty.x1 == par->dirty.x2) {
277 par->dirty.x1 = x1;
278 par->dirty.y1 = y1;
279 par->dirty.x2 = x2;
280 par->dirty.y2 = y2;
281 /* if we are active start the dirty work
282 * we share the work with the defio system */
283 if (par->dirty.active)
284 schedule_delayed_work(&par->local_work,
285 VMW_DIRTY_DELAY);
286 } else {
287 if (x1 < par->dirty.x1)
288 par->dirty.x1 = x1;
289 if (y1 < par->dirty.y1)
290 par->dirty.y1 = y1;
291 if (x2 > par->dirty.x2)
292 par->dirty.x2 = x2;
293 if (y2 > par->dirty.y2)
294 par->dirty.y2 = y2;
295 }
296 spin_unlock_irqrestore(&par->dirty.lock, flags);
297 }
298
299 static int vmw_fb_pan_display(struct fb_var_screeninfo *var,
300 struct fb_info *info)
301 {
302 struct vmw_fb_par *par = info->par;
303
304 if ((var->xoffset + var->xres) > var->xres_virtual ||
305 (var->yoffset + var->yres) > var->yres_virtual) {
306 DRM_ERROR("Requested panning can not fit in framebuffer\n");
307 return -EINVAL;
308 }
309
310 mutex_lock(&par->bo_mutex);
311 par->fb_x = var->xoffset;
312 par->fb_y = var->yoffset;
313 if (par->set_fb)
314 vmw_fb_dirty_mark(par, par->fb_x, par->fb_y, par->set_fb->width,
315 par->set_fb->height);
316 mutex_unlock(&par->bo_mutex);
317
318 return 0;
319 }
320
321 static void vmw_deferred_io(struct fb_info *info,
322 struct list_head *pagelist)
323 {
324 struct vmw_fb_par *par = info->par;
325 unsigned long start, end, min, max;
326 unsigned long flags;
327 struct page *page;
328 int y1, y2;
329
330 min = ULONG_MAX;
331 max = 0;
332 list_for_each_entry(page, pagelist, lru) {
333 start = page->index << PAGE_SHIFT;
334 end = start + PAGE_SIZE - 1;
335 min = min(min, start);
336 max = max(max, end);
337 }
338
339 if (min < max) {
340 y1 = min / info->fix.line_length;
341 y2 = (max / info->fix.line_length) + 1;
342
343 spin_lock_irqsave(&par->dirty.lock, flags);
344 par->dirty.x1 = 0;
345 par->dirty.y1 = y1;
346 par->dirty.x2 = info->var.xres;
347 par->dirty.y2 = y2;
348 spin_unlock_irqrestore(&par->dirty.lock, flags);
349
350 /*
351 * Since we've already waited on this work once, try to
352 * execute asap.
353 */
354 cancel_delayed_work(&par->local_work);
355 schedule_delayed_work(&par->local_work, 0);
356 }
357 };
358
359 static struct fb_deferred_io vmw_defio = {
360 .delay = VMW_DIRTY_DELAY,
361 .deferred_io = vmw_deferred_io,
362 };
363
364 /*
365 * Draw code
366 */
367
368 static void vmw_fb_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
369 {
370 cfb_fillrect(info, rect);
371 vmw_fb_dirty_mark(info->par, rect->dx, rect->dy,
372 rect->width, rect->height);
373 }
374
375 static void vmw_fb_copyarea(struct fb_info *info, const struct fb_copyarea *region)
376 {
377 cfb_copyarea(info, region);
378 vmw_fb_dirty_mark(info->par, region->dx, region->dy,
379 region->width, region->height);
380 }
381
382 static void vmw_fb_imageblit(struct fb_info *info, const struct fb_image *image)
383 {
384 cfb_imageblit(info, image);
385 vmw_fb_dirty_mark(info->par, image->dx, image->dy,
386 image->width, image->height);
387 }
388
389 /*
390 * Bring up code
391 */
392
393 static int vmw_fb_create_bo(struct vmw_private *vmw_priv,
394 size_t size, struct vmw_dma_buffer **out)
395 {
396 struct vmw_dma_buffer *vmw_bo;
397 int ret;
398
399 (void) ttm_write_lock(&vmw_priv->reservation_sem, false);
400
401 vmw_bo = kmalloc(sizeof(*vmw_bo), GFP_KERNEL);
402 if (!vmw_bo) {
403 ret = -ENOMEM;
404 goto err_unlock;
405 }
406
407 ret = vmw_dmabuf_init(vmw_priv, vmw_bo, size,
408 &vmw_sys_placement,
409 false,
410 &vmw_dmabuf_bo_free);
411 if (unlikely(ret != 0))
412 goto err_unlock; /* init frees the buffer on failure */
413
414 *out = vmw_bo;
415 ttm_write_unlock(&vmw_priv->reservation_sem);
416
417 return 0;
418
419 err_unlock:
420 ttm_write_unlock(&vmw_priv->reservation_sem);
421 return ret;
422 }
423
424 static int vmw_fb_compute_depth(struct fb_var_screeninfo *var,
425 int *depth)
426 {
427 switch (var->bits_per_pixel) {
428 case 32:
429 *depth = (var->transp.length > 0) ? 32 : 24;
430 break;
431 default:
432 DRM_ERROR("Bad bpp %u.\n", var->bits_per_pixel);
433 return -EINVAL;
434 }
435
436 return 0;
437 }
438
439 static int vmwgfx_set_config_internal(struct drm_mode_set *set)
440 {
441 struct drm_crtc *crtc = set->crtc;
442 struct drm_framebuffer *fb;
443 struct drm_crtc *tmp;
444 struct drm_modeset_acquire_ctx *ctx;
445 struct drm_device *dev = set->crtc->dev;
446 int ret;
447
448 ctx = dev->mode_config.acquire_ctx;
449
450 restart:
451 /*
452 * NOTE: ->set_config can also disable other crtcs (if we steal all
453 * connectors from it), hence we need to refcount the fbs across all
454 * crtcs. Atomic modeset will have saner semantics ...
455 */
456 drm_for_each_crtc(tmp, dev)
457 tmp->primary->old_fb = tmp->primary->fb;
458
459 fb = set->fb;
460
461 ret = crtc->funcs->set_config(set, ctx);
462 if (ret == 0) {
463 crtc->primary->crtc = crtc;
464 crtc->primary->fb = fb;
465 }
466
467 drm_for_each_crtc(tmp, dev) {
468 if (tmp->primary->fb)
469 drm_framebuffer_get(tmp->primary->fb);
470 if (tmp->primary->old_fb)
471 drm_framebuffer_put(tmp->primary->old_fb);
472 tmp->primary->old_fb = NULL;
473 }
474
475 if (ret == -EDEADLK) {
476 dev->mode_config.acquire_ctx = NULL;
477
478 retry_locking:
479 drm_modeset_backoff(ctx);
480
481 ret = drm_modeset_lock_all_ctx(dev, ctx);
482 if (ret)
483 goto retry_locking;
484
485 dev->mode_config.acquire_ctx = ctx;
486
487 goto restart;
488 }
489
490 return ret;
491 }
492
493 static int vmw_fb_kms_detach(struct vmw_fb_par *par,
494 bool detach_bo,
495 bool unref_bo)
496 {
497 struct drm_framebuffer *cur_fb = par->set_fb;
498 int ret;
499
500 /* Detach the KMS framebuffer from crtcs */
501 if (par->set_mode) {
502 struct drm_mode_set set;
503
504 set.crtc = par->crtc;
505 set.x = 0;
506 set.y = 0;
507 set.mode = NULL;
508 set.fb = NULL;
509 set.num_connectors = 0;
510 set.connectors = &par->con;
511 ret = vmwgfx_set_config_internal(&set);
512 if (ret) {
513 DRM_ERROR("Could not unset a mode.\n");
514 return ret;
515 }
516 drm_mode_destroy(par->vmw_priv->dev, par->set_mode);
517 par->set_mode = NULL;
518 }
519
520 if (cur_fb) {
521 drm_framebuffer_put(cur_fb);
522 par->set_fb = NULL;
523 }
524
525 if (par->vmw_bo && detach_bo && unref_bo)
526 vmw_dmabuf_unreference(&par->vmw_bo);
527
528 return 0;
529 }
530
531 static int vmw_fb_kms_framebuffer(struct fb_info *info)
532 {
533 struct drm_mode_fb_cmd2 mode_cmd;
534 struct vmw_fb_par *par = info->par;
535 struct fb_var_screeninfo *var = &info->var;
536 struct drm_framebuffer *cur_fb;
537 struct vmw_framebuffer *vfb;
538 int ret = 0, depth;
539 size_t new_bo_size;
540
541 ret = vmw_fb_compute_depth(var, &depth);
542 if (ret)
543 return ret;
544
545 mode_cmd.width = var->xres;
546 mode_cmd.height = var->yres;
547 mode_cmd.pitches[0] = ((var->bits_per_pixel + 7) / 8) * mode_cmd.width;
548 mode_cmd.pixel_format =
549 drm_mode_legacy_fb_format(var->bits_per_pixel, depth);
550
551 cur_fb = par->set_fb;
552 if (cur_fb && cur_fb->width == mode_cmd.width &&
553 cur_fb->height == mode_cmd.height &&
554 cur_fb->format->format == mode_cmd.pixel_format &&
555 cur_fb->pitches[0] == mode_cmd.pitches[0])
556 return 0;
557
558 /* Need new buffer object ? */
559 new_bo_size = (size_t) mode_cmd.pitches[0] * (size_t) mode_cmd.height;
560 ret = vmw_fb_kms_detach(par,
561 par->bo_size < new_bo_size ||
562 par->bo_size > 2*new_bo_size,
563 true);
564 if (ret)
565 return ret;
566
567 if (!par->vmw_bo) {
568 ret = vmw_fb_create_bo(par->vmw_priv, new_bo_size,
569 &par->vmw_bo);
570 if (ret) {
571 DRM_ERROR("Failed creating a buffer object for "
572 "fbdev.\n");
573 return ret;
574 }
575 par->bo_size = new_bo_size;
576 }
577
578 vfb = vmw_kms_new_framebuffer(par->vmw_priv, par->vmw_bo, NULL,
579 true, &mode_cmd);
580 if (IS_ERR(vfb))
581 return PTR_ERR(vfb);
582
583 par->set_fb = &vfb->base;
584
585 return 0;
586 }
587
588 static int vmw_fb_set_par(struct fb_info *info)
589 {
590 struct vmw_fb_par *par = info->par;
591 struct vmw_private *vmw_priv = par->vmw_priv;
592 struct drm_mode_set set;
593 struct fb_var_screeninfo *var = &info->var;
594 struct drm_display_mode new_mode = { DRM_MODE("fb_mode",
595 DRM_MODE_TYPE_DRIVER,
596 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
597 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC)
598 };
599 struct drm_display_mode *old_mode;
600 struct drm_display_mode *mode;
601 int ret;
602
603 old_mode = par->set_mode;
604 mode = drm_mode_duplicate(vmw_priv->dev, &new_mode);
605 if (!mode) {
606 DRM_ERROR("Could not create new fb mode.\n");
607 return -ENOMEM;
608 }
609
610 mode->hdisplay = var->xres;
611 mode->vdisplay = var->yres;
612 vmw_guess_mode_timing(mode);
613
614 if (old_mode && drm_mode_equal(old_mode, mode)) {
615 drm_mode_destroy(vmw_priv->dev, mode);
616 mode = old_mode;
617 old_mode = NULL;
618 } else if (!vmw_kms_validate_mode_vram(vmw_priv,
619 mode->hdisplay *
620 DIV_ROUND_UP(var->bits_per_pixel, 8),
621 mode->vdisplay)) {
622 drm_mode_destroy(vmw_priv->dev, mode);
623 return -EINVAL;
624 }
625
626 mutex_lock(&par->bo_mutex);
627 drm_modeset_lock_all(vmw_priv->dev);
628 ret = vmw_fb_kms_framebuffer(info);
629 if (ret)
630 goto out_unlock;
631
632 par->fb_x = var->xoffset;
633 par->fb_y = var->yoffset;
634
635 set.crtc = par->crtc;
636 set.x = 0;
637 set.y = 0;
638 set.mode = mode;
639 set.fb = par->set_fb;
640 set.num_connectors = 1;
641 set.connectors = &par->con;
642
643 ret = vmwgfx_set_config_internal(&set);
644 if (ret)
645 goto out_unlock;
646
647 vmw_fb_dirty_mark(par, par->fb_x, par->fb_y,
648 par->set_fb->width, par->set_fb->height);
649
650 /* If there already was stuff dirty we wont
651 * schedule a new work, so lets do it now */
652
653 schedule_delayed_work(&par->local_work, 0);
654
655 out_unlock:
656 if (old_mode)
657 drm_mode_destroy(vmw_priv->dev, old_mode);
658 par->set_mode = mode;
659
660 drm_modeset_unlock_all(vmw_priv->dev);
661 mutex_unlock(&par->bo_mutex);
662
663 return ret;
664 }
665
666
667 static struct fb_ops vmw_fb_ops = {
668 .owner = THIS_MODULE,
669 .fb_check_var = vmw_fb_check_var,
670 .fb_set_par = vmw_fb_set_par,
671 .fb_setcolreg = vmw_fb_setcolreg,
672 .fb_fillrect = vmw_fb_fillrect,
673 .fb_copyarea = vmw_fb_copyarea,
674 .fb_imageblit = vmw_fb_imageblit,
675 .fb_pan_display = vmw_fb_pan_display,
676 .fb_blank = vmw_fb_blank,
677 };
678
679 int vmw_fb_init(struct vmw_private *vmw_priv)
680 {
681 struct device *device = &vmw_priv->dev->pdev->dev;
682 struct vmw_fb_par *par;
683 struct fb_info *info;
684 unsigned fb_width, fb_height;
685 unsigned fb_bpp, fb_depth, fb_offset, fb_pitch, fb_size;
686 struct drm_display_mode *init_mode;
687 int ret;
688
689 fb_bpp = 32;
690 fb_depth = 24;
691
692 /* XXX As shouldn't these be as well. */
693 fb_width = min(vmw_priv->fb_max_width, (unsigned)2048);
694 fb_height = min(vmw_priv->fb_max_height, (unsigned)2048);
695
696 fb_pitch = fb_width * fb_bpp / 8;
697 fb_size = fb_pitch * fb_height;
698 fb_offset = vmw_read(vmw_priv, SVGA_REG_FB_OFFSET);
699
700 info = framebuffer_alloc(sizeof(*par), device);
701 if (!info)
702 return -ENOMEM;
703
704 /*
705 * Par
706 */
707 vmw_priv->fb_info = info;
708 par = info->par;
709 memset(par, 0, sizeof(*par));
710 INIT_DELAYED_WORK(&par->local_work, &vmw_fb_dirty_flush);
711 par->vmw_priv = vmw_priv;
712 par->vmalloc = NULL;
713 par->max_width = fb_width;
714 par->max_height = fb_height;
715
716 drm_modeset_lock_all(vmw_priv->dev);
717 ret = vmw_kms_fbdev_init_data(vmw_priv, 0, par->max_width,
718 par->max_height, &par->con,
719 &par->crtc, &init_mode);
720 if (ret) {
721 drm_modeset_unlock_all(vmw_priv->dev);
722 goto err_kms;
723 }
724
725 info->var.xres = init_mode->hdisplay;
726 info->var.yres = init_mode->vdisplay;
727 drm_modeset_unlock_all(vmw_priv->dev);
728
729 /*
730 * Create buffers and alloc memory
731 */
732 par->vmalloc = vzalloc(fb_size);
733 if (unlikely(par->vmalloc == NULL)) {
734 ret = -ENOMEM;
735 goto err_free;
736 }
737
738 /*
739 * Fixed and var
740 */
741 strcpy(info->fix.id, "svgadrmfb");
742 info->fix.type = FB_TYPE_PACKED_PIXELS;
743 info->fix.visual = FB_VISUAL_TRUECOLOR;
744 info->fix.type_aux = 0;
745 info->fix.xpanstep = 1; /* doing it in hw */
746 info->fix.ypanstep = 1; /* doing it in hw */
747 info->fix.ywrapstep = 0;
748 info->fix.accel = FB_ACCEL_NONE;
749 info->fix.line_length = fb_pitch;
750
751 info->fix.smem_start = 0;
752 info->fix.smem_len = fb_size;
753
754 info->pseudo_palette = par->pseudo_palette;
755 info->screen_base = (char __iomem *)par->vmalloc;
756 info->screen_size = fb_size;
757
758 info->fbops = &vmw_fb_ops;
759
760 /* 24 depth per default */
761 info->var.red.offset = 16;
762 info->var.green.offset = 8;
763 info->var.blue.offset = 0;
764 info->var.red.length = 8;
765 info->var.green.length = 8;
766 info->var.blue.length = 8;
767 info->var.transp.offset = 0;
768 info->var.transp.length = 0;
769
770 info->var.xres_virtual = fb_width;
771 info->var.yres_virtual = fb_height;
772 info->var.bits_per_pixel = fb_bpp;
773 info->var.xoffset = 0;
774 info->var.yoffset = 0;
775 info->var.activate = FB_ACTIVATE_NOW;
776 info->var.height = -1;
777 info->var.width = -1;
778
779 /* Use default scratch pixmap (info->pixmap.flags = FB_PIXMAP_SYSTEM) */
780 info->apertures = alloc_apertures(1);
781 if (!info->apertures) {
782 ret = -ENOMEM;
783 goto err_aper;
784 }
785 info->apertures->ranges[0].base = vmw_priv->vram_start;
786 info->apertures->ranges[0].size = vmw_priv->vram_size;
787
788 /*
789 * Dirty & Deferred IO
790 */
791 par->dirty.x1 = par->dirty.x2 = 0;
792 par->dirty.y1 = par->dirty.y2 = 0;
793 par->dirty.active = true;
794 spin_lock_init(&par->dirty.lock);
795 mutex_init(&par->bo_mutex);
796 info->fbdefio = &vmw_defio;
797 fb_deferred_io_init(info);
798
799 ret = register_framebuffer(info);
800 if (unlikely(ret != 0))
801 goto err_defio;
802
803 vmw_fb_set_par(info);
804
805 return 0;
806
807 err_defio:
808 fb_deferred_io_cleanup(info);
809 err_aper:
810 err_free:
811 vfree(par->vmalloc);
812 err_kms:
813 framebuffer_release(info);
814 vmw_priv->fb_info = NULL;
815
816 return ret;
817 }
818
819 int vmw_fb_close(struct vmw_private *vmw_priv)
820 {
821 struct fb_info *info;
822 struct vmw_fb_par *par;
823
824 if (!vmw_priv->fb_info)
825 return 0;
826
827 info = vmw_priv->fb_info;
828 par = info->par;
829
830 /* ??? order */
831 fb_deferred_io_cleanup(info);
832 cancel_delayed_work_sync(&par->local_work);
833 unregister_framebuffer(info);
834
835 (void) vmw_fb_kms_detach(par, true, true);
836
837 vfree(par->vmalloc);
838 framebuffer_release(info);
839
840 return 0;
841 }
842
843 int vmw_fb_off(struct vmw_private *vmw_priv)
844 {
845 struct fb_info *info;
846 struct vmw_fb_par *par;
847 unsigned long flags;
848
849 if (!vmw_priv->fb_info)
850 return -EINVAL;
851
852 info = vmw_priv->fb_info;
853 par = info->par;
854
855 spin_lock_irqsave(&par->dirty.lock, flags);
856 par->dirty.active = false;
857 spin_unlock_irqrestore(&par->dirty.lock, flags);
858
859 flush_delayed_work(&info->deferred_work);
860 flush_delayed_work(&par->local_work);
861
862 return 0;
863 }
864
865 int vmw_fb_on(struct vmw_private *vmw_priv)
866 {
867 struct fb_info *info;
868 struct vmw_fb_par *par;
869 unsigned long flags;
870
871 if (!vmw_priv->fb_info)
872 return -EINVAL;
873
874 info = vmw_priv->fb_info;
875 par = info->par;
876
877 spin_lock_irqsave(&par->dirty.lock, flags);
878 par->dirty.active = true;
879 spin_unlock_irqrestore(&par->dirty.lock, flags);
880
881 return 0;
882 }
883
884 /**
885 * vmw_fb_refresh - Refresh fb display
886 *
887 * @vmw_priv: Pointer to device private
888 *
889 * Call into kms to show the fbdev display(s).
890 */
891 void vmw_fb_refresh(struct vmw_private *vmw_priv)
892 {
893 if (!vmw_priv->fb_info)
894 return;
895
896 vmw_fb_set_par(vmw_priv->fb_info);
897 }