blob: b791f2374f3b54cb8643735c142918dd12413054 [file] [log] [blame]
Jesse Barnes79e53942008-11-07 14:24:08 -08001/*
2 * Copyright © 2007 David Airlie
3 *
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:
10 *
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
13 * Software.
14 *
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.
22 *
23 * Authors:
24 * David Airlie
25 */
26
Jesse Barnesd1d70672014-05-28 14:39:03 -070027#include <linux/async.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080028#include <linux/module.h>
29#include <linux/kernel.h>
Chris Wilson82e3b8c2014-08-13 13:09:46 +010030#include <linux/console.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080031#include <linux/errno.h>
32#include <linux/string.h>
33#include <linux/mm.h>
34#include <linux/tty.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080035#include <linux/sysrq.h>
36#include <linux/delay.h>
37#include <linux/fb.h>
38#include <linux/init.h>
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100039#include <linux/vga_switcheroo.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080040
David Howells760285e2012-10-02 18:01:07 +010041#include <drm/drmP.h>
42#include <drm/drm_crtc.h>
43#include <drm/drm_fb_helper.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080044#include "intel_drv.h"
David Howells760285e2012-10-02 18:01:07 +010045#include <drm/i915_drm.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080046#include "i915_drv.h"
47
Daniel Vettere9910772014-06-18 15:05:19 +020048static int intel_fbdev_set_par(struct fb_info *info)
49{
50 struct drm_fb_helper *fb_helper = info->par;
51 struct intel_fbdev *ifbdev =
52 container_of(fb_helper, struct intel_fbdev, helper);
53 int ret;
54
55 ret = drm_fb_helper_set_par(info);
56
57 if (ret == 0) {
58 /*
59 * FIXME: fbdev presumes that all callbacks also work from
60 * atomic contexts and relies on that for emergency oops
61 * printing. KMS totally doesn't do that and the locking here is
62 * by far not the only place this goes wrong. Ignore this for
63 * now until we solve this for real.
64 */
65 mutex_lock(&fb_helper->dev->struct_mutex);
Rodrigo Viviaba6da32015-07-09 09:56:41 -070066 intel_fb_obj_invalidate(ifbdev->fb->obj, ORIGIN_GTT);
Daniel Vettere9910772014-06-18 15:05:19 +020067 mutex_unlock(&fb_helper->dev->struct_mutex);
68 }
69
70 return ret;
71}
72
Rodrigo Vivi03e515f2015-03-09 17:57:07 -070073static int intel_fbdev_blank(int blank, struct fb_info *info)
74{
75 struct drm_fb_helper *fb_helper = info->par;
76 struct intel_fbdev *ifbdev =
77 container_of(fb_helper, struct intel_fbdev, helper);
78 int ret;
79
80 ret = drm_fb_helper_blank(blank, info);
81
82 if (ret == 0) {
83 /*
84 * FIXME: fbdev presumes that all callbacks also work from
85 * atomic contexts and relies on that for emergency oops
86 * printing. KMS totally doesn't do that and the locking here is
87 * by far not the only place this goes wrong. Ignore this for
88 * now until we solve this for real.
89 */
90 mutex_lock(&fb_helper->dev->struct_mutex);
Rodrigo Vivi77a0d1c2015-06-18 11:43:24 -070091 intel_fb_obj_invalidate(ifbdev->fb->obj, ORIGIN_GTT);
Rodrigo Vivi03e515f2015-03-09 17:57:07 -070092 mutex_unlock(&fb_helper->dev->struct_mutex);
93 }
94
95 return ret;
96}
97
Rodrigo Vivid9a946b2015-05-28 10:26:58 -070098static int intel_fbdev_pan_display(struct fb_var_screeninfo *var,
99 struct fb_info *info)
100{
101 struct drm_fb_helper *fb_helper = info->par;
102 struct intel_fbdev *ifbdev =
103 container_of(fb_helper, struct intel_fbdev, helper);
104
105 int ret;
106 ret = drm_fb_helper_pan_display(var, info);
107
108 if (ret == 0) {
109 /*
110 * FIXME: fbdev presumes that all callbacks also work from
111 * atomic contexts and relies on that for emergency oops
112 * printing. KMS totally doesn't do that and the locking here is
113 * by far not the only place this goes wrong. Ignore this for
114 * now until we solve this for real.
115 */
116 mutex_lock(&fb_helper->dev->struct_mutex);
Rodrigo Vivi77a0d1c2015-06-18 11:43:24 -0700117 intel_fb_obj_invalidate(ifbdev->fb->obj, ORIGIN_GTT);
Rodrigo Vivid9a946b2015-05-28 10:26:58 -0700118 mutex_unlock(&fb_helper->dev->struct_mutex);
119 }
120
121 return ret;
122}
123
Jesse Barnes79e53942008-11-07 14:24:08 -0800124static struct fb_ops intelfb_ops = {
125 .owner = THIS_MODULE,
Dave Airlie785b93e2009-08-28 15:46:53 +1000126 .fb_check_var = drm_fb_helper_check_var,
Daniel Vettere9910772014-06-18 15:05:19 +0200127 .fb_set_par = intel_fbdev_set_par,
Jesse Barnes79e53942008-11-07 14:24:08 -0800128 .fb_fillrect = cfb_fillrect,
129 .fb_copyarea = cfb_copyarea,
130 .fb_imageblit = cfb_imageblit,
Rodrigo Vivid9a946b2015-05-28 10:26:58 -0700131 .fb_pan_display = intel_fbdev_pan_display,
Rodrigo Vivi03e515f2015-03-09 17:57:07 -0700132 .fb_blank = intel_fbdev_blank,
Dave Airlie068143d2009-10-05 09:58:02 +1000133 .fb_setcmap = drm_fb_helper_setcmap,
Jesse Barnes81255562010-08-02 12:07:50 -0700134 .fb_debug_enter = drm_fb_helper_debug_enter,
135 .fb_debug_leave = drm_fb_helper_debug_leave,
Jesse Barnes79e53942008-11-07 14:24:08 -0800136};
137
Jesse Barnes8b4f49e2013-11-25 15:51:16 -0800138static int intelfb_alloc(struct drm_fb_helper *helper,
139 struct drm_fb_helper_surface_size *sizes)
Jesse Barnes79e53942008-11-07 14:24:08 -0800140{
Ville Syrjälä34308242013-05-31 20:07:05 +0300141 struct intel_fbdev *ifbdev =
142 container_of(helper, struct intel_fbdev, helper);
Daniel Vettera8bb6812014-02-10 18:00:39 +0100143 struct drm_framebuffer *fb;
Ville Syrjälä34308242013-05-31 20:07:05 +0300144 struct drm_device *dev = helper->dev;
Ville Syrjälä3a7f2f62012-05-24 21:08:56 +0300145 struct drm_mode_fb_cmd2 mode_cmd = {};
Chris Wilson05394f32010-11-08 19:18:58 +0000146 struct drm_i915_gem_object *obj;
James Simmons57084d02010-12-20 19:10:39 +0000147 int size, ret;
Jesse Barnes79e53942008-11-07 14:24:08 -0800148
Dave Airlieb8c00ac2009-10-06 13:54:01 +1000149 /* we don't do packed 24bpp */
Dave Airlie38651672010-03-30 05:34:13 +0000150 if (sizes->surface_bpp == 24)
151 sizes->surface_bpp = 32;
Dave Airlieb8c00ac2009-10-06 13:54:01 +1000152
Dave Airlie38651672010-03-30 05:34:13 +0000153 mode_cmd.width = sizes->surface_width;
154 mode_cmd.height = sizes->surface_height;
Jesse Barnes79e53942008-11-07 14:24:08 -0800155
Paulo Zanonide45eaf2013-10-18 18:48:24 -0300156 mode_cmd.pitches[0] = ALIGN(mode_cmd.width *
157 DIV_ROUND_UP(sizes->surface_bpp, 8), 64);
Jesse Barnes308e5bc2011-11-14 14:51:28 -0800158 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp,
159 sizes->surface_depth);
Jesse Barnes79e53942008-11-07 14:24:08 -0800160
Jesse Barnes308e5bc2011-11-14 14:51:28 -0800161 size = mode_cmd.pitches[0] * mode_cmd.height;
Fabian Frederick1267a262014-07-01 20:39:41 +0200162 size = PAGE_ALIGN(size);
Chris Wilson0ffb0ff2012-11-15 11:32:27 +0000163 obj = i915_gem_object_create_stolen(dev, size);
164 if (obj == NULL)
165 obj = i915_gem_alloc_object(dev, size);
Chris Wilson05394f32010-11-08 19:18:58 +0000166 if (!obj) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700167 DRM_ERROR("failed to allocate framebuffer\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800168 ret = -ENOMEM;
169 goto out;
170 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800171
Daniel Vettera8bb6812014-02-10 18:00:39 +0100172 fb = __intel_framebuffer_create(dev, &mode_cmd, obj);
173 if (IS_ERR(fb)) {
174 ret = PTR_ERR(fb);
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +0000175 goto out_unref;
176 }
177
178 /* Flush everything out, we'll be doing GTT only from now on */
John Harrison91af1272015-06-18 13:14:56 +0100179 ret = intel_pin_and_fence_fb_obj(NULL, fb, NULL, NULL, NULL);
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +0000180 if (ret) {
181 DRM_ERROR("failed to pin obj: %d\n", ret);
182 goto out_fb;
Daniel Vettera8bb6812014-02-10 18:00:39 +0100183 }
184
185 ifbdev->fb = to_intel_framebuffer(fb);
Jesse Barnes8b4f49e2013-11-25 15:51:16 -0800186
187 return 0;
188
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +0000189out_fb:
190 drm_framebuffer_remove(fb);
Jesse Barnes8b4f49e2013-11-25 15:51:16 -0800191out_unref:
192 drm_gem_object_unreference(&obj->base);
193out:
194 return ret;
195}
196
197static int intelfb_create(struct drm_fb_helper *helper,
198 struct drm_fb_helper_surface_size *sizes)
199{
200 struct intel_fbdev *ifbdev =
201 container_of(helper, struct intel_fbdev, helper);
Jesse Barnes8bcd4552014-02-07 12:10:38 -0800202 struct intel_framebuffer *intel_fb = ifbdev->fb;
Jesse Barnes8b4f49e2013-11-25 15:51:16 -0800203 struct drm_device *dev = helper->dev;
204 struct drm_i915_private *dev_priv = dev->dev_private;
205 struct fb_info *info;
206 struct drm_framebuffer *fb;
207 struct drm_i915_gem_object *obj;
208 int size, ret;
Jesse Barnesd978ef12014-03-07 08:57:51 -0800209 bool prealloc = false;
Jesse Barnes8b4f49e2013-11-25 15:51:16 -0800210
211 mutex_lock(&dev->struct_mutex);
212
Chris Wilsonedd586f2014-04-23 08:54:31 +0100213 if (intel_fb &&
214 (sizes->fb_width > intel_fb->base.width ||
215 sizes->fb_height > intel_fb->base.height)) {
216 DRM_DEBUG_KMS("BIOS fb too small (%dx%d), we require (%dx%d),"
217 " releasing it\n",
218 intel_fb->base.width, intel_fb->base.height,
219 sizes->fb_width, sizes->fb_height);
220 drm_framebuffer_unreference(&intel_fb->base);
221 intel_fb = ifbdev->fb = NULL;
222 }
Jesse Barnes8bcd4552014-02-07 12:10:38 -0800223 if (!intel_fb || WARN_ON(!intel_fb->obj)) {
Jesse Barnes48e92122013-11-26 11:25:54 -0800224 DRM_DEBUG_KMS("no BIOS fb, allocating a new one\n");
Jesse Barnes8b4f49e2013-11-25 15:51:16 -0800225 ret = intelfb_alloc(helper, sizes);
226 if (ret)
227 goto out_unlock;
Jesse Barnes8bcd4552014-02-07 12:10:38 -0800228 intel_fb = ifbdev->fb;
Jesse Barnes8b4f49e2013-11-25 15:51:16 -0800229 } else {
Jesse Barnes48e92122013-11-26 11:25:54 -0800230 DRM_DEBUG_KMS("re-using BIOS fb\n");
Jesse Barnesd978ef12014-03-07 08:57:51 -0800231 prealloc = true;
Jesse Barnes8b4f49e2013-11-25 15:51:16 -0800232 sizes->fb_width = intel_fb->base.width;
233 sizes->fb_height = intel_fb->base.height;
234 }
235
236 obj = intel_fb->obj;
237 size = obj->base.size;
238
239 info = framebuffer_alloc(0, &dev->pdev->dev);
Jesse Barnes79e53942008-11-07 14:24:08 -0800240 if (!info) {
241 ret = -ENOMEM;
Chris Wilsonb4476f52009-02-11 14:26:36 +0000242 goto out_unpin;
Jesse Barnes79e53942008-11-07 14:24:08 -0800243 }
244
Ville Syrjälä34308242013-05-31 20:07:05 +0300245 info->par = helper;
Jesse Barnes79e53942008-11-07 14:24:08 -0800246
Jesse Barnes8bcd4552014-02-07 12:10:38 -0800247 fb = &ifbdev->fb->base;
Dave Airlie38651672010-03-30 05:34:13 +0000248
249 ifbdev->helper.fb = fb;
250 ifbdev->helper.fbdev = info;
Dave Airlie785b93e2009-08-28 15:46:53 +1000251
Jesse Barnes79e53942008-11-07 14:24:08 -0800252 strcpy(info->fix.id, "inteldrmfb");
Jesse Barnes79e53942008-11-07 14:24:08 -0800253
Jesse Barnes8fd4bd22010-06-23 12:56:12 -0700254 info->flags = FBINFO_DEFAULT | FBINFO_CAN_FORCE_OUTPUT;
Jesse Barnes79e53942008-11-07 14:24:08 -0800255 info->fbops = &intelfb_ops;
256
Chris Wilson35c30472010-12-22 14:07:12 +0000257 ret = fb_alloc_cmap(&info->cmap, 256, 0);
258 if (ret) {
259 ret = -ENOMEM;
260 goto out_unpin;
261 }
Dave Airlie4410f392009-06-16 15:34:38 -0700262 /* setup aperture base/size for vesafb takeover */
Marcin Slusarz1471ca92010-05-16 17:27:03 +0200263 info->apertures = alloc_apertures(1);
264 if (!info->apertures) {
265 ret = -ENOMEM;
266 goto out_unpin;
267 }
268 info->apertures->ranges[0].base = dev->mode_config.fb_base;
Ben Widawsky93d18792013-01-17 12:45:17 -0800269 info->apertures->ranges[0].size = dev_priv->gtt.mappable_end;
Dave Airlie4410f392009-06-16 15:34:38 -0700270
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700271 info->fix.smem_start = dev->mode_config.fb_base + i915_gem_obj_ggtt_offset(obj);
Jesse Barnes79e53942008-11-07 14:24:08 -0800272 info->fix.smem_len = size;
273
Daniel Vetterdd2757f2012-06-07 15:55:57 +0200274 info->screen_base =
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700275 ioremap_wc(dev_priv->gtt.mappable_base + i915_gem_obj_ggtt_offset(obj),
Daniel Vetterdd2757f2012-06-07 15:55:57 +0200276 size);
Jesse Barnes79e53942008-11-07 14:24:08 -0800277 if (!info->screen_base) {
278 ret = -ENOSPC;
Chris Wilsonb4476f52009-02-11 14:26:36 +0000279 goto out_unpin;
Jesse Barnes79e53942008-11-07 14:24:08 -0800280 }
281 info->screen_size = size;
282
Jesse Barnes24576d22013-03-26 09:25:45 -0700283 /* This driver doesn't need a VT switch to restore the mode on resume */
284 info->skip_vt_switch = true;
285
Ville Syrjälä01f2c772011-12-20 00:06:49 +0200286 drm_fb_helper_fill_fix(info, fb->pitches[0], fb->depth);
Dave Airlie38651672010-03-30 05:34:13 +0000287 drm_fb_helper_fill_var(info, &ifbdev->helper, sizes->fb_width, sizes->fb_height);
Jesse Barnes79e53942008-11-07 14:24:08 -0800288
Chris Wilson88afe712012-12-16 12:15:41 +0000289 /* If the object is shmemfs backed, it will have given us zeroed pages.
290 * If the object is stolen however, it will be full of whatever
291 * garbage was left in there.
292 */
Jesse Barnesd978ef12014-03-07 08:57:51 -0800293 if (ifbdev->fb->obj->stolen && !prealloc)
Chris Wilson88afe712012-12-16 12:15:41 +0000294 memset_io(info->screen_base, 0, info->screen_size);
295
Sascha Hauerfb2a99e2012-02-06 10:58:19 +0100296 /* Use default scratch pixmap (info->pixmap.flags = FB_PIXMAP_SYSTEM) */
Jesse Barnes79e53942008-11-07 14:24:08 -0800297
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700298 DRM_DEBUG_KMS("allocated %dx%d fb: 0x%08lx, bo %p\n",
Dave Airlie8be48d92010-03-30 05:34:14 +0000299 fb->width, fb->height,
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700300 i915_gem_obj_ggtt_offset(obj), obj);
Jesse Barnes79e53942008-11-07 14:24:08 -0800301
302 mutex_unlock(&dev->struct_mutex);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000303 vga_switcheroo_client_fb_set(dev->pdev, info);
Jesse Barnes79e53942008-11-07 14:24:08 -0800304 return 0;
305
Chris Wilsonb4476f52009-02-11 14:26:36 +0000306out_unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800307 i915_gem_object_ggtt_unpin(obj);
Chris Wilson05394f32010-11-08 19:18:58 +0000308 drm_gem_object_unreference(&obj->base);
Jesse Barnes8b4f49e2013-11-25 15:51:16 -0800309out_unlock:
Jesse Barnes79e53942008-11-07 14:24:08 -0800310 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -0800311 return ret;
312}
313
Paulo Zanoni67437682013-09-24 13:52:56 -0300314/** Sets the color ramps on behalf of RandR */
315static void intel_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
316 u16 blue, int regno)
317{
318 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
319
320 intel_crtc->lut_r[regno] = red >> 8;
321 intel_crtc->lut_g[regno] = green >> 8;
322 intel_crtc->lut_b[regno] = blue >> 8;
323}
324
325static void intel_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
326 u16 *blue, int regno)
327{
328 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
329
330 *red = intel_crtc->lut_r[regno] << 8;
331 *green = intel_crtc->lut_g[regno] << 8;
332 *blue = intel_crtc->lut_b[regno] << 8;
333}
334
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800335static struct drm_fb_helper_crtc *
336intel_fb_helper_crtc(struct drm_fb_helper *fb_helper, struct drm_crtc *crtc)
337{
338 int i;
339
340 for (i = 0; i < fb_helper->crtc_count; i++)
341 if (fb_helper->crtc_info[i].mode_set.crtc == crtc)
342 return &fb_helper->crtc_info[i];
343
344 return NULL;
345}
346
347/*
348 * Try to read the BIOS display configuration and use it for the initial
349 * fb configuration.
350 *
351 * The BIOS or boot loader will generally create an initial display
352 * configuration for us that includes some set of active pipes and displays.
353 * This routine tries to figure out which pipes and connectors are active
354 * and stuffs them into the crtcs and modes array given to us by the
355 * drm_fb_helper code.
356 *
357 * The overall sequence is:
358 * intel_fbdev_init - from driver load
359 * intel_fbdev_init_bios - initialize the intel_fbdev using BIOS data
360 * drm_fb_helper_init - build fb helper structs
361 * drm_fb_helper_single_add_all_connectors - more fb helper structs
362 * intel_fbdev_initial_config - apply the config
363 * drm_fb_helper_initial_config - call ->probe then register_framebuffer()
364 * drm_setup_crtcs - build crtc config for fbdev
365 * intel_fb_initial_config - find active connectors etc
366 * drm_fb_helper_single_fb_probe - set up fbdev
367 * intelfb_create - re-use or alloc fb, build out fbdev structs
368 *
369 * Note that we don't make special consideration whether we could actually
370 * switch to the selected modes without a full modeset. E.g. when the display
371 * is in VGA mode we need to recalculate watermarks and set a new high-res
372 * framebuffer anyway.
373 */
374static bool intel_fb_initial_config(struct drm_fb_helper *fb_helper,
375 struct drm_fb_helper_crtc **crtcs,
376 struct drm_display_mode **modes,
Dave Airlieb0ee9e72014-10-20 16:31:53 +1000377 struct drm_fb_offset *offsets,
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800378 bool *enabled, int width, int height)
379{
Jesse Barnes02f5eeb2014-02-12 15:03:40 -0800380 struct drm_device *dev = fb_helper->dev;
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800381 int i, j;
Jesse Barnes02f5eeb2014-02-12 15:03:40 -0800382 bool *save_enabled;
Daniel Vetter7c2bb532014-03-04 21:08:41 +0100383 bool fallback = true;
Daniel Vetter7e696e42014-03-04 21:08:42 +0100384 int num_connectors_enabled = 0;
385 int num_connectors_detected = 0;
Dave Airlieb0ee9e72014-10-20 16:31:53 +1000386 uint64_t conn_configured = 0, mask;
387 int pass = 0;
Jesse Barnes02f5eeb2014-02-12 15:03:40 -0800388
389 save_enabled = kcalloc(dev->mode_config.num_connector, sizeof(bool),
390 GFP_KERNEL);
391 if (!save_enabled)
392 return false;
393
394 memcpy(save_enabled, enabled, dev->mode_config.num_connector);
Dave Airlieb0ee9e72014-10-20 16:31:53 +1000395 mask = (1 << fb_helper->connector_count) - 1;
396retry:
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800397 for (i = 0; i < fb_helper->connector_count; i++) {
398 struct drm_fb_helper_connector *fb_conn;
399 struct drm_connector *connector;
400 struct drm_encoder *encoder;
401 struct drm_fb_helper_crtc *new_crtc;
402
403 fb_conn = fb_helper->connector_info[i];
404 connector = fb_conn->connector;
Daniel Vetter7e696e42014-03-04 21:08:42 +0100405
Dave Airlieb0ee9e72014-10-20 16:31:53 +1000406 if (conn_configured & (1 << i))
407 continue;
408
409 if (pass == 0 && !connector->has_tile)
410 continue;
411
Daniel Vetter7e696e42014-03-04 21:08:42 +0100412 if (connector->status == connector_status_connected)
413 num_connectors_detected++;
414
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800415 if (!enabled[i]) {
Chris Wilsonc0c97622014-05-13 13:45:09 +0100416 DRM_DEBUG_KMS("connector %s not enabled, skipping\n",
Jani Nikulac23cc412014-06-03 14:56:17 +0300417 connector->name);
Dave Airlieb0ee9e72014-10-20 16:31:53 +1000418 conn_configured |= (1 << i);
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800419 continue;
420 }
421
Chris Wilsond84a0f32014-08-18 10:35:29 -0700422 if (connector->force == DRM_FORCE_OFF) {
423 DRM_DEBUG_KMS("connector %s is disabled by user, skipping\n",
424 connector->name);
425 enabled[i] = false;
426 continue;
427 }
428
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800429 encoder = connector->encoder;
430 if (!encoder || WARN_ON(!encoder->crtc)) {
Chris Wilsond84a0f32014-08-18 10:35:29 -0700431 if (connector->force > DRM_FORCE_OFF)
432 goto bail;
433
Chris Wilsonc0c97622014-05-13 13:45:09 +0100434 DRM_DEBUG_KMS("connector %s has no encoder or crtc, skipping\n",
Jani Nikulac23cc412014-06-03 14:56:17 +0300435 connector->name);
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800436 enabled[i] = false;
Dave Airlieb0ee9e72014-10-20 16:31:53 +1000437 conn_configured |= (1 << i);
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800438 continue;
439 }
440
Daniel Vetter7e696e42014-03-04 21:08:42 +0100441 num_connectors_enabled++;
442
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800443 new_crtc = intel_fb_helper_crtc(fb_helper, encoder->crtc);
444
445 /*
446 * Make sure we're not trying to drive multiple connectors
447 * with a single CRTC, since our cloning support may not
448 * match the BIOS.
449 */
450 for (j = 0; j < fb_helper->connector_count; j++) {
Jesse Barnes02f5eeb2014-02-12 15:03:40 -0800451 if (crtcs[j] == new_crtc) {
Daniel Vetter7e696e42014-03-04 21:08:42 +0100452 DRM_DEBUG_KMS("fallback: cloned configuration\n");
Chris Wilsond84a0f32014-08-18 10:35:29 -0700453 goto bail;
Jesse Barnes02f5eeb2014-02-12 15:03:40 -0800454 }
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800455 }
456
Chris Wilsonc0c97622014-05-13 13:45:09 +0100457 DRM_DEBUG_KMS("looking for cmdline mode on connector %s\n",
Jani Nikulac23cc412014-06-03 14:56:17 +0300458 connector->name);
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800459
460 /* go for command line mode first */
461 modes[i] = drm_pick_cmdline_mode(fb_conn, width, height);
462
463 /* try for preferred next */
464 if (!modes[i]) {
Dave Airlieb0ee9e72014-10-20 16:31:53 +1000465 DRM_DEBUG_KMS("looking for preferred mode on connector %s %d\n",
466 connector->name, connector->has_tile);
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800467 modes[i] = drm_has_preferred_mode(fb_conn, width,
468 height);
469 }
470
Chris Wilsonafba0b52014-05-13 16:07:37 +0100471 /* No preferred mode marked by the EDID? Are there any modes? */
472 if (!modes[i] && !list_empty(&connector->modes)) {
473 DRM_DEBUG_KMS("using first mode listed on connector %s\n",
Dave Airlie8d4ad9d2014-06-05 20:28:59 +1000474 connector->name);
Chris Wilsonafba0b52014-05-13 16:07:37 +0100475 modes[i] = list_first_entry(&connector->modes,
476 struct drm_display_mode,
477 head);
478 }
479
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800480 /* last resort: use current mode */
481 if (!modes[i]) {
482 /*
483 * IMPORTANT: We want to use the adjusted mode (i.e.
484 * after the panel fitter upscaling) as the initial
485 * config, not the input mode, which is what crtc->mode
486 * usually contains. But since our current fastboot
487 * code puts a mode derived from the post-pfit timings
488 * into crtc->mode this works out correctly. We don't
489 * use hwmode anywhere right now, so use it for this
490 * since the fb helper layer wants a pointer to
491 * something we own.
492 */
Chris Wilsonc0c97622014-05-13 13:45:09 +0100493 DRM_DEBUG_KMS("looking for current mode on connector %s\n",
Jani Nikulac23cc412014-06-03 14:56:17 +0300494 connector->name);
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800495 intel_mode_from_pipe_config(&encoder->crtc->hwmode,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200496 to_intel_crtc(encoder->crtc)->config);
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800497 modes[i] = &encoder->crtc->hwmode;
498 }
499 crtcs[i] = new_crtc;
500
Damien Lespiaufdaf66d2014-06-06 18:22:06 +0100501 DRM_DEBUG_KMS("connector %s on pipe %c [CRTC:%d]: %dx%d%s\n",
Jani Nikulac23cc412014-06-03 14:56:17 +0300502 connector->name,
Chris Wilsonc0c97622014-05-13 13:45:09 +0100503 pipe_name(to_intel_crtc(encoder->crtc)->pipe),
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800504 encoder->crtc->base.id,
Chris Wilsonc0c97622014-05-13 13:45:09 +0100505 modes[i]->hdisplay, modes[i]->vdisplay,
506 modes[i]->flags & DRM_MODE_FLAG_INTERLACE ? "i" :"");
Jesse Barnes02f5eeb2014-02-12 15:03:40 -0800507
Daniel Vetter7c2bb532014-03-04 21:08:41 +0100508 fallback = false;
Dave Airlieb0ee9e72014-10-20 16:31:53 +1000509 conn_configured |= (1 << i);
510 }
511
512 if ((conn_configured & mask) != mask) {
513 pass++;
514 goto retry;
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800515 }
516
Daniel Vetter7e696e42014-03-04 21:08:42 +0100517 /*
518 * If the BIOS didn't enable everything it could, fall back to have the
519 * same user experiencing of lighting up as much as possible like the
520 * fbdev helper library.
521 */
522 if (num_connectors_enabled != num_connectors_detected &&
523 num_connectors_enabled < INTEL_INFO(dev)->num_pipes) {
524 DRM_DEBUG_KMS("fallback: Not all outputs enabled\n");
525 DRM_DEBUG_KMS("Enabled: %i, detected: %i\n", num_connectors_enabled,
526 num_connectors_detected);
527 fallback = true;
528 }
529
Daniel Vetter7c2bb532014-03-04 21:08:41 +0100530 if (fallback) {
Chris Wilsond84a0f32014-08-18 10:35:29 -0700531bail:
Daniel Vetter7e696e42014-03-04 21:08:42 +0100532 DRM_DEBUG_KMS("Not using firmware configuration\n");
Jesse Barnes02f5eeb2014-02-12 15:03:40 -0800533 memcpy(enabled, save_enabled, dev->mode_config.num_connector);
534 kfree(save_enabled);
535 return false;
536 }
537
538 kfree(save_enabled);
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800539 return true;
540}
541
Thierry Reding3a493872014-06-27 17:19:23 +0200542static const struct drm_fb_helper_funcs intel_fb_helper_funcs = {
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800543 .initial_config = intel_fb_initial_config,
Dave Airlie4abe3522010-03-30 05:34:18 +0000544 .gamma_set = intel_crtc_fb_gamma_set,
545 .gamma_get = intel_crtc_fb_gamma_get,
Daniel Vettercd5428a2013-01-21 23:42:49 +0100546 .fb_probe = intelfb_create,
Dave Airlie4abe3522010-03-30 05:34:18 +0000547};
548
Chris Wilson7b4f3992010-10-04 15:33:04 +0100549static void intel_fbdev_destroy(struct drm_device *dev,
550 struct intel_fbdev *ifbdev)
Jesse Barnes79e53942008-11-07 14:24:08 -0800551{
Dave Airlie8be48d92010-03-30 05:34:14 +0000552 if (ifbdev->helper.fbdev) {
Chris Wilsonddfe1562013-08-06 17:43:07 +0100553 struct fb_info *info = ifbdev->helper.fbdev;
554
Jesse Barnes79e53942008-11-07 14:24:08 -0800555 unregister_framebuffer(info);
556 iounmap(info->screen_base);
Dave Airlie4abe3522010-03-30 05:34:18 +0000557 if (info->cmap.len)
558 fb_dealloc_cmap(&info->cmap);
Chris Wilsonddfe1562013-08-06 17:43:07 +0100559
Jesse Barnes79e53942008-11-07 14:24:08 -0800560 framebuffer_release(info);
561 }
562
Dave Airlie4abe3522010-03-30 05:34:18 +0000563 drm_fb_helper_fini(&ifbdev->helper);
Jesse Barnes79e53942008-11-07 14:24:08 -0800564
Jesse Barnes8bcd4552014-02-07 12:10:38 -0800565 drm_framebuffer_unregister_private(&ifbdev->fb->base);
Imre Deak9d661252014-02-12 00:01:10 +0200566 drm_framebuffer_remove(&ifbdev->fb->base);
Jesse Barnes79e53942008-11-07 14:24:08 -0800567}
Dave Airlie38651672010-03-30 05:34:13 +0000568
Jesse Barnesd978ef12014-03-07 08:57:51 -0800569/*
570 * Build an intel_fbdev struct using a BIOS allocated framebuffer, if possible.
571 * The core display code will have read out the current plane configuration,
572 * so we use that to figure out if there's an object for us to use as the
573 * fb, and if so, we re-use it for the fbdev configuration.
574 *
575 * Note we only support a single fb shared across pipes for boot (mostly for
576 * fbcon), so we just find the biggest and use that.
577 */
578static bool intel_fbdev_init_bios(struct drm_device *dev,
579 struct intel_fbdev *ifbdev)
580{
581 struct intel_framebuffer *fb = NULL;
582 struct drm_crtc *crtc;
583 struct intel_crtc *intel_crtc;
Jesse Barnesd978ef12014-03-07 08:57:51 -0800584 unsigned int max_size = 0;
585
586 if (!i915.fastboot)
587 return false;
588
589 /* Find the largest fb */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +0100590 for_each_crtc(dev, crtc) {
Maarten Lankhorst8e9ba312015-07-13 16:30:16 +0200591 struct drm_i915_gem_object *obj =
592 intel_fb_obj(crtc->primary->state->fb);
Jesse Barnesd978ef12014-03-07 08:57:51 -0800593 intel_crtc = to_intel_crtc(crtc);
594
Maarten Lankhorst8e9ba312015-07-13 16:30:16 +0200595 if (!intel_crtc->active || !obj) {
Jesse Barnesd978ef12014-03-07 08:57:51 -0800596 DRM_DEBUG_KMS("pipe %c not active or no fb, skipping\n",
597 pipe_name(intel_crtc->pipe));
598 continue;
599 }
600
Maarten Lankhorst8e9ba312015-07-13 16:30:16 +0200601 if (obj->base.size > max_size) {
Jesse Barnesd978ef12014-03-07 08:57:51 -0800602 DRM_DEBUG_KMS("found possible fb from plane %c\n",
603 pipe_name(intel_crtc->pipe));
Maarten Lankhorst8e9ba312015-07-13 16:30:16 +0200604 fb = to_intel_framebuffer(crtc->primary->state->fb);
605 max_size = obj->base.size;
Jesse Barnesd978ef12014-03-07 08:57:51 -0800606 }
607 }
608
609 if (!fb) {
610 DRM_DEBUG_KMS("no active fbs found, not using BIOS config\n");
611 goto out;
612 }
613
614 /* Now make sure all the pipes will fit into it */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +0100615 for_each_crtc(dev, crtc) {
Jesse Barnesd978ef12014-03-07 08:57:51 -0800616 unsigned int cur_size;
617
618 intel_crtc = to_intel_crtc(crtc);
619
620 if (!intel_crtc->active) {
621 DRM_DEBUG_KMS("pipe %c not active, skipping\n",
622 pipe_name(intel_crtc->pipe));
623 continue;
624 }
625
626 DRM_DEBUG_KMS("checking plane %c for BIOS fb\n",
627 pipe_name(intel_crtc->pipe));
628
629 /*
630 * See if the plane fb we found above will fit on this
Chris Wilsonbc104d12014-03-20 15:11:21 +0000631 * pipe. Note we need to use the selected fb's pitch and bpp
632 * rather than the current pipe's, since they differ.
Jesse Barnesd978ef12014-03-07 08:57:51 -0800633 */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200634 cur_size = intel_crtc->config->base.adjusted_mode.crtc_hdisplay;
Chris Wilsonbc104d12014-03-20 15:11:21 +0000635 cur_size = cur_size * fb->base.bits_per_pixel / 8;
636 if (fb->base.pitches[0] < cur_size) {
637 DRM_DEBUG_KMS("fb not wide enough for plane %c (%d vs %d)\n",
638 pipe_name(intel_crtc->pipe),
639 cur_size, fb->base.pitches[0]);
Chris Wilsonbc104d12014-03-20 15:11:21 +0000640 fb = NULL;
641 break;
642 }
643
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200644 cur_size = intel_crtc->config->base.adjusted_mode.crtc_vdisplay;
Damien Lespiauec2c9812015-01-20 12:51:45 +0000645 cur_size = intel_fb_align_height(dev, cur_size,
Daniel Vetter091df6c2015-02-10 17:16:10 +0000646 fb->base.pixel_format,
647 fb->base.modifier[0]);
Chris Wilsonbc104d12014-03-20 15:11:21 +0000648 cur_size *= fb->base.pitches[0];
649 DRM_DEBUG_KMS("pipe %c area: %dx%d, bpp: %d, size: %d\n",
650 pipe_name(intel_crtc->pipe),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200651 intel_crtc->config->base.adjusted_mode.crtc_hdisplay,
652 intel_crtc->config->base.adjusted_mode.crtc_vdisplay,
Chris Wilsonbc104d12014-03-20 15:11:21 +0000653 fb->base.bits_per_pixel,
Jesse Barnesd978ef12014-03-07 08:57:51 -0800654 cur_size);
Jesse Barnesd978ef12014-03-07 08:57:51 -0800655
656 if (cur_size > max_size) {
657 DRM_DEBUG_KMS("fb not big enough for plane %c (%d vs %d)\n",
658 pipe_name(intel_crtc->pipe),
659 cur_size, max_size);
Jesse Barnesd978ef12014-03-07 08:57:51 -0800660 fb = NULL;
661 break;
662 }
663
664 DRM_DEBUG_KMS("fb big enough for plane %c (%d >= %d)\n",
665 pipe_name(intel_crtc->pipe),
666 max_size, cur_size);
667 }
668
Jesse Barnesd978ef12014-03-07 08:57:51 -0800669 if (!fb) {
670 DRM_DEBUG_KMS("BIOS fb not suitable for all pipes, not using\n");
671 goto out;
672 }
673
Jesse Barnes484b41d2014-03-07 08:57:55 -0800674 ifbdev->preferred_bpp = fb->base.bits_per_pixel;
Jesse Barnesd978ef12014-03-07 08:57:51 -0800675 ifbdev->fb = fb;
676
Jesse Barnes484b41d2014-03-07 08:57:55 -0800677 drm_framebuffer_reference(&ifbdev->fb->base);
Jesse Barnesd978ef12014-03-07 08:57:51 -0800678
679 /* Final pass to check if any active pipes don't have fbs */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +0100680 for_each_crtc(dev, crtc) {
Jesse Barnesd978ef12014-03-07 08:57:51 -0800681 intel_crtc = to_intel_crtc(crtc);
682
683 if (!intel_crtc->active)
684 continue;
685
Dave Airlie66e514c2014-04-03 07:51:54 +1000686 WARN(!crtc->primary->fb,
Jesse Barnesd978ef12014-03-07 08:57:51 -0800687 "re-used BIOS config but lost an fb on crtc %d\n",
688 crtc->base.id);
689 }
690
691
692 DRM_DEBUG_KMS("using BIOS fb for initial console\n");
693 return true;
694
Jesse Barnesd978ef12014-03-07 08:57:51 -0800695out:
696
697 return false;
698}
699
Chris Wilson82e3b8c2014-08-13 13:09:46 +0100700static void intel_fbdev_suspend_worker(struct work_struct *work)
701{
702 intel_fbdev_set_suspend(container_of(work,
703 struct drm_i915_private,
704 fbdev_suspend_work)->dev,
705 FBINFO_STATE_RUNNING,
706 true);
707}
708
Dave Airlie38651672010-03-30 05:34:13 +0000709int intel_fbdev_init(struct drm_device *dev)
710{
Dave Airlie8be48d92010-03-30 05:34:14 +0000711 struct intel_fbdev *ifbdev;
Ville Syrjäläb51b32c2013-05-31 20:07:06 +0300712 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson5a793952010-06-06 10:50:03 +0100713 int ret;
Dave Airlie8be48d92010-03-30 05:34:14 +0000714
Jesse Barnesd978ef12014-03-07 08:57:51 -0800715 if (WARN_ON(INTEL_INFO(dev)->num_pipes == 0))
716 return -ENODEV;
717
718 ifbdev = kzalloc(sizeof(struct intel_fbdev), GFP_KERNEL);
719 if (ifbdev == NULL)
Dave Airlie8be48d92010-03-30 05:34:14 +0000720 return -ENOMEM;
721
Thierry Reding10a23102014-06-27 17:19:24 +0200722 drm_fb_helper_prepare(dev, &ifbdev->helper, &intel_fb_helper_funcs);
723
Jesse Barnesd978ef12014-03-07 08:57:51 -0800724 if (!intel_fbdev_init_bios(dev, ifbdev))
725 ifbdev->preferred_bpp = 32;
Dave Airlie8be48d92010-03-30 05:34:14 +0000726
Chris Wilson5a793952010-06-06 10:50:03 +0100727 ret = drm_fb_helper_init(dev, &ifbdev->helper,
Jesse Barnesd978ef12014-03-07 08:57:51 -0800728 INTEL_INFO(dev)->num_pipes, 4);
Chris Wilson5a793952010-06-06 10:50:03 +0100729 if (ret) {
730 kfree(ifbdev);
731 return ret;
732 }
Dave Airlie4abe3522010-03-30 05:34:18 +0000733
Jesse Barnesd978ef12014-03-07 08:57:51 -0800734 dev_priv->fbdev = ifbdev;
Chris Wilson82e3b8c2014-08-13 13:09:46 +0100735 INIT_WORK(&dev_priv->fbdev_suspend_work, intel_fbdev_suspend_worker);
736
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000737 drm_fb_helper_single_add_all_connectors(&ifbdev->helper);
Daniel Vetter20afbda2012-12-11 14:05:07 +0100738
Dave Airlie38651672010-03-30 05:34:13 +0000739 return 0;
740}
741
Jesse Barnesd1d70672014-05-28 14:39:03 -0700742void intel_fbdev_initial_config(void *data, async_cookie_t cookie)
Daniel Vetter20afbda2012-12-11 14:05:07 +0100743{
Jesse Barnesd1d70672014-05-28 14:39:03 -0700744 struct drm_i915_private *dev_priv = data;
Jesse Barnesd978ef12014-03-07 08:57:51 -0800745 struct intel_fbdev *ifbdev = dev_priv->fbdev;
Daniel Vetter20afbda2012-12-11 14:05:07 +0100746
747 /* Due to peculiar init order wrt to hpd handling this is separate. */
Jesse Barnesd978ef12014-03-07 08:57:51 -0800748 drm_fb_helper_initial_config(&ifbdev->helper, ifbdev->preferred_bpp);
Daniel Vetter20afbda2012-12-11 14:05:07 +0100749}
750
Dave Airlie38651672010-03-30 05:34:13 +0000751void intel_fbdev_fini(struct drm_device *dev)
752{
Ville Syrjäläb51b32c2013-05-31 20:07:06 +0300753 struct drm_i915_private *dev_priv = dev->dev_private;
Dave Airlie8be48d92010-03-30 05:34:14 +0000754 if (!dev_priv->fbdev)
755 return;
756
Chris Wilson82e3b8c2014-08-13 13:09:46 +0100757 flush_work(&dev_priv->fbdev_suspend_work);
758
Jesse Barnesd1d70672014-05-28 14:39:03 -0700759 async_synchronize_full();
Dave Airlie38651672010-03-30 05:34:13 +0000760 intel_fbdev_destroy(dev, dev_priv->fbdev);
Dave Airlie8be48d92010-03-30 05:34:14 +0000761 kfree(dev_priv->fbdev);
Dave Airlie38651672010-03-30 05:34:13 +0000762 dev_priv->fbdev = NULL;
763}
Dave Airlie3fa016a2012-03-28 10:48:49 +0100764
Chris Wilson82e3b8c2014-08-13 13:09:46 +0100765void intel_fbdev_set_suspend(struct drm_device *dev, int state, bool synchronous)
Dave Airlie3fa016a2012-03-28 10:48:49 +0100766{
Ville Syrjäläb51b32c2013-05-31 20:07:06 +0300767 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikula1ffc5282013-05-07 18:54:05 +0300768 struct intel_fbdev *ifbdev = dev_priv->fbdev;
769 struct fb_info *info;
770
771 if (!ifbdev)
Dave Airlie3fa016a2012-03-28 10:48:49 +0100772 return;
773
Jani Nikula1ffc5282013-05-07 18:54:05 +0300774 info = ifbdev->helper.fbdev;
775
Chris Wilson82e3b8c2014-08-13 13:09:46 +0100776 if (synchronous) {
777 /* Flush any pending work to turn the console on, and then
778 * wait to turn it off. It must be synchronous as we are
779 * about to suspend or unload the driver.
780 *
781 * Note that from within the work-handler, we cannot flush
782 * ourselves, so only flush outstanding work upon suspend!
783 */
784 if (state != FBINFO_STATE_RUNNING)
785 flush_work(&dev_priv->fbdev_suspend_work);
786 console_lock();
787 } else {
788 /*
789 * The console lock can be pretty contented on resume due
790 * to all the printk activity. Try to keep it out of the hot
791 * path of resume if possible.
792 */
793 WARN_ON(state != FBINFO_STATE_RUNNING);
794 if (!console_trylock()) {
795 /* Don't block our own workqueue as this can
796 * be run in parallel with other i915.ko tasks.
797 */
798 schedule_work(&dev_priv->fbdev_suspend_work);
799 return;
800 }
801 }
802
Jani Nikula1ffc5282013-05-07 18:54:05 +0300803 /* On resume from hibernation: If the object is shmemfs backed, it has
804 * been restored from swap. If the object is stolen however, it will be
805 * full of whatever garbage was left in there.
806 */
Jesse Barnes8bcd4552014-02-07 12:10:38 -0800807 if (state == FBINFO_STATE_RUNNING && ifbdev->fb->obj->stolen)
Jani Nikula1ffc5282013-05-07 18:54:05 +0300808 memset_io(info->screen_base, 0, info->screen_size);
809
810 fb_set_suspend(info, state);
Chris Wilson82e3b8c2014-08-13 13:09:46 +0100811 console_unlock();
Dave Airlie3fa016a2012-03-28 10:48:49 +0100812}
813
Daniel Vetter0632fef2013-10-08 17:44:49 +0200814void intel_fbdev_output_poll_changed(struct drm_device *dev)
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000815{
Ville Syrjäläb51b32c2013-05-31 20:07:06 +0300816 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesd978ef12014-03-07 08:57:51 -0800817 if (dev_priv->fbdev)
818 drm_fb_helper_hotplug_event(&dev_priv->fbdev->helper);
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000819}
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100820
Daniel Vetter0632fef2013-10-08 17:44:49 +0200821void intel_fbdev_restore_mode(struct drm_device *dev)
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100822{
823 int ret;
Ville Syrjäläb51b32c2013-05-31 20:07:06 +0300824 struct drm_i915_private *dev_priv = dev->dev_private;
Rodrigo Vivid04df732015-07-08 16:25:21 -0700825 struct intel_fbdev *ifbdev = dev_priv->fbdev;
826 struct drm_fb_helper *fb_helper;
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100827
Rodrigo Vivid04df732015-07-08 16:25:21 -0700828 if (!ifbdev)
Ben Widawskye3c74752013-04-05 13:12:39 -0700829 return;
830
Rodrigo Vivid04df732015-07-08 16:25:21 -0700831 fb_helper = &ifbdev->helper;
832
833 ret = drm_fb_helper_restore_fbdev_mode_unlocked(fb_helper);
834 if (ret) {
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100835 DRM_DEBUG("failed to restore crtc mode\n");
Rodrigo Vivid04df732015-07-08 16:25:21 -0700836 } else {
837 mutex_lock(&fb_helper->dev->struct_mutex);
838 intel_fb_obj_invalidate(ifbdev->fb->obj, ORIGIN_GTT);
839 mutex_unlock(&fb_helper->dev->struct_mutex);
840 }
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100841}