2 * Copyright © 2007 David Airlie
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
27 #include <linux/async.h>
28 #include <linux/module.h>
29 #include <linux/kernel.h>
30 #include <linux/console.h>
31 #include <linux/errno.h>
32 #include <linux/string.h>
34 #include <linux/tty.h>
35 #include <linux/sysrq.h>
36 #include <linux/delay.h>
37 #include <linux/init.h>
38 #include <linux/vga_switcheroo.h>
41 #include <drm/drm_crtc.h>
42 #include <drm/drm_fb_helper.h>
43 #include "intel_drv.h"
44 #include "intel_frontbuffer.h"
45 #include <drm/i915_drm.h>
48 static void intel_fbdev_invalidate(struct intel_fbdev *ifbdev)
50 struct drm_i915_gem_object *obj = ifbdev->fb->obj;
51 unsigned int origin = ifbdev->vma->fence ? ORIGIN_GTT : ORIGIN_CPU;
53 intel_fb_obj_invalidate(obj, origin);
56 static int intel_fbdev_set_par(struct fb_info *info)
58 struct drm_fb_helper *fb_helper = info->par;
59 struct intel_fbdev *ifbdev =
60 container_of(fb_helper, struct intel_fbdev, helper);
63 ret = drm_fb_helper_set_par(info);
65 intel_fbdev_invalidate(ifbdev);
70 static int intel_fbdev_blank(int blank, struct fb_info *info)
72 struct drm_fb_helper *fb_helper = info->par;
73 struct intel_fbdev *ifbdev =
74 container_of(fb_helper, struct intel_fbdev, helper);
77 ret = drm_fb_helper_blank(blank, info);
79 intel_fbdev_invalidate(ifbdev);
84 static int intel_fbdev_pan_display(struct fb_var_screeninfo *var,
87 struct drm_fb_helper *fb_helper = info->par;
88 struct intel_fbdev *ifbdev =
89 container_of(fb_helper, struct intel_fbdev, helper);
92 ret = drm_fb_helper_pan_display(var, info);
94 intel_fbdev_invalidate(ifbdev);
99 static struct fb_ops intelfb_ops = {
100 .owner = THIS_MODULE,
101 DRM_FB_HELPER_DEFAULT_OPS,
102 .fb_set_par = intel_fbdev_set_par,
103 .fb_fillrect = drm_fb_helper_cfb_fillrect,
104 .fb_copyarea = drm_fb_helper_cfb_copyarea,
105 .fb_imageblit = drm_fb_helper_cfb_imageblit,
106 .fb_pan_display = intel_fbdev_pan_display,
107 .fb_blank = intel_fbdev_blank,
110 static int intelfb_alloc(struct drm_fb_helper *helper,
111 struct drm_fb_helper_surface_size *sizes)
113 struct intel_fbdev *ifbdev =
114 container_of(helper, struct intel_fbdev, helper);
115 struct drm_framebuffer *fb;
116 struct drm_device *dev = helper->dev;
117 struct drm_i915_private *dev_priv = to_i915(dev);
118 struct i915_ggtt *ggtt = &dev_priv->ggtt;
119 struct drm_mode_fb_cmd2 mode_cmd = {};
120 struct drm_i915_gem_object *obj;
123 /* we don't do packed 24bpp */
124 if (sizes->surface_bpp == 24)
125 sizes->surface_bpp = 32;
127 mode_cmd.width = sizes->surface_width;
128 mode_cmd.height = sizes->surface_height;
130 mode_cmd.pitches[0] = ALIGN(mode_cmd.width *
131 DIV_ROUND_UP(sizes->surface_bpp, 8), 64);
132 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp,
133 sizes->surface_depth);
135 size = mode_cmd.pitches[0] * mode_cmd.height;
136 size = PAGE_ALIGN(size);
138 /* If the FB is too big, just don't use it since fbdev is not very
139 * important and we should probably use that space with FBC or other
142 if (size * 2 < ggtt->stolen_usable_size)
143 obj = i915_gem_object_create_stolen(dev_priv, size);
145 obj = i915_gem_object_create(dev_priv, size);
147 DRM_ERROR("failed to allocate framebuffer\n");
152 fb = intel_framebuffer_create(obj, &mode_cmd);
158 ifbdev->fb = to_intel_framebuffer(fb);
163 i915_gem_object_put(obj);
168 static int intelfb_create(struct drm_fb_helper *helper,
169 struct drm_fb_helper_surface_size *sizes)
171 struct intel_fbdev *ifbdev =
172 container_of(helper, struct intel_fbdev, helper);
173 struct intel_framebuffer *intel_fb = ifbdev->fb;
174 struct drm_device *dev = helper->dev;
175 struct drm_i915_private *dev_priv = to_i915(dev);
176 struct pci_dev *pdev = dev_priv->drm.pdev;
177 struct i915_ggtt *ggtt = &dev_priv->ggtt;
178 struct fb_info *info;
179 struct drm_framebuffer *fb;
180 struct i915_vma *vma;
181 bool prealloc = false;
186 (sizes->fb_width > intel_fb->base.width ||
187 sizes->fb_height > intel_fb->base.height)) {
188 DRM_DEBUG_KMS("BIOS fb too small (%dx%d), we require (%dx%d),"
190 intel_fb->base.width, intel_fb->base.height,
191 sizes->fb_width, sizes->fb_height);
192 drm_framebuffer_unreference(&intel_fb->base);
193 intel_fb = ifbdev->fb = NULL;
195 if (!intel_fb || WARN_ON(!intel_fb->obj)) {
196 DRM_DEBUG_KMS("no BIOS fb, allocating a new one\n");
197 ret = intelfb_alloc(helper, sizes);
200 intel_fb = ifbdev->fb;
202 DRM_DEBUG_KMS("re-using BIOS fb\n");
204 sizes->fb_width = intel_fb->base.width;
205 sizes->fb_height = intel_fb->base.height;
208 mutex_lock(&dev->struct_mutex);
210 /* Pin the GGTT vma for our access via info->screen_base.
211 * This also validates that any existing fb inherited from the
212 * BIOS is suitable for own access.
214 vma = intel_pin_and_fence_fb_obj(&ifbdev->fb->base, DRM_MODE_ROTATE_0);
220 info = drm_fb_helper_alloc_fbi(helper);
222 DRM_ERROR("Failed to allocate fb_info\n");
229 fb = &ifbdev->fb->base;
231 ifbdev->helper.fb = fb;
233 strcpy(info->fix.id, "inteldrmfb");
235 info->fbops = &intelfb_ops;
237 /* setup aperture base/size for vesafb takeover */
238 info->apertures->ranges[0].base = dev->mode_config.fb_base;
239 info->apertures->ranges[0].size = ggtt->mappable_end;
241 info->fix.smem_start = dev->mode_config.fb_base + i915_ggtt_offset(vma);
242 info->fix.smem_len = vma->node.size;
244 vaddr = i915_vma_pin_iomap(vma);
246 DRM_ERROR("Failed to remap framebuffer into virtual memory\n");
247 ret = PTR_ERR(vaddr);
250 info->screen_base = vaddr;
251 info->screen_size = vma->node.size;
253 /* This driver doesn't need a VT switch to restore the mode on resume */
254 info->skip_vt_switch = true;
256 drm_fb_helper_fill_fix(info, fb->pitches[0], fb->format->depth);
257 drm_fb_helper_fill_var(info, &ifbdev->helper, sizes->fb_width, sizes->fb_height);
259 /* If the object is shmemfs backed, it will have given us zeroed pages.
260 * If the object is stolen however, it will be full of whatever
261 * garbage was left in there.
263 if (intel_fb->obj->stolen && !prealloc)
264 memset_io(info->screen_base, 0, info->screen_size);
266 /* Use default scratch pixmap (info->pixmap.flags = FB_PIXMAP_SYSTEM) */
268 DRM_DEBUG_KMS("allocated %dx%d fb: 0x%08x\n",
269 fb->width, fb->height, i915_ggtt_offset(vma));
272 mutex_unlock(&dev->struct_mutex);
273 vga_switcheroo_client_fb_set(pdev, info);
277 intel_unpin_fb_vma(vma);
279 mutex_unlock(&dev->struct_mutex);
283 /** Sets the color ramps on behalf of RandR */
284 static void intel_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
287 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
289 intel_crtc->lut_r[regno] = red >> 8;
290 intel_crtc->lut_g[regno] = green >> 8;
291 intel_crtc->lut_b[regno] = blue >> 8;
294 static void intel_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
295 u16 *blue, int regno)
297 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
299 *red = intel_crtc->lut_r[regno] << 8;
300 *green = intel_crtc->lut_g[regno] << 8;
301 *blue = intel_crtc->lut_b[regno] << 8;
304 static struct drm_fb_helper_crtc *
305 intel_fb_helper_crtc(struct drm_fb_helper *fb_helper, struct drm_crtc *crtc)
309 for (i = 0; i < fb_helper->crtc_count; i++)
310 if (fb_helper->crtc_info[i].mode_set.crtc == crtc)
311 return &fb_helper->crtc_info[i];
317 * Try to read the BIOS display configuration and use it for the initial
320 * The BIOS or boot loader will generally create an initial display
321 * configuration for us that includes some set of active pipes and displays.
322 * This routine tries to figure out which pipes and connectors are active
323 * and stuffs them into the crtcs and modes array given to us by the
324 * drm_fb_helper code.
326 * The overall sequence is:
327 * intel_fbdev_init - from driver load
328 * intel_fbdev_init_bios - initialize the intel_fbdev using BIOS data
329 * drm_fb_helper_init - build fb helper structs
330 * drm_fb_helper_single_add_all_connectors - more fb helper structs
331 * intel_fbdev_initial_config - apply the config
332 * drm_fb_helper_initial_config - call ->probe then register_framebuffer()
333 * drm_setup_crtcs - build crtc config for fbdev
334 * intel_fb_initial_config - find active connectors etc
335 * drm_fb_helper_single_fb_probe - set up fbdev
336 * intelfb_create - re-use or alloc fb, build out fbdev structs
338 * Note that we don't make special consideration whether we could actually
339 * switch to the selected modes without a full modeset. E.g. when the display
340 * is in VGA mode we need to recalculate watermarks and set a new high-res
341 * framebuffer anyway.
343 static bool intel_fb_initial_config(struct drm_fb_helper *fb_helper,
344 struct drm_fb_helper_crtc **crtcs,
345 struct drm_display_mode **modes,
346 struct drm_fb_offset *offsets,
347 bool *enabled, int width, int height)
349 struct drm_i915_private *dev_priv = to_i915(fb_helper->dev);
350 unsigned long conn_configured, conn_seq, mask;
351 unsigned int count = min(fb_helper->connector_count, BITS_PER_LONG);
354 bool fallback = true, ret = true;
355 int num_connectors_enabled = 0;
356 int num_connectors_detected = 0;
357 struct drm_modeset_acquire_ctx ctx;
359 save_enabled = kcalloc(count, sizeof(bool), GFP_KERNEL);
363 drm_modeset_acquire_init(&ctx, 0);
365 while (drm_modeset_lock_all_ctx(fb_helper->dev, &ctx) != 0)
366 drm_modeset_backoff(&ctx);
368 memcpy(save_enabled, enabled, count);
369 mask = GENMASK(count - 1, 0);
372 conn_seq = conn_configured;
373 for (i = 0; i < count; i++) {
374 struct drm_fb_helper_connector *fb_conn;
375 struct drm_connector *connector;
376 struct drm_encoder *encoder;
377 struct drm_fb_helper_crtc *new_crtc;
378 struct intel_crtc *intel_crtc;
380 fb_conn = fb_helper->connector_info[i];
381 connector = fb_conn->connector;
383 if (conn_configured & BIT(i))
386 if (conn_seq == 0 && !connector->has_tile)
389 if (connector->status == connector_status_connected)
390 num_connectors_detected++;
393 DRM_DEBUG_KMS("connector %s not enabled, skipping\n",
395 conn_configured |= BIT(i);
399 if (connector->force == DRM_FORCE_OFF) {
400 DRM_DEBUG_KMS("connector %s is disabled by user, skipping\n",
406 encoder = connector->state->best_encoder;
407 if (!encoder || WARN_ON(!connector->state->crtc)) {
408 if (connector->force > DRM_FORCE_OFF)
411 DRM_DEBUG_KMS("connector %s has no encoder or crtc, skipping\n",
414 conn_configured |= BIT(i);
418 num_connectors_enabled++;
420 intel_crtc = to_intel_crtc(connector->state->crtc);
421 for (j = 0; j < 256; j++) {
422 intel_crtc->lut_r[j] = j;
423 intel_crtc->lut_g[j] = j;
424 intel_crtc->lut_b[j] = j;
427 new_crtc = intel_fb_helper_crtc(fb_helper,
428 connector->state->crtc);
431 * Make sure we're not trying to drive multiple connectors
432 * with a single CRTC, since our cloning support may not
435 for (j = 0; j < count; j++) {
436 if (crtcs[j] == new_crtc) {
437 DRM_DEBUG_KMS("fallback: cloned configuration\n");
442 DRM_DEBUG_KMS("looking for cmdline mode on connector %s\n",
445 /* go for command line mode first */
446 modes[i] = drm_pick_cmdline_mode(fb_conn);
448 /* try for preferred next */
450 DRM_DEBUG_KMS("looking for preferred mode on connector %s %d\n",
451 connector->name, connector->has_tile);
452 modes[i] = drm_has_preferred_mode(fb_conn, width,
456 /* No preferred mode marked by the EDID? Are there any modes? */
457 if (!modes[i] && !list_empty(&connector->modes)) {
458 DRM_DEBUG_KMS("using first mode listed on connector %s\n",
460 modes[i] = list_first_entry(&connector->modes,
461 struct drm_display_mode,
465 /* last resort: use current mode */
468 * IMPORTANT: We want to use the adjusted mode (i.e.
469 * after the panel fitter upscaling) as the initial
470 * config, not the input mode, which is what crtc->mode
471 * usually contains. But since our current
472 * code puts a mode derived from the post-pfit timings
473 * into crtc->mode this works out correctly.
475 * This is crtc->mode and not crtc->state->mode for the
476 * fastboot check to work correctly. crtc_state->mode has
477 * I915_MODE_FLAG_INHERITED, which we clear to force check
480 DRM_DEBUG_KMS("looking for current mode on connector %s\n",
482 modes[i] = &connector->state->crtc->mode;
486 DRM_DEBUG_KMS("connector %s on [CRTC:%d:%s]: %dx%d%s\n",
488 connector->state->crtc->base.id,
489 connector->state->crtc->name,
490 modes[i]->hdisplay, modes[i]->vdisplay,
491 modes[i]->flags & DRM_MODE_FLAG_INTERLACE ? "i" :"");
494 conn_configured |= BIT(i);
497 if ((conn_configured & mask) != mask && conn_configured != conn_seq)
501 * If the BIOS didn't enable everything it could, fall back to have the
502 * same user experiencing of lighting up as much as possible like the
503 * fbdev helper library.
505 if (num_connectors_enabled != num_connectors_detected &&
506 num_connectors_enabled < INTEL_INFO(dev_priv)->num_pipes) {
507 DRM_DEBUG_KMS("fallback: Not all outputs enabled\n");
508 DRM_DEBUG_KMS("Enabled: %i, detected: %i\n", num_connectors_enabled,
509 num_connectors_detected);
515 DRM_DEBUG_KMS("Not using firmware configuration\n");
516 memcpy(enabled, save_enabled, count);
520 drm_modeset_drop_locks(&ctx);
521 drm_modeset_acquire_fini(&ctx);
527 static const struct drm_fb_helper_funcs intel_fb_helper_funcs = {
528 .initial_config = intel_fb_initial_config,
529 .gamma_set = intel_crtc_fb_gamma_set,
530 .gamma_get = intel_crtc_fb_gamma_get,
531 .fb_probe = intelfb_create,
534 static void intel_fbdev_destroy(struct intel_fbdev *ifbdev)
536 /* We rely on the object-free to release the VMA pinning for
537 * the info->screen_base mmaping. Leaking the VMA is simpler than
538 * trying to rectify all the possible error paths leading here.
541 drm_fb_helper_fini(&ifbdev->helper);
544 mutex_lock(&ifbdev->helper.dev->struct_mutex);
545 intel_unpin_fb_vma(ifbdev->vma);
546 mutex_unlock(&ifbdev->helper.dev->struct_mutex);
550 drm_framebuffer_remove(&ifbdev->fb->base);
556 * Build an intel_fbdev struct using a BIOS allocated framebuffer, if possible.
557 * The core display code will have read out the current plane configuration,
558 * so we use that to figure out if there's an object for us to use as the
559 * fb, and if so, we re-use it for the fbdev configuration.
561 * Note we only support a single fb shared across pipes for boot (mostly for
562 * fbcon), so we just find the biggest and use that.
564 static bool intel_fbdev_init_bios(struct drm_device *dev,
565 struct intel_fbdev *ifbdev)
567 struct intel_framebuffer *fb = NULL;
568 struct drm_crtc *crtc;
569 struct intel_crtc *intel_crtc;
570 unsigned int max_size = 0;
572 /* Find the largest fb */
573 for_each_crtc(dev, crtc) {
574 struct drm_i915_gem_object *obj =
575 intel_fb_obj(crtc->primary->state->fb);
576 intel_crtc = to_intel_crtc(crtc);
578 if (!crtc->state->active || !obj) {
579 DRM_DEBUG_KMS("pipe %c not active or no fb, skipping\n",
580 pipe_name(intel_crtc->pipe));
584 if (obj->base.size > max_size) {
585 DRM_DEBUG_KMS("found possible fb from plane %c\n",
586 pipe_name(intel_crtc->pipe));
587 fb = to_intel_framebuffer(crtc->primary->state->fb);
588 max_size = obj->base.size;
593 DRM_DEBUG_KMS("no active fbs found, not using BIOS config\n");
597 /* Now make sure all the pipes will fit into it */
598 for_each_crtc(dev, crtc) {
599 unsigned int cur_size;
601 intel_crtc = to_intel_crtc(crtc);
603 if (!crtc->state->active) {
604 DRM_DEBUG_KMS("pipe %c not active, skipping\n",
605 pipe_name(intel_crtc->pipe));
609 DRM_DEBUG_KMS("checking plane %c for BIOS fb\n",
610 pipe_name(intel_crtc->pipe));
613 * See if the plane fb we found above will fit on this
614 * pipe. Note we need to use the selected fb's pitch and bpp
615 * rather than the current pipe's, since they differ.
617 cur_size = intel_crtc->config->base.adjusted_mode.crtc_hdisplay;
618 cur_size = cur_size * fb->base.format->cpp[0];
619 if (fb->base.pitches[0] < cur_size) {
620 DRM_DEBUG_KMS("fb not wide enough for plane %c (%d vs %d)\n",
621 pipe_name(intel_crtc->pipe),
622 cur_size, fb->base.pitches[0]);
627 cur_size = intel_crtc->config->base.adjusted_mode.crtc_vdisplay;
628 cur_size = intel_fb_align_height(&fb->base, 0, cur_size);
629 cur_size *= fb->base.pitches[0];
630 DRM_DEBUG_KMS("pipe %c area: %dx%d, bpp: %d, size: %d\n",
631 pipe_name(intel_crtc->pipe),
632 intel_crtc->config->base.adjusted_mode.crtc_hdisplay,
633 intel_crtc->config->base.adjusted_mode.crtc_vdisplay,
634 fb->base.format->cpp[0] * 8,
637 if (cur_size > max_size) {
638 DRM_DEBUG_KMS("fb not big enough for plane %c (%d vs %d)\n",
639 pipe_name(intel_crtc->pipe),
645 DRM_DEBUG_KMS("fb big enough for plane %c (%d >= %d)\n",
646 pipe_name(intel_crtc->pipe),
651 DRM_DEBUG_KMS("BIOS fb not suitable for all pipes, not using\n");
655 ifbdev->preferred_bpp = fb->base.format->cpp[0] * 8;
658 drm_framebuffer_reference(&ifbdev->fb->base);
660 /* Final pass to check if any active pipes don't have fbs */
661 for_each_crtc(dev, crtc) {
662 intel_crtc = to_intel_crtc(crtc);
664 if (!crtc->state->active)
667 WARN(!crtc->primary->fb,
668 "re-used BIOS config but lost an fb on crtc %d\n",
673 DRM_DEBUG_KMS("using BIOS fb for initial console\n");
681 static void intel_fbdev_suspend_worker(struct work_struct *work)
683 intel_fbdev_set_suspend(&container_of(work,
684 struct drm_i915_private,
685 fbdev_suspend_work)->drm,
686 FBINFO_STATE_RUNNING,
690 int intel_fbdev_init(struct drm_device *dev)
692 struct drm_i915_private *dev_priv = to_i915(dev);
693 struct intel_fbdev *ifbdev;
696 if (WARN_ON(INTEL_INFO(dev_priv)->num_pipes == 0))
699 ifbdev = kzalloc(sizeof(struct intel_fbdev), GFP_KERNEL);
703 drm_fb_helper_prepare(dev, &ifbdev->helper, &intel_fb_helper_funcs);
705 if (!intel_fbdev_init_bios(dev, ifbdev))
706 ifbdev->preferred_bpp = 32;
708 ret = drm_fb_helper_init(dev, &ifbdev->helper, 4);
714 dev_priv->fbdev = ifbdev;
715 INIT_WORK(&dev_priv->fbdev_suspend_work, intel_fbdev_suspend_worker);
717 drm_fb_helper_single_add_all_connectors(&ifbdev->helper);
722 static void intel_fbdev_initial_config(void *data, async_cookie_t cookie)
724 struct intel_fbdev *ifbdev = data;
726 /* Due to peculiar init order wrt to hpd handling this is separate. */
727 if (drm_fb_helper_initial_config(&ifbdev->helper,
728 ifbdev->preferred_bpp)) {
729 intel_fbdev_unregister(to_i915(ifbdev->helper.dev));
730 intel_fbdev_fini(to_i915(ifbdev->helper.dev));
734 void intel_fbdev_initial_config_async(struct drm_device *dev)
736 struct intel_fbdev *ifbdev = to_i915(dev)->fbdev;
741 ifbdev->cookie = async_schedule(intel_fbdev_initial_config, ifbdev);
744 static void intel_fbdev_sync(struct intel_fbdev *ifbdev)
749 /* Only serialises with all preceding async calls, hence +1 */
750 async_synchronize_cookie(ifbdev->cookie + 1);
754 void intel_fbdev_unregister(struct drm_i915_private *dev_priv)
756 struct intel_fbdev *ifbdev = dev_priv->fbdev;
761 cancel_work_sync(&dev_priv->fbdev_suspend_work);
762 if (!current_is_async())
763 intel_fbdev_sync(ifbdev);
765 drm_fb_helper_unregister_fbi(&ifbdev->helper);
768 void intel_fbdev_fini(struct drm_i915_private *dev_priv)
770 struct intel_fbdev *ifbdev = fetch_and_zero(&dev_priv->fbdev);
775 intel_fbdev_destroy(ifbdev);
778 void intel_fbdev_set_suspend(struct drm_device *dev, int state, bool synchronous)
780 struct drm_i915_private *dev_priv = to_i915(dev);
781 struct intel_fbdev *ifbdev = dev_priv->fbdev;
782 struct fb_info *info;
784 if (!ifbdev || !ifbdev->vma)
787 info = ifbdev->helper.fbdev;
790 /* Flush any pending work to turn the console on, and then
791 * wait to turn it off. It must be synchronous as we are
792 * about to suspend or unload the driver.
794 * Note that from within the work-handler, we cannot flush
795 * ourselves, so only flush outstanding work upon suspend!
797 if (state != FBINFO_STATE_RUNNING)
798 flush_work(&dev_priv->fbdev_suspend_work);
802 * The console lock can be pretty contented on resume due
803 * to all the printk activity. Try to keep it out of the hot
804 * path of resume if possible.
806 WARN_ON(state != FBINFO_STATE_RUNNING);
807 if (!console_trylock()) {
808 /* Don't block our own workqueue as this can
809 * be run in parallel with other i915.ko tasks.
811 schedule_work(&dev_priv->fbdev_suspend_work);
816 /* On resume from hibernation: If the object is shmemfs backed, it has
817 * been restored from swap. If the object is stolen however, it will be
818 * full of whatever garbage was left in there.
820 if (state == FBINFO_STATE_RUNNING && ifbdev->fb->obj->stolen)
821 memset_io(info->screen_base, 0, info->screen_size);
823 drm_fb_helper_set_suspend(&ifbdev->helper, state);
827 void intel_fbdev_output_poll_changed(struct drm_device *dev)
829 struct intel_fbdev *ifbdev = to_i915(dev)->fbdev;
832 drm_fb_helper_hotplug_event(&ifbdev->helper);
835 void intel_fbdev_restore_mode(struct drm_device *dev)
837 struct intel_fbdev *ifbdev = to_i915(dev)->fbdev;
842 intel_fbdev_sync(ifbdev);
846 if (drm_fb_helper_restore_fbdev_mode_unlocked(&ifbdev->helper) == 0)
847 intel_fbdev_invalidate(ifbdev);