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>
38 #include <linux/init.h>
39 #include <linux/vga_switcheroo.h>
42 #include <drm/drm_crtc.h>
43 #include <drm/drm_fb_helper.h>
44 #include "intel_drv.h"
45 #include <drm/i915_drm.h>
48 static int intel_fbdev_set_par(struct fb_info
*info
)
50 struct drm_fb_helper
*fb_helper
= info
->par
;
51 struct intel_fbdev
*ifbdev
=
52 container_of(fb_helper
, struct intel_fbdev
, helper
);
55 ret
= drm_fb_helper_set_par(info
);
58 mutex_lock(&fb_helper
->dev
->struct_mutex
);
59 intel_fb_obj_invalidate(ifbdev
->fb
->obj
, ORIGIN_GTT
);
60 mutex_unlock(&fb_helper
->dev
->struct_mutex
);
66 static int intel_fbdev_blank(int blank
, struct fb_info
*info
)
68 struct drm_fb_helper
*fb_helper
= info
->par
;
69 struct intel_fbdev
*ifbdev
=
70 container_of(fb_helper
, struct intel_fbdev
, helper
);
73 ret
= drm_fb_helper_blank(blank
, info
);
76 mutex_lock(&fb_helper
->dev
->struct_mutex
);
77 intel_fb_obj_invalidate(ifbdev
->fb
->obj
, ORIGIN_GTT
);
78 mutex_unlock(&fb_helper
->dev
->struct_mutex
);
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
);
95 mutex_lock(&fb_helper
->dev
->struct_mutex
);
96 intel_fb_obj_invalidate(ifbdev
->fb
->obj
, ORIGIN_GTT
);
97 mutex_unlock(&fb_helper
->dev
->struct_mutex
);
103 static struct fb_ops intelfb_ops
= {
104 .owner
= THIS_MODULE
,
105 .fb_check_var
= drm_fb_helper_check_var
,
106 .fb_set_par
= intel_fbdev_set_par
,
107 .fb_fillrect
= drm_fb_helper_cfb_fillrect
,
108 .fb_copyarea
= drm_fb_helper_cfb_copyarea
,
109 .fb_imageblit
= drm_fb_helper_cfb_imageblit
,
110 .fb_pan_display
= intel_fbdev_pan_display
,
111 .fb_blank
= intel_fbdev_blank
,
112 .fb_setcmap
= drm_fb_helper_setcmap
,
113 .fb_debug_enter
= drm_fb_helper_debug_enter
,
114 .fb_debug_leave
= drm_fb_helper_debug_leave
,
117 static int intelfb_alloc(struct drm_fb_helper
*helper
,
118 struct drm_fb_helper_surface_size
*sizes
)
120 struct intel_fbdev
*ifbdev
=
121 container_of(helper
, struct intel_fbdev
, helper
);
122 struct drm_framebuffer
*fb
;
123 struct drm_device
*dev
= helper
->dev
;
124 struct drm_i915_private
*dev_priv
= to_i915(dev
);
125 struct drm_mode_fb_cmd2 mode_cmd
= {};
126 struct drm_i915_gem_object
*obj
= NULL
;
129 /* we don't do packed 24bpp */
130 if (sizes
->surface_bpp
== 24)
131 sizes
->surface_bpp
= 32;
133 mode_cmd
.width
= sizes
->surface_width
;
134 mode_cmd
.height
= sizes
->surface_height
;
136 mode_cmd
.pitches
[0] = ALIGN(mode_cmd
.width
*
137 DIV_ROUND_UP(sizes
->surface_bpp
, 8), 64);
138 mode_cmd
.pixel_format
= drm_mode_legacy_fb_format(sizes
->surface_bpp
,
139 sizes
->surface_depth
);
141 size
= mode_cmd
.pitches
[0] * mode_cmd
.height
;
142 size
= PAGE_ALIGN(size
);
144 /* If the FB is too big, just don't use it since fbdev is not very
145 * important and we should probably use that space with FBC or other
147 if (size
* 2 < dev_priv
->gtt
.stolen_usable_size
)
148 obj
= i915_gem_object_create_stolen(dev
, size
);
150 obj
= i915_gem_alloc_object(dev
, size
);
152 DRM_ERROR("failed to allocate framebuffer\n");
157 fb
= __intel_framebuffer_create(dev
, &mode_cmd
, obj
);
163 /* Flush everything out, we'll be doing GTT only from now on */
164 ret
= intel_pin_and_fence_fb_obj(NULL
, fb
, NULL
, NULL
, NULL
);
166 DRM_ERROR("failed to pin obj: %d\n", ret
);
170 ifbdev
->fb
= to_intel_framebuffer(fb
);
175 drm_framebuffer_remove(fb
);
177 drm_gem_object_unreference(&obj
->base
);
182 static int intelfb_create(struct drm_fb_helper
*helper
,
183 struct drm_fb_helper_surface_size
*sizes
)
185 struct intel_fbdev
*ifbdev
=
186 container_of(helper
, struct intel_fbdev
, helper
);
187 struct intel_framebuffer
*intel_fb
= ifbdev
->fb
;
188 struct drm_device
*dev
= helper
->dev
;
189 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
190 struct fb_info
*info
;
191 struct drm_framebuffer
*fb
;
192 struct drm_i915_gem_object
*obj
;
194 bool prealloc
= false;
196 mutex_lock(&dev
->struct_mutex
);
199 (sizes
->fb_width
> intel_fb
->base
.width
||
200 sizes
->fb_height
> intel_fb
->base
.height
)) {
201 DRM_DEBUG_KMS("BIOS fb too small (%dx%d), we require (%dx%d),"
203 intel_fb
->base
.width
, intel_fb
->base
.height
,
204 sizes
->fb_width
, sizes
->fb_height
);
205 drm_framebuffer_unreference(&intel_fb
->base
);
206 intel_fb
= ifbdev
->fb
= NULL
;
208 if (!intel_fb
|| WARN_ON(!intel_fb
->obj
)) {
209 DRM_DEBUG_KMS("no BIOS fb, allocating a new one\n");
210 ret
= intelfb_alloc(helper
, sizes
);
213 intel_fb
= ifbdev
->fb
;
215 DRM_DEBUG_KMS("re-using BIOS fb\n");
217 sizes
->fb_width
= intel_fb
->base
.width
;
218 sizes
->fb_height
= intel_fb
->base
.height
;
222 size
= obj
->base
.size
;
224 info
= drm_fb_helper_alloc_fbi(helper
);
232 fb
= &ifbdev
->fb
->base
;
234 ifbdev
->helper
.fb
= fb
;
236 strcpy(info
->fix
.id
, "inteldrmfb");
238 info
->flags
= FBINFO_DEFAULT
| FBINFO_CAN_FORCE_OUTPUT
;
239 info
->fbops
= &intelfb_ops
;
241 /* setup aperture base/size for vesafb takeover */
242 info
->apertures
->ranges
[0].base
= dev
->mode_config
.fb_base
;
243 info
->apertures
->ranges
[0].size
= dev_priv
->gtt
.mappable_end
;
245 info
->fix
.smem_start
= dev
->mode_config
.fb_base
+ i915_gem_obj_ggtt_offset(obj
);
246 info
->fix
.smem_len
= size
;
249 ioremap_wc(dev_priv
->gtt
.mappable_base
+ i915_gem_obj_ggtt_offset(obj
),
251 if (!info
->screen_base
) {
253 goto out_destroy_fbi
;
255 info
->screen_size
= size
;
257 /* This driver doesn't need a VT switch to restore the mode on resume */
258 info
->skip_vt_switch
= true;
260 drm_fb_helper_fill_fix(info
, fb
->pitches
[0], fb
->depth
);
261 drm_fb_helper_fill_var(info
, &ifbdev
->helper
, sizes
->fb_width
, sizes
->fb_height
);
263 /* If the object is shmemfs backed, it will have given us zeroed pages.
264 * If the object is stolen however, it will be full of whatever
265 * garbage was left in there.
267 if (ifbdev
->fb
->obj
->stolen
&& !prealloc
)
268 memset_io(info
->screen_base
, 0, info
->screen_size
);
270 /* Use default scratch pixmap (info->pixmap.flags = FB_PIXMAP_SYSTEM) */
272 DRM_DEBUG_KMS("allocated %dx%d fb: 0x%08llx, bo %p\n",
273 fb
->width
, fb
->height
,
274 i915_gem_obj_ggtt_offset(obj
), obj
);
276 mutex_unlock(&dev
->struct_mutex
);
277 vga_switcheroo_client_fb_set(dev
->pdev
, info
);
281 drm_fb_helper_release_fbi(helper
);
283 i915_gem_object_ggtt_unpin(obj
);
284 drm_gem_object_unreference(&obj
->base
);
286 mutex_unlock(&dev
->struct_mutex
);
290 /** Sets the color ramps on behalf of RandR */
291 static void intel_crtc_fb_gamma_set(struct drm_crtc
*crtc
, u16 red
, u16 green
,
294 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
296 intel_crtc
->lut_r
[regno
] = red
>> 8;
297 intel_crtc
->lut_g
[regno
] = green
>> 8;
298 intel_crtc
->lut_b
[regno
] = blue
>> 8;
301 static void intel_crtc_fb_gamma_get(struct drm_crtc
*crtc
, u16
*red
, u16
*green
,
302 u16
*blue
, int regno
)
304 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
306 *red
= intel_crtc
->lut_r
[regno
] << 8;
307 *green
= intel_crtc
->lut_g
[regno
] << 8;
308 *blue
= intel_crtc
->lut_b
[regno
] << 8;
311 static struct drm_fb_helper_crtc
*
312 intel_fb_helper_crtc(struct drm_fb_helper
*fb_helper
, struct drm_crtc
*crtc
)
316 for (i
= 0; i
< fb_helper
->crtc_count
; i
++)
317 if (fb_helper
->crtc_info
[i
].mode_set
.crtc
== crtc
)
318 return &fb_helper
->crtc_info
[i
];
324 * Try to read the BIOS display configuration and use it for the initial
327 * The BIOS or boot loader will generally create an initial display
328 * configuration for us that includes some set of active pipes and displays.
329 * This routine tries to figure out which pipes and connectors are active
330 * and stuffs them into the crtcs and modes array given to us by the
331 * drm_fb_helper code.
333 * The overall sequence is:
334 * intel_fbdev_init - from driver load
335 * intel_fbdev_init_bios - initialize the intel_fbdev using BIOS data
336 * drm_fb_helper_init - build fb helper structs
337 * drm_fb_helper_single_add_all_connectors - more fb helper structs
338 * intel_fbdev_initial_config - apply the config
339 * drm_fb_helper_initial_config - call ->probe then register_framebuffer()
340 * drm_setup_crtcs - build crtc config for fbdev
341 * intel_fb_initial_config - find active connectors etc
342 * drm_fb_helper_single_fb_probe - set up fbdev
343 * intelfb_create - re-use or alloc fb, build out fbdev structs
345 * Note that we don't make special consideration whether we could actually
346 * switch to the selected modes without a full modeset. E.g. when the display
347 * is in VGA mode we need to recalculate watermarks and set a new high-res
348 * framebuffer anyway.
350 static bool intel_fb_initial_config(struct drm_fb_helper
*fb_helper
,
351 struct drm_fb_helper_crtc
**crtcs
,
352 struct drm_display_mode
**modes
,
353 struct drm_fb_offset
*offsets
,
354 bool *enabled
, int width
, int height
)
356 struct drm_device
*dev
= fb_helper
->dev
;
359 bool fallback
= true;
360 int num_connectors_enabled
= 0;
361 int num_connectors_detected
= 0;
362 uint64_t conn_configured
= 0, mask
;
365 save_enabled
= kcalloc(dev
->mode_config
.num_connector
, sizeof(bool),
370 memcpy(save_enabled
, enabled
, dev
->mode_config
.num_connector
);
371 mask
= (1 << fb_helper
->connector_count
) - 1;
373 for (i
= 0; i
< fb_helper
->connector_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
;
379 fb_conn
= fb_helper
->connector_info
[i
];
380 connector
= fb_conn
->connector
;
382 if (conn_configured
& (1 << i
))
385 if (pass
== 0 && !connector
->has_tile
)
388 if (connector
->status
== connector_status_connected
)
389 num_connectors_detected
++;
392 DRM_DEBUG_KMS("connector %s not enabled, skipping\n",
394 conn_configured
|= (1 << i
);
398 if (connector
->force
== DRM_FORCE_OFF
) {
399 DRM_DEBUG_KMS("connector %s is disabled by user, skipping\n",
405 encoder
= connector
->encoder
;
406 if (!encoder
|| WARN_ON(!encoder
->crtc
)) {
407 if (connector
->force
> DRM_FORCE_OFF
)
410 DRM_DEBUG_KMS("connector %s has no encoder or crtc, skipping\n",
413 conn_configured
|= (1 << i
);
417 num_connectors_enabled
++;
419 new_crtc
= intel_fb_helper_crtc(fb_helper
, encoder
->crtc
);
422 * Make sure we're not trying to drive multiple connectors
423 * with a single CRTC, since our cloning support may not
426 for (j
= 0; j
< fb_helper
->connector_count
; j
++) {
427 if (crtcs
[j
] == new_crtc
) {
428 DRM_DEBUG_KMS("fallback: cloned configuration\n");
433 DRM_DEBUG_KMS("looking for cmdline mode on connector %s\n",
436 /* go for command line mode first */
437 modes
[i
] = drm_pick_cmdline_mode(fb_conn
, width
, height
);
439 /* try for preferred next */
441 DRM_DEBUG_KMS("looking for preferred mode on connector %s %d\n",
442 connector
->name
, connector
->has_tile
);
443 modes
[i
] = drm_has_preferred_mode(fb_conn
, width
,
447 /* No preferred mode marked by the EDID? Are there any modes? */
448 if (!modes
[i
] && !list_empty(&connector
->modes
)) {
449 DRM_DEBUG_KMS("using first mode listed on connector %s\n",
451 modes
[i
] = list_first_entry(&connector
->modes
,
452 struct drm_display_mode
,
456 /* last resort: use current mode */
459 * IMPORTANT: We want to use the adjusted mode (i.e.
460 * after the panel fitter upscaling) as the initial
461 * config, not the input mode, which is what crtc->mode
462 * usually contains. But since our current
463 * code puts a mode derived from the post-pfit timings
464 * into crtc->mode this works out correctly.
466 DRM_DEBUG_KMS("looking for current mode on connector %s\n",
468 modes
[i
] = &encoder
->crtc
->mode
;
472 DRM_DEBUG_KMS("connector %s on pipe %c [CRTC:%d]: %dx%d%s\n",
474 pipe_name(to_intel_crtc(encoder
->crtc
)->pipe
),
475 encoder
->crtc
->base
.id
,
476 modes
[i
]->hdisplay
, modes
[i
]->vdisplay
,
477 modes
[i
]->flags
& DRM_MODE_FLAG_INTERLACE
? "i" :"");
480 conn_configured
|= (1 << i
);
483 if ((conn_configured
& mask
) != mask
) {
489 * If the BIOS didn't enable everything it could, fall back to have the
490 * same user experiencing of lighting up as much as possible like the
491 * fbdev helper library.
493 if (num_connectors_enabled
!= num_connectors_detected
&&
494 num_connectors_enabled
< INTEL_INFO(dev
)->num_pipes
) {
495 DRM_DEBUG_KMS("fallback: Not all outputs enabled\n");
496 DRM_DEBUG_KMS("Enabled: %i, detected: %i\n", num_connectors_enabled
,
497 num_connectors_detected
);
503 DRM_DEBUG_KMS("Not using firmware configuration\n");
504 memcpy(enabled
, save_enabled
, dev
->mode_config
.num_connector
);
513 static const struct drm_fb_helper_funcs intel_fb_helper_funcs
= {
514 .initial_config
= intel_fb_initial_config
,
515 .gamma_set
= intel_crtc_fb_gamma_set
,
516 .gamma_get
= intel_crtc_fb_gamma_get
,
517 .fb_probe
= intelfb_create
,
520 static void intel_fbdev_destroy(struct drm_device
*dev
,
521 struct intel_fbdev
*ifbdev
)
524 drm_fb_helper_unregister_fbi(&ifbdev
->helper
);
525 drm_fb_helper_release_fbi(&ifbdev
->helper
);
527 drm_fb_helper_fini(&ifbdev
->helper
);
529 drm_framebuffer_unregister_private(&ifbdev
->fb
->base
);
530 drm_framebuffer_remove(&ifbdev
->fb
->base
);
534 * Build an intel_fbdev struct using a BIOS allocated framebuffer, if possible.
535 * The core display code will have read out the current plane configuration,
536 * so we use that to figure out if there's an object for us to use as the
537 * fb, and if so, we re-use it for the fbdev configuration.
539 * Note we only support a single fb shared across pipes for boot (mostly for
540 * fbcon), so we just find the biggest and use that.
542 static bool intel_fbdev_init_bios(struct drm_device
*dev
,
543 struct intel_fbdev
*ifbdev
)
545 struct intel_framebuffer
*fb
= NULL
;
546 struct drm_crtc
*crtc
;
547 struct intel_crtc
*intel_crtc
;
548 unsigned int max_size
= 0;
550 /* Find the largest fb */
551 for_each_crtc(dev
, crtc
) {
552 struct drm_i915_gem_object
*obj
=
553 intel_fb_obj(crtc
->primary
->state
->fb
);
554 intel_crtc
= to_intel_crtc(crtc
);
556 if (!crtc
->state
->active
|| !obj
) {
557 DRM_DEBUG_KMS("pipe %c not active or no fb, skipping\n",
558 pipe_name(intel_crtc
->pipe
));
562 if (obj
->base
.size
> max_size
) {
563 DRM_DEBUG_KMS("found possible fb from plane %c\n",
564 pipe_name(intel_crtc
->pipe
));
565 fb
= to_intel_framebuffer(crtc
->primary
->state
->fb
);
566 max_size
= obj
->base
.size
;
571 DRM_DEBUG_KMS("no active fbs found, not using BIOS config\n");
575 /* Now make sure all the pipes will fit into it */
576 for_each_crtc(dev
, crtc
) {
577 unsigned int cur_size
;
579 intel_crtc
= to_intel_crtc(crtc
);
581 if (!crtc
->state
->active
) {
582 DRM_DEBUG_KMS("pipe %c not active, skipping\n",
583 pipe_name(intel_crtc
->pipe
));
587 DRM_DEBUG_KMS("checking plane %c for BIOS fb\n",
588 pipe_name(intel_crtc
->pipe
));
591 * See if the plane fb we found above will fit on this
592 * pipe. Note we need to use the selected fb's pitch and bpp
593 * rather than the current pipe's, since they differ.
595 cur_size
= intel_crtc
->config
->base
.adjusted_mode
.crtc_hdisplay
;
596 cur_size
= cur_size
* fb
->base
.bits_per_pixel
/ 8;
597 if (fb
->base
.pitches
[0] < cur_size
) {
598 DRM_DEBUG_KMS("fb not wide enough for plane %c (%d vs %d)\n",
599 pipe_name(intel_crtc
->pipe
),
600 cur_size
, fb
->base
.pitches
[0]);
605 cur_size
= intel_crtc
->config
->base
.adjusted_mode
.crtc_vdisplay
;
606 cur_size
= intel_fb_align_height(dev
, cur_size
,
607 fb
->base
.pixel_format
,
608 fb
->base
.modifier
[0]);
609 cur_size
*= fb
->base
.pitches
[0];
610 DRM_DEBUG_KMS("pipe %c area: %dx%d, bpp: %d, size: %d\n",
611 pipe_name(intel_crtc
->pipe
),
612 intel_crtc
->config
->base
.adjusted_mode
.crtc_hdisplay
,
613 intel_crtc
->config
->base
.adjusted_mode
.crtc_vdisplay
,
614 fb
->base
.bits_per_pixel
,
617 if (cur_size
> max_size
) {
618 DRM_DEBUG_KMS("fb not big enough for plane %c (%d vs %d)\n",
619 pipe_name(intel_crtc
->pipe
),
625 DRM_DEBUG_KMS("fb big enough for plane %c (%d >= %d)\n",
626 pipe_name(intel_crtc
->pipe
),
631 DRM_DEBUG_KMS("BIOS fb not suitable for all pipes, not using\n");
635 ifbdev
->preferred_bpp
= fb
->base
.bits_per_pixel
;
638 drm_framebuffer_reference(&ifbdev
->fb
->base
);
640 /* Final pass to check if any active pipes don't have fbs */
641 for_each_crtc(dev
, crtc
) {
642 intel_crtc
= to_intel_crtc(crtc
);
644 if (!crtc
->state
->active
)
647 WARN(!crtc
->primary
->fb
,
648 "re-used BIOS config but lost an fb on crtc %d\n",
653 DRM_DEBUG_KMS("using BIOS fb for initial console\n");
661 static void intel_fbdev_suspend_worker(struct work_struct
*work
)
663 intel_fbdev_set_suspend(container_of(work
,
664 struct drm_i915_private
,
665 fbdev_suspend_work
)->dev
,
666 FBINFO_STATE_RUNNING
,
670 int intel_fbdev_init(struct drm_device
*dev
)
672 struct intel_fbdev
*ifbdev
;
673 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
676 if (WARN_ON(INTEL_INFO(dev
)->num_pipes
== 0))
679 ifbdev
= kzalloc(sizeof(struct intel_fbdev
), GFP_KERNEL
);
683 drm_fb_helper_prepare(dev
, &ifbdev
->helper
, &intel_fb_helper_funcs
);
685 if (!intel_fbdev_init_bios(dev
, ifbdev
))
686 ifbdev
->preferred_bpp
= 32;
688 ret
= drm_fb_helper_init(dev
, &ifbdev
->helper
,
689 INTEL_INFO(dev
)->num_pipes
, 4);
695 ifbdev
->helper
.atomic
= true;
697 dev_priv
->fbdev
= ifbdev
;
698 INIT_WORK(&dev_priv
->fbdev_suspend_work
, intel_fbdev_suspend_worker
);
700 drm_fb_helper_single_add_all_connectors(&ifbdev
->helper
);
705 void intel_fbdev_initial_config(void *data
, async_cookie_t cookie
)
707 struct drm_i915_private
*dev_priv
= data
;
708 struct intel_fbdev
*ifbdev
= dev_priv
->fbdev
;
710 /* Due to peculiar init order wrt to hpd handling this is separate. */
711 drm_fb_helper_initial_config(&ifbdev
->helper
, ifbdev
->preferred_bpp
);
714 void intel_fbdev_fini(struct drm_device
*dev
)
716 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
717 if (!dev_priv
->fbdev
)
720 flush_work(&dev_priv
->fbdev_suspend_work
);
722 async_synchronize_full();
723 intel_fbdev_destroy(dev
, dev_priv
->fbdev
);
724 kfree(dev_priv
->fbdev
);
725 dev_priv
->fbdev
= NULL
;
728 void intel_fbdev_set_suspend(struct drm_device
*dev
, int state
, bool synchronous
)
730 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
731 struct intel_fbdev
*ifbdev
= dev_priv
->fbdev
;
732 struct fb_info
*info
;
737 info
= ifbdev
->helper
.fbdev
;
740 /* Flush any pending work to turn the console on, and then
741 * wait to turn it off. It must be synchronous as we are
742 * about to suspend or unload the driver.
744 * Note that from within the work-handler, we cannot flush
745 * ourselves, so only flush outstanding work upon suspend!
747 if (state
!= FBINFO_STATE_RUNNING
)
748 flush_work(&dev_priv
->fbdev_suspend_work
);
752 * The console lock can be pretty contented on resume due
753 * to all the printk activity. Try to keep it out of the hot
754 * path of resume if possible.
756 WARN_ON(state
!= FBINFO_STATE_RUNNING
);
757 if (!console_trylock()) {
758 /* Don't block our own workqueue as this can
759 * be run in parallel with other i915.ko tasks.
761 schedule_work(&dev_priv
->fbdev_suspend_work
);
766 /* On resume from hibernation: If the object is shmemfs backed, it has
767 * been restored from swap. If the object is stolen however, it will be
768 * full of whatever garbage was left in there.
770 if (state
== FBINFO_STATE_RUNNING
&& ifbdev
->fb
->obj
->stolen
)
771 memset_io(info
->screen_base
, 0, info
->screen_size
);
773 drm_fb_helper_set_suspend(&ifbdev
->helper
, state
);
777 void intel_fbdev_output_poll_changed(struct drm_device
*dev
)
779 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
781 drm_fb_helper_hotplug_event(&dev_priv
->fbdev
->helper
);
784 void intel_fbdev_restore_mode(struct drm_device
*dev
)
787 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
788 struct intel_fbdev
*ifbdev
= dev_priv
->fbdev
;
789 struct drm_fb_helper
*fb_helper
;
794 fb_helper
= &ifbdev
->helper
;
796 ret
= drm_fb_helper_restore_fbdev_mode_unlocked(fb_helper
);
798 DRM_DEBUG("failed to restore crtc mode\n");
800 mutex_lock(&fb_helper
->dev
->struct_mutex
);
801 intel_fb_obj_invalidate(ifbdev
->fb
->obj
, ORIGIN_GTT
);
802 mutex_unlock(&fb_helper
->dev
->struct_mutex
);