blob: 2b7a47c9102a3010fdc29cbb0eb2dbcfe762dac3 [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>
Jesse Barnes79e53942008-11-07 14:24:08 -080037#include <linux/init.h>
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100038#include <linux/vga_switcheroo.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080039
David Howells760285e2012-10-02 18:01:07 +010040#include <drm/drmP.h>
41#include <drm/drm_crtc.h>
42#include <drm/drm_fb_helper.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080043#include "intel_drv.h"
Chris Wilson5d723d72016-08-04 16:32:35 +010044#include "intel_frontbuffer.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
Chris Wilsonfabef822017-02-15 10:59:19 +000048static void intel_fbdev_invalidate(struct intel_fbdev *ifbdev)
49{
50 struct drm_i915_gem_object *obj = ifbdev->fb->obj;
51 unsigned int origin = ifbdev->vma->fence ? ORIGIN_GTT : ORIGIN_CPU;
52
53 intel_fb_obj_invalidate(obj, origin);
54}
55
Daniel Vettere9910772014-06-18 15:05:19 +020056static int intel_fbdev_set_par(struct fb_info *info)
57{
58 struct drm_fb_helper *fb_helper = info->par;
59 struct intel_fbdev *ifbdev =
60 container_of(fb_helper, struct intel_fbdev, helper);
61 int ret;
62
63 ret = drm_fb_helper_set_par(info);
Chris Wilsonfabef822017-02-15 10:59:19 +000064 if (ret == 0)
65 intel_fbdev_invalidate(ifbdev);
Daniel Vettere9910772014-06-18 15:05:19 +020066
67 return ret;
68}
69
Rodrigo Vivi03e515f2015-03-09 17:57:07 -070070static int intel_fbdev_blank(int blank, struct fb_info *info)
71{
72 struct drm_fb_helper *fb_helper = info->par;
73 struct intel_fbdev *ifbdev =
74 container_of(fb_helper, struct intel_fbdev, helper);
75 int ret;
76
77 ret = drm_fb_helper_blank(blank, info);
Chris Wilsonfabef822017-02-15 10:59:19 +000078 if (ret == 0)
79 intel_fbdev_invalidate(ifbdev);
Rodrigo Vivi03e515f2015-03-09 17:57:07 -070080
81 return ret;
82}
83
Rodrigo Vivid9a946b2015-05-28 10:26:58 -070084static int intel_fbdev_pan_display(struct fb_var_screeninfo *var,
85 struct fb_info *info)
86{
87 struct drm_fb_helper *fb_helper = info->par;
88 struct intel_fbdev *ifbdev =
89 container_of(fb_helper, struct intel_fbdev, helper);
Rodrigo Vivid9a946b2015-05-28 10:26:58 -070090 int ret;
Rodrigo Vivid9a946b2015-05-28 10:26:58 -070091
Chris Wilsonfabef822017-02-15 10:59:19 +000092 ret = drm_fb_helper_pan_display(var, info);
93 if (ret == 0)
94 intel_fbdev_invalidate(ifbdev);
Rodrigo Vivid9a946b2015-05-28 10:26:58 -070095
96 return ret;
97}
98
Jesse Barnes79e53942008-11-07 14:24:08 -080099static struct fb_ops intelfb_ops = {
100 .owner = THIS_MODULE,
Stefan Christa36384d2016-11-14 00:03:27 +0100101 DRM_FB_HELPER_DEFAULT_OPS,
Daniel Vettere9910772014-06-18 15:05:19 +0200102 .fb_set_par = intel_fbdev_set_par,
Archit Taneja21cff142015-07-31 16:21:56 +0530103 .fb_fillrect = drm_fb_helper_cfb_fillrect,
104 .fb_copyarea = drm_fb_helper_cfb_copyarea,
105 .fb_imageblit = drm_fb_helper_cfb_imageblit,
Rodrigo Vivid9a946b2015-05-28 10:26:58 -0700106 .fb_pan_display = intel_fbdev_pan_display,
Rodrigo Vivi03e515f2015-03-09 17:57:07 -0700107 .fb_blank = intel_fbdev_blank,
Jesse Barnes79e53942008-11-07 14:24:08 -0800108};
109
Jesse Barnes8b4f49e2013-11-25 15:51:16 -0800110static int intelfb_alloc(struct drm_fb_helper *helper,
111 struct drm_fb_helper_surface_size *sizes)
Jesse Barnes79e53942008-11-07 14:24:08 -0800112{
Ville Syrjälä34308242013-05-31 20:07:05 +0300113 struct intel_fbdev *ifbdev =
114 container_of(helper, struct intel_fbdev, helper);
Lukas Wunner4601b932015-12-19 15:40:39 +0100115 struct drm_framebuffer *fb;
Ville Syrjälä34308242013-05-31 20:07:05 +0300116 struct drm_device *dev = helper->dev;
Paulo Zanoni3badb492015-09-23 12:52:23 -0300117 struct drm_i915_private *dev_priv = to_i915(dev);
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300118 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Ville Syrjälä3a7f2f62012-05-24 21:08:56 +0300119 struct drm_mode_fb_cmd2 mode_cmd = {};
Chris Wilson24dbf512017-02-15 10:59:18 +0000120 struct drm_i915_gem_object *obj;
James Simmons57084d02010-12-20 19:10:39 +0000121 int size, ret;
Jesse Barnes79e53942008-11-07 14:24:08 -0800122
Dave Airlieb8c00ac2009-10-06 13:54:01 +1000123 /* we don't do packed 24bpp */
Dave Airlie38651672010-03-30 05:34:13 +0000124 if (sizes->surface_bpp == 24)
125 sizes->surface_bpp = 32;
Dave Airlieb8c00ac2009-10-06 13:54:01 +1000126
Dave Airlie38651672010-03-30 05:34:13 +0000127 mode_cmd.width = sizes->surface_width;
128 mode_cmd.height = sizes->surface_height;
Jesse Barnes79e53942008-11-07 14:24:08 -0800129
Paulo Zanonide45eaf2013-10-18 18:48:24 -0300130 mode_cmd.pitches[0] = ALIGN(mode_cmd.width *
131 DIV_ROUND_UP(sizes->surface_bpp, 8), 64);
Jesse Barnes308e5bc2011-11-14 14:51:28 -0800132 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp,
133 sizes->surface_depth);
Jesse Barnes79e53942008-11-07 14:24:08 -0800134
Jesse Barnes308e5bc2011-11-14 14:51:28 -0800135 size = mode_cmd.pitches[0] * mode_cmd.height;
Fabian Frederick1267a262014-07-01 20:39:41 +0200136 size = PAGE_ALIGN(size);
Paulo Zanoni3badb492015-09-23 12:52:23 -0300137
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
140 * features. */
Chris Wilson24dbf512017-02-15 10:59:18 +0000141 obj = NULL;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300142 if (size * 2 < ggtt->stolen_usable_size)
Tvrtko Ursulin187685c2016-12-01 14:16:36 +0000143 obj = i915_gem_object_create_stolen(dev_priv, size);
Chris Wilson0ffb0ff2012-11-15 11:32:27 +0000144 if (obj == NULL)
Tvrtko Ursulin12d79d72016-12-01 14:16:37 +0000145 obj = i915_gem_object_create(dev_priv, size);
Chris Wilsonfe3db792016-04-25 13:32:13 +0100146 if (IS_ERR(obj)) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700147 DRM_ERROR("failed to allocate framebuffer\n");
Chris Wilsonfe3db792016-04-25 13:32:13 +0100148 ret = PTR_ERR(obj);
Chris Wilson24dbf512017-02-15 10:59:18 +0000149 goto err;
Jesse Barnes79e53942008-11-07 14:24:08 -0800150 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800151
Chris Wilson24dbf512017-02-15 10:59:18 +0000152 fb = intel_framebuffer_create(obj, &mode_cmd);
Daniel Vettera8bb6812014-02-10 18:00:39 +0100153 if (IS_ERR(fb)) {
154 ret = PTR_ERR(fb);
Chris Wilson24dbf512017-02-15 10:59:18 +0000155 goto err_obj;
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +0000156 }
157
Daniel Vettera8bb6812014-02-10 18:00:39 +0100158 ifbdev->fb = to_intel_framebuffer(fb);
Jesse Barnes8b4f49e2013-11-25 15:51:16 -0800159
160 return 0;
161
Chris Wilson24dbf512017-02-15 10:59:18 +0000162err_obj:
163 i915_gem_object_put(obj);
164err:
Jesse Barnes8b4f49e2013-11-25 15:51:16 -0800165 return ret;
166}
167
168static int intelfb_create(struct drm_fb_helper *helper,
169 struct drm_fb_helper_surface_size *sizes)
170{
171 struct intel_fbdev *ifbdev =
172 container_of(helper, struct intel_fbdev, helper);
Jesse Barnes8bcd4552014-02-07 12:10:38 -0800173 struct intel_framebuffer *intel_fb = ifbdev->fb;
Jesse Barnes8b4f49e2013-11-25 15:51:16 -0800174 struct drm_device *dev = helper->dev;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300175 struct drm_i915_private *dev_priv = to_i915(dev);
David Weinehall52a05c32016-08-22 13:32:44 +0300176 struct pci_dev *pdev = dev_priv->drm.pdev;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300177 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Jesse Barnes8b4f49e2013-11-25 15:51:16 -0800178 struct fb_info *info;
179 struct drm_framebuffer *fb;
Chris Wilson8ef85612016-04-28 09:56:39 +0100180 struct i915_vma *vma;
Jesse Barnesd978ef12014-03-07 08:57:51 -0800181 bool prealloc = false;
Chris Wilson406ea8d2016-07-20 13:31:55 +0100182 void __iomem *vaddr;
Chris Wilson8ef85612016-04-28 09:56:39 +0100183 int ret;
Jesse Barnes8b4f49e2013-11-25 15:51:16 -0800184
Chris Wilsonedd586f2014-04-23 08:54:31 +0100185 if (intel_fb &&
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),"
189 " releasing it\n",
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;
194 }
Jesse Barnes8bcd4552014-02-07 12:10:38 -0800195 if (!intel_fb || WARN_ON(!intel_fb->obj)) {
Jesse Barnes48e92122013-11-26 11:25:54 -0800196 DRM_DEBUG_KMS("no BIOS fb, allocating a new one\n");
Jesse Barnes8b4f49e2013-11-25 15:51:16 -0800197 ret = intelfb_alloc(helper, sizes);
198 if (ret)
Tvrtko Ursulin51f13852015-06-30 10:06:27 +0100199 return ret;
Jesse Barnes8bcd4552014-02-07 12:10:38 -0800200 intel_fb = ifbdev->fb;
Jesse Barnes8b4f49e2013-11-25 15:51:16 -0800201 } else {
Jesse Barnes48e92122013-11-26 11:25:54 -0800202 DRM_DEBUG_KMS("re-using BIOS fb\n");
Jesse Barnesd978ef12014-03-07 08:57:51 -0800203 prealloc = true;
Jesse Barnes8b4f49e2013-11-25 15:51:16 -0800204 sizes->fb_width = intel_fb->base.width;
205 sizes->fb_height = intel_fb->base.height;
206 }
207
Tvrtko Ursulin51f13852015-06-30 10:06:27 +0100208 mutex_lock(&dev->struct_mutex);
209
Chris Wilson0c823122015-12-04 16:05:26 +0000210 /* 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.
213 */
Robert Fossc2c446a2017-05-19 16:50:17 -0400214 vma = intel_pin_and_fence_fb_obj(&ifbdev->fb->base, DRM_MODE_ROTATE_0);
Chris Wilson058d88c2016-08-15 10:49:06 +0100215 if (IS_ERR(vma)) {
216 ret = PTR_ERR(vma);
Chris Wilson0c823122015-12-04 16:05:26 +0000217 goto out_unlock;
Chris Wilson058d88c2016-08-15 10:49:06 +0100218 }
Chris Wilson0c823122015-12-04 16:05:26 +0000219
Archit Taneja21cff142015-07-31 16:21:56 +0530220 info = drm_fb_helper_alloc_fbi(helper);
221 if (IS_ERR(info)) {
Lukas Wunner366e39b2015-11-18 16:29:51 +0100222 DRM_ERROR("Failed to allocate fb_info\n");
Archit Taneja21cff142015-07-31 16:21:56 +0530223 ret = PTR_ERR(info);
Chris Wilsonb4476f52009-02-11 14:26:36 +0000224 goto out_unpin;
Jesse Barnes79e53942008-11-07 14:24:08 -0800225 }
226
Ville Syrjälä34308242013-05-31 20:07:05 +0300227 info->par = helper;
Jesse Barnes79e53942008-11-07 14:24:08 -0800228
Jesse Barnes8bcd4552014-02-07 12:10:38 -0800229 fb = &ifbdev->fb->base;
Dave Airlie38651672010-03-30 05:34:13 +0000230
231 ifbdev->helper.fb = fb;
Dave Airlie785b93e2009-08-28 15:46:53 +1000232
Jesse Barnes79e53942008-11-07 14:24:08 -0800233 strcpy(info->fix.id, "inteldrmfb");
Jesse Barnes79e53942008-11-07 14:24:08 -0800234
Jesse Barnes8fd4bd22010-06-23 12:56:12 -0700235 info->flags = FBINFO_DEFAULT | FBINFO_CAN_FORCE_OUTPUT;
Jesse Barnes79e53942008-11-07 14:24:08 -0800236 info->fbops = &intelfb_ops;
237
Dave Airlie4410f392009-06-16 15:34:38 -0700238 /* setup aperture base/size for vesafb takeover */
Marcin Slusarz1471ca92010-05-16 17:27:03 +0200239 info->apertures->ranges[0].base = dev->mode_config.fb_base;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300240 info->apertures->ranges[0].size = ggtt->mappable_end;
Dave Airlie4410f392009-06-16 15:34:38 -0700241
Chris Wilsonbde13eb2016-08-15 10:49:07 +0100242 info->fix.smem_start = dev->mode_config.fb_base + i915_ggtt_offset(vma);
Chris Wilson8ef85612016-04-28 09:56:39 +0100243 info->fix.smem_len = vma->node.size;
Jesse Barnes79e53942008-11-07 14:24:08 -0800244
Chris Wilson8ef85612016-04-28 09:56:39 +0100245 vaddr = i915_vma_pin_iomap(vma);
246 if (IS_ERR(vaddr)) {
Lukas Wunner366e39b2015-11-18 16:29:51 +0100247 DRM_ERROR("Failed to remap framebuffer into virtual memory\n");
Chris Wilson8ef85612016-04-28 09:56:39 +0100248 ret = PTR_ERR(vaddr);
Daniel Vetterda7bdda2017-02-07 17:16:03 +0100249 goto out_unpin;
Jesse Barnes79e53942008-11-07 14:24:08 -0800250 }
Chris Wilson8ef85612016-04-28 09:56:39 +0100251 info->screen_base = vaddr;
252 info->screen_size = vma->node.size;
Jesse Barnes79e53942008-11-07 14:24:08 -0800253
Jesse Barnes24576d22013-03-26 09:25:45 -0700254 /* This driver doesn't need a VT switch to restore the mode on resume */
255 info->skip_vt_switch = true;
256
Ville Syrjäläb00c6002016-12-14 23:31:35 +0200257 drm_fb_helper_fill_fix(info, fb->pitches[0], fb->format->depth);
Dave Airlie38651672010-03-30 05:34:13 +0000258 drm_fb_helper_fill_var(info, &ifbdev->helper, sizes->fb_width, sizes->fb_height);
Jesse Barnes79e53942008-11-07 14:24:08 -0800259
Chris Wilson88afe712012-12-16 12:15:41 +0000260 /* If the object is shmemfs backed, it will have given us zeroed pages.
261 * If the object is stolen however, it will be full of whatever
262 * garbage was left in there.
263 */
Chris Wilson058d88c2016-08-15 10:49:06 +0100264 if (intel_fb->obj->stolen && !prealloc)
Chris Wilson88afe712012-12-16 12:15:41 +0000265 memset_io(info->screen_base, 0, info->screen_size);
266
Sascha Hauerfb2a99e2012-02-06 10:58:19 +0100267 /* Use default scratch pixmap (info->pixmap.flags = FB_PIXMAP_SYSTEM) */
Jesse Barnes79e53942008-11-07 14:24:08 -0800268
Chris Wilsonbde13eb2016-08-15 10:49:07 +0100269 DRM_DEBUG_KMS("allocated %dx%d fb: 0x%08x\n",
270 fb->width, fb->height, i915_ggtt_offset(vma));
Chris Wilson058d88c2016-08-15 10:49:06 +0100271 ifbdev->vma = vma;
Jesse Barnes79e53942008-11-07 14:24:08 -0800272
273 mutex_unlock(&dev->struct_mutex);
David Weinehall52a05c32016-08-22 13:32:44 +0300274 vga_switcheroo_client_fb_set(pdev, info);
Jesse Barnes79e53942008-11-07 14:24:08 -0800275 return 0;
276
Chris Wilsonb4476f52009-02-11 14:26:36 +0000277out_unpin:
Chris Wilsonbe1e3412017-01-16 15:21:27 +0000278 intel_unpin_fb_vma(vma);
Chris Wilson0c823122015-12-04 16:05:26 +0000279out_unlock:
Jesse Barnes79e53942008-11-07 14:24:08 -0800280 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -0800281 return ret;
282}
283
Paulo Zanoni67437682013-09-24 13:52:56 -0300284/** Sets the color ramps on behalf of RandR */
285static void intel_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
286 u16 blue, int regno)
287{
288 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
289
290 intel_crtc->lut_r[regno] = red >> 8;
291 intel_crtc->lut_g[regno] = green >> 8;
292 intel_crtc->lut_b[regno] = blue >> 8;
293}
294
295static void intel_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
296 u16 *blue, int regno)
297{
298 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
299
300 *red = intel_crtc->lut_r[regno] << 8;
301 *green = intel_crtc->lut_g[regno] << 8;
302 *blue = intel_crtc->lut_b[regno] << 8;
303}
304
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800305static struct drm_fb_helper_crtc *
306intel_fb_helper_crtc(struct drm_fb_helper *fb_helper, struct drm_crtc *crtc)
307{
308 int i;
309
310 for (i = 0; i < fb_helper->crtc_count; i++)
311 if (fb_helper->crtc_info[i].mode_set.crtc == crtc)
312 return &fb_helper->crtc_info[i];
313
314 return NULL;
315}
316
317/*
318 * Try to read the BIOS display configuration and use it for the initial
319 * fb configuration.
320 *
321 * The BIOS or boot loader will generally create an initial display
322 * configuration for us that includes some set of active pipes and displays.
323 * This routine tries to figure out which pipes and connectors are active
324 * and stuffs them into the crtcs and modes array given to us by the
325 * drm_fb_helper code.
326 *
327 * The overall sequence is:
328 * intel_fbdev_init - from driver load
329 * intel_fbdev_init_bios - initialize the intel_fbdev using BIOS data
330 * drm_fb_helper_init - build fb helper structs
331 * drm_fb_helper_single_add_all_connectors - more fb helper structs
332 * intel_fbdev_initial_config - apply the config
333 * drm_fb_helper_initial_config - call ->probe then register_framebuffer()
334 * drm_setup_crtcs - build crtc config for fbdev
335 * intel_fb_initial_config - find active connectors etc
336 * drm_fb_helper_single_fb_probe - set up fbdev
337 * intelfb_create - re-use or alloc fb, build out fbdev structs
338 *
339 * Note that we don't make special consideration whether we could actually
340 * switch to the selected modes without a full modeset. E.g. when the display
341 * is in VGA mode we need to recalculate watermarks and set a new high-res
342 * framebuffer anyway.
343 */
344static bool intel_fb_initial_config(struct drm_fb_helper *fb_helper,
345 struct drm_fb_helper_crtc **crtcs,
346 struct drm_display_mode **modes,
Dave Airlieb0ee9e72014-10-20 16:31:53 +1000347 struct drm_fb_offset *offsets,
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800348 bool *enabled, int width, int height)
349{
Tvrtko Ursulinb7f05d42016-11-09 11:30:45 +0000350 struct drm_i915_private *dev_priv = to_i915(fb_helper->dev);
Chris Wilson754a7652017-02-24 11:43:06 +0000351 unsigned long conn_configured, conn_seq, mask;
Chris Wilson86f40bb2016-07-02 15:36:02 +0100352 unsigned int count = min(fb_helper->connector_count, BITS_PER_LONG);
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800353 int i, j;
Jesse Barnes02f5eeb2014-02-12 15:03:40 -0800354 bool *save_enabled;
Daniel Vetter7c2bb532014-03-04 21:08:41 +0100355 bool fallback = true;
Daniel Vetter7e696e42014-03-04 21:08:42 +0100356 int num_connectors_enabled = 0;
357 int num_connectors_detected = 0;
Jesse Barnes02f5eeb2014-02-12 15:03:40 -0800358
Chris Wilson86f40bb2016-07-02 15:36:02 +0100359 save_enabled = kcalloc(count, sizeof(bool), GFP_KERNEL);
Jesse Barnes02f5eeb2014-02-12 15:03:40 -0800360 if (!save_enabled)
361 return false;
362
Chris Wilson86f40bb2016-07-02 15:36:02 +0100363 memcpy(save_enabled, enabled, count);
Joonas Lahtinen3c779a42017-02-08 15:12:09 +0200364 mask = GENMASK(count - 1, 0);
Chris Wilson86f40bb2016-07-02 15:36:02 +0100365 conn_configured = 0;
Dave Airlieb0ee9e72014-10-20 16:31:53 +1000366retry:
Chris Wilson754a7652017-02-24 11:43:06 +0000367 conn_seq = conn_configured;
Chris Wilson86f40bb2016-07-02 15:36:02 +0100368 for (i = 0; i < count; i++) {
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800369 struct drm_fb_helper_connector *fb_conn;
370 struct drm_connector *connector;
371 struct drm_encoder *encoder;
372 struct drm_fb_helper_crtc *new_crtc;
Lionel Landwerlin82cf4352016-03-16 10:57:16 +0000373 struct intel_crtc *intel_crtc;
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800374
375 fb_conn = fb_helper->connector_info[i];
376 connector = fb_conn->connector;
Daniel Vetter7e696e42014-03-04 21:08:42 +0100377
Chris Wilson86f40bb2016-07-02 15:36:02 +0100378 if (conn_configured & BIT(i))
Dave Airlieb0ee9e72014-10-20 16:31:53 +1000379 continue;
380
Chris Wilson754a7652017-02-24 11:43:06 +0000381 if (conn_seq == 0 && !connector->has_tile)
Dave Airlieb0ee9e72014-10-20 16:31:53 +1000382 continue;
383
Daniel Vetter7e696e42014-03-04 21:08:42 +0100384 if (connector->status == connector_status_connected)
385 num_connectors_detected++;
386
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800387 if (!enabled[i]) {
Chris Wilsonc0c97622014-05-13 13:45:09 +0100388 DRM_DEBUG_KMS("connector %s not enabled, skipping\n",
Jani Nikulac23cc412014-06-03 14:56:17 +0300389 connector->name);
Chris Wilson86f40bb2016-07-02 15:36:02 +0100390 conn_configured |= BIT(i);
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800391 continue;
392 }
393
Chris Wilsond84a0f32014-08-18 10:35:29 -0700394 if (connector->force == DRM_FORCE_OFF) {
395 DRM_DEBUG_KMS("connector %s is disabled by user, skipping\n",
396 connector->name);
397 enabled[i] = false;
398 continue;
399 }
400
Maarten Lankhorste28661b2016-02-17 09:18:39 +0100401 encoder = connector->state->best_encoder;
402 if (!encoder || WARN_ON(!connector->state->crtc)) {
Chris Wilsond84a0f32014-08-18 10:35:29 -0700403 if (connector->force > DRM_FORCE_OFF)
404 goto bail;
405
Chris Wilsonc0c97622014-05-13 13:45:09 +0100406 DRM_DEBUG_KMS("connector %s has no encoder or crtc, skipping\n",
Jani Nikulac23cc412014-06-03 14:56:17 +0300407 connector->name);
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800408 enabled[i] = false;
Chris Wilson86f40bb2016-07-02 15:36:02 +0100409 conn_configured |= BIT(i);
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800410 continue;
411 }
412
Daniel Vetter7e696e42014-03-04 21:08:42 +0100413 num_connectors_enabled++;
414
Lionel Landwerlin82cf4352016-03-16 10:57:16 +0000415 intel_crtc = to_intel_crtc(connector->state->crtc);
416 for (j = 0; j < 256; j++) {
417 intel_crtc->lut_r[j] = j;
418 intel_crtc->lut_g[j] = j;
419 intel_crtc->lut_b[j] = j;
420 }
421
Chris Wilson86f40bb2016-07-02 15:36:02 +0100422 new_crtc = intel_fb_helper_crtc(fb_helper,
423 connector->state->crtc);
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800424
425 /*
426 * Make sure we're not trying to drive multiple connectors
427 * with a single CRTC, since our cloning support may not
428 * match the BIOS.
429 */
Chris Wilson86f40bb2016-07-02 15:36:02 +0100430 for (j = 0; j < count; j++) {
Jesse Barnes02f5eeb2014-02-12 15:03:40 -0800431 if (crtcs[j] == new_crtc) {
Daniel Vetter7e696e42014-03-04 21:08:42 +0100432 DRM_DEBUG_KMS("fallback: cloned configuration\n");
Chris Wilsond84a0f32014-08-18 10:35:29 -0700433 goto bail;
Jesse Barnes02f5eeb2014-02-12 15:03:40 -0800434 }
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800435 }
436
Chris Wilsonc0c97622014-05-13 13:45:09 +0100437 DRM_DEBUG_KMS("looking for cmdline mode on connector %s\n",
Jani Nikulac23cc412014-06-03 14:56:17 +0300438 connector->name);
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800439
440 /* go for command line mode first */
Vincent Abrioua09759e2017-01-06 17:44:43 +0100441 modes[i] = drm_pick_cmdline_mode(fb_conn);
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800442
443 /* try for preferred next */
444 if (!modes[i]) {
Dave Airlieb0ee9e72014-10-20 16:31:53 +1000445 DRM_DEBUG_KMS("looking for preferred mode on connector %s %d\n",
446 connector->name, connector->has_tile);
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800447 modes[i] = drm_has_preferred_mode(fb_conn, width,
448 height);
449 }
450
Chris Wilsonafba0b52014-05-13 16:07:37 +0100451 /* No preferred mode marked by the EDID? Are there any modes? */
452 if (!modes[i] && !list_empty(&connector->modes)) {
453 DRM_DEBUG_KMS("using first mode listed on connector %s\n",
Dave Airlie8d4ad9d2014-06-05 20:28:59 +1000454 connector->name);
Chris Wilsonafba0b52014-05-13 16:07:37 +0100455 modes[i] = list_first_entry(&connector->modes,
456 struct drm_display_mode,
457 head);
458 }
459
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800460 /* last resort: use current mode */
461 if (!modes[i]) {
462 /*
463 * IMPORTANT: We want to use the adjusted mode (i.e.
464 * after the panel fitter upscaling) as the initial
465 * config, not the input mode, which is what crtc->mode
Maarten Lankhorst5c1e3422015-07-14 15:58:28 +0200466 * usually contains. But since our current
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800467 * code puts a mode derived from the post-pfit timings
Maarten Lankhorst5c1e3422015-07-14 15:58:28 +0200468 * into crtc->mode this works out correctly.
Maarten Lankhorste28661b2016-02-17 09:18:39 +0100469 *
470 * This is crtc->mode and not crtc->state->mode for the
471 * fastboot check to work correctly. crtc_state->mode has
472 * I915_MODE_FLAG_INHERITED, which we clear to force check
473 * state.
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800474 */
Chris Wilsonc0c97622014-05-13 13:45:09 +0100475 DRM_DEBUG_KMS("looking for current mode on connector %s\n",
Jani Nikulac23cc412014-06-03 14:56:17 +0300476 connector->name);
Maarten Lankhorste28661b2016-02-17 09:18:39 +0100477 modes[i] = &connector->state->crtc->mode;
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800478 }
479 crtcs[i] = new_crtc;
480
Ville Syrjälä78108b72016-05-27 20:59:19 +0300481 DRM_DEBUG_KMS("connector %s on [CRTC:%d:%s]: %dx%d%s\n",
Jani Nikulac23cc412014-06-03 14:56:17 +0300482 connector->name,
Maarten Lankhorste28661b2016-02-17 09:18:39 +0100483 connector->state->crtc->base.id,
Ville Syrjälä78108b72016-05-27 20:59:19 +0300484 connector->state->crtc->name,
Chris Wilsonc0c97622014-05-13 13:45:09 +0100485 modes[i]->hdisplay, modes[i]->vdisplay,
486 modes[i]->flags & DRM_MODE_FLAG_INTERLACE ? "i" :"");
Jesse Barnes02f5eeb2014-02-12 15:03:40 -0800487
Daniel Vetter7c2bb532014-03-04 21:08:41 +0100488 fallback = false;
Chris Wilson86f40bb2016-07-02 15:36:02 +0100489 conn_configured |= BIT(i);
Dave Airlieb0ee9e72014-10-20 16:31:53 +1000490 }
491
Chris Wilson754a7652017-02-24 11:43:06 +0000492 if ((conn_configured & mask) != mask && conn_configured != conn_seq)
Dave Airlieb0ee9e72014-10-20 16:31:53 +1000493 goto retry;
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800494
Daniel Vetter7e696e42014-03-04 21:08:42 +0100495 /*
496 * If the BIOS didn't enable everything it could, fall back to have the
497 * same user experiencing of lighting up as much as possible like the
498 * fbdev helper library.
499 */
500 if (num_connectors_enabled != num_connectors_detected &&
Tvrtko Ursulinb7f05d42016-11-09 11:30:45 +0000501 num_connectors_enabled < INTEL_INFO(dev_priv)->num_pipes) {
Daniel Vetter7e696e42014-03-04 21:08:42 +0100502 DRM_DEBUG_KMS("fallback: Not all outputs enabled\n");
503 DRM_DEBUG_KMS("Enabled: %i, detected: %i\n", num_connectors_enabled,
504 num_connectors_detected);
505 fallback = true;
506 }
507
Daniel Vetter7c2bb532014-03-04 21:08:41 +0100508 if (fallback) {
Chris Wilsond84a0f32014-08-18 10:35:29 -0700509bail:
Daniel Vetter7e696e42014-03-04 21:08:42 +0100510 DRM_DEBUG_KMS("Not using firmware configuration\n");
Chris Wilson86f40bb2016-07-02 15:36:02 +0100511 memcpy(enabled, save_enabled, count);
Jesse Barnes02f5eeb2014-02-12 15:03:40 -0800512 kfree(save_enabled);
513 return false;
514 }
515
516 kfree(save_enabled);
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800517 return true;
518}
519
Thierry Reding3a493872014-06-27 17:19:23 +0200520static const struct drm_fb_helper_funcs intel_fb_helper_funcs = {
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800521 .initial_config = intel_fb_initial_config,
Dave Airlie4abe3522010-03-30 05:34:18 +0000522 .gamma_set = intel_crtc_fb_gamma_set,
523 .gamma_get = intel_crtc_fb_gamma_get,
Daniel Vettercd5428a2013-01-21 23:42:49 +0100524 .fb_probe = intelfb_create,
Dave Airlie4abe3522010-03-30 05:34:18 +0000525};
526
Chris Wilson43cee312016-06-21 09:16:54 +0100527static void intel_fbdev_destroy(struct intel_fbdev *ifbdev)
Jesse Barnes79e53942008-11-07 14:24:08 -0800528{
Chris Wilson0c823122015-12-04 16:05:26 +0000529 /* We rely on the object-free to release the VMA pinning for
530 * the info->screen_base mmaping. Leaking the VMA is simpler than
531 * trying to rectify all the possible error paths leading here.
532 */
Chris Wilsonddfe1562013-08-06 17:43:07 +0100533
Dave Airlie4abe3522010-03-30 05:34:18 +0000534 drm_fb_helper_fini(&ifbdev->helper);
Jesse Barnes79e53942008-11-07 14:24:08 -0800535
Chris Wilson15727ed2017-06-22 17:02:11 +0100536 if (ifbdev->vma) {
Chris Wilson43cee312016-06-21 09:16:54 +0100537 mutex_lock(&ifbdev->helper.dev->struct_mutex);
Chris Wilsonbe1e3412017-01-16 15:21:27 +0000538 intel_unpin_fb_vma(ifbdev->vma);
Chris Wilson43cee312016-06-21 09:16:54 +0100539 mutex_unlock(&ifbdev->helper.dev->struct_mutex);
Lukas Wunner54632ab2015-11-18 13:43:20 +0100540 }
Chris Wilson43cee312016-06-21 09:16:54 +0100541
Chris Wilson15727ed2017-06-22 17:02:11 +0100542 if (ifbdev->fb)
543 drm_framebuffer_remove(&ifbdev->fb->base);
544
Chris Wilson43cee312016-06-21 09:16:54 +0100545 kfree(ifbdev);
Jesse Barnes79e53942008-11-07 14:24:08 -0800546}
Dave Airlie38651672010-03-30 05:34:13 +0000547
Jesse Barnesd978ef12014-03-07 08:57:51 -0800548/*
549 * Build an intel_fbdev struct using a BIOS allocated framebuffer, if possible.
550 * The core display code will have read out the current plane configuration,
551 * so we use that to figure out if there's an object for us to use as the
552 * fb, and if so, we re-use it for the fbdev configuration.
553 *
554 * Note we only support a single fb shared across pipes for boot (mostly for
555 * fbcon), so we just find the biggest and use that.
556 */
557static bool intel_fbdev_init_bios(struct drm_device *dev,
558 struct intel_fbdev *ifbdev)
559{
560 struct intel_framebuffer *fb = NULL;
561 struct drm_crtc *crtc;
562 struct intel_crtc *intel_crtc;
Jesse Barnesd978ef12014-03-07 08:57:51 -0800563 unsigned int max_size = 0;
564
Jesse Barnesd978ef12014-03-07 08:57:51 -0800565 /* Find the largest fb */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +0100566 for_each_crtc(dev, crtc) {
Maarten Lankhorst8e9ba312015-07-13 16:30:16 +0200567 struct drm_i915_gem_object *obj =
568 intel_fb_obj(crtc->primary->state->fb);
Jesse Barnesd978ef12014-03-07 08:57:51 -0800569 intel_crtc = to_intel_crtc(crtc);
570
Maarten Lankhorstd5515992015-08-27 15:44:03 +0200571 if (!crtc->state->active || !obj) {
Jesse Barnesd978ef12014-03-07 08:57:51 -0800572 DRM_DEBUG_KMS("pipe %c not active or no fb, skipping\n",
573 pipe_name(intel_crtc->pipe));
574 continue;
575 }
576
Maarten Lankhorst8e9ba312015-07-13 16:30:16 +0200577 if (obj->base.size > max_size) {
Jesse Barnesd978ef12014-03-07 08:57:51 -0800578 DRM_DEBUG_KMS("found possible fb from plane %c\n",
579 pipe_name(intel_crtc->pipe));
Maarten Lankhorst8e9ba312015-07-13 16:30:16 +0200580 fb = to_intel_framebuffer(crtc->primary->state->fb);
581 max_size = obj->base.size;
Jesse Barnesd978ef12014-03-07 08:57:51 -0800582 }
583 }
584
585 if (!fb) {
586 DRM_DEBUG_KMS("no active fbs found, not using BIOS config\n");
587 goto out;
588 }
589
590 /* Now make sure all the pipes will fit into it */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +0100591 for_each_crtc(dev, crtc) {
Jesse Barnesd978ef12014-03-07 08:57:51 -0800592 unsigned int cur_size;
593
594 intel_crtc = to_intel_crtc(crtc);
595
Maarten Lankhorstd5515992015-08-27 15:44:03 +0200596 if (!crtc->state->active) {
Jesse Barnesd978ef12014-03-07 08:57:51 -0800597 DRM_DEBUG_KMS("pipe %c not active, skipping\n",
598 pipe_name(intel_crtc->pipe));
599 continue;
600 }
601
602 DRM_DEBUG_KMS("checking plane %c for BIOS fb\n",
603 pipe_name(intel_crtc->pipe));
604
605 /*
606 * See if the plane fb we found above will fit on this
Chris Wilsonbc104d12014-03-20 15:11:21 +0000607 * pipe. Note we need to use the selected fb's pitch and bpp
608 * rather than the current pipe's, since they differ.
Jesse Barnesd978ef12014-03-07 08:57:51 -0800609 */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200610 cur_size = intel_crtc->config->base.adjusted_mode.crtc_hdisplay;
Ville Syrjälä272725c2016-12-14 23:32:20 +0200611 cur_size = cur_size * fb->base.format->cpp[0];
Chris Wilsonbc104d12014-03-20 15:11:21 +0000612 if (fb->base.pitches[0] < cur_size) {
613 DRM_DEBUG_KMS("fb not wide enough for plane %c (%d vs %d)\n",
614 pipe_name(intel_crtc->pipe),
615 cur_size, fb->base.pitches[0]);
Chris Wilsonbc104d12014-03-20 15:11:21 +0000616 fb = NULL;
617 break;
618 }
619
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200620 cur_size = intel_crtc->config->base.adjusted_mode.crtc_vdisplay;
Ville Syrjäläd88c4af2017-03-07 21:42:06 +0200621 cur_size = intel_fb_align_height(&fb->base, 0, cur_size);
Chris Wilsonbc104d12014-03-20 15:11:21 +0000622 cur_size *= fb->base.pitches[0];
623 DRM_DEBUG_KMS("pipe %c area: %dx%d, bpp: %d, size: %d\n",
624 pipe_name(intel_crtc->pipe),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200625 intel_crtc->config->base.adjusted_mode.crtc_hdisplay,
626 intel_crtc->config->base.adjusted_mode.crtc_vdisplay,
Ville Syrjälä272725c2016-12-14 23:32:20 +0200627 fb->base.format->cpp[0] * 8,
Jesse Barnesd978ef12014-03-07 08:57:51 -0800628 cur_size);
Jesse Barnesd978ef12014-03-07 08:57:51 -0800629
630 if (cur_size > max_size) {
631 DRM_DEBUG_KMS("fb not big enough for plane %c (%d vs %d)\n",
632 pipe_name(intel_crtc->pipe),
633 cur_size, max_size);
Jesse Barnesd978ef12014-03-07 08:57:51 -0800634 fb = NULL;
635 break;
636 }
637
638 DRM_DEBUG_KMS("fb big enough for plane %c (%d >= %d)\n",
639 pipe_name(intel_crtc->pipe),
640 max_size, cur_size);
641 }
642
Jesse Barnesd978ef12014-03-07 08:57:51 -0800643 if (!fb) {
644 DRM_DEBUG_KMS("BIOS fb not suitable for all pipes, not using\n");
645 goto out;
646 }
647
Ville Syrjälä272725c2016-12-14 23:32:20 +0200648 ifbdev->preferred_bpp = fb->base.format->cpp[0] * 8;
Jesse Barnesd978ef12014-03-07 08:57:51 -0800649 ifbdev->fb = fb;
650
Jesse Barnes484b41d2014-03-07 08:57:55 -0800651 drm_framebuffer_reference(&ifbdev->fb->base);
Jesse Barnesd978ef12014-03-07 08:57:51 -0800652
653 /* Final pass to check if any active pipes don't have fbs */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +0100654 for_each_crtc(dev, crtc) {
Jesse Barnesd978ef12014-03-07 08:57:51 -0800655 intel_crtc = to_intel_crtc(crtc);
656
Maarten Lankhorstd5515992015-08-27 15:44:03 +0200657 if (!crtc->state->active)
Jesse Barnesd978ef12014-03-07 08:57:51 -0800658 continue;
659
Dave Airlie66e514c2014-04-03 07:51:54 +1000660 WARN(!crtc->primary->fb,
Jesse Barnesd978ef12014-03-07 08:57:51 -0800661 "re-used BIOS config but lost an fb on crtc %d\n",
662 crtc->base.id);
663 }
664
665
666 DRM_DEBUG_KMS("using BIOS fb for initial console\n");
667 return true;
668
Jesse Barnesd978ef12014-03-07 08:57:51 -0800669out:
670
671 return false;
672}
673
Chris Wilson82e3b8c2014-08-13 13:09:46 +0100674static void intel_fbdev_suspend_worker(struct work_struct *work)
675{
Chris Wilson91c8a322016-07-05 10:40:23 +0100676 intel_fbdev_set_suspend(&container_of(work,
677 struct drm_i915_private,
678 fbdev_suspend_work)->drm,
Chris Wilson82e3b8c2014-08-13 13:09:46 +0100679 FBINFO_STATE_RUNNING,
680 true);
681}
682
Dave Airlie38651672010-03-30 05:34:13 +0000683int intel_fbdev_init(struct drm_device *dev)
684{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100685 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulinb7f05d42016-11-09 11:30:45 +0000686 struct intel_fbdev *ifbdev;
Chris Wilson5a793952010-06-06 10:50:03 +0100687 int ret;
Dave Airlie8be48d92010-03-30 05:34:14 +0000688
Tvrtko Ursulinb7f05d42016-11-09 11:30:45 +0000689 if (WARN_ON(INTEL_INFO(dev_priv)->num_pipes == 0))
Jesse Barnesd978ef12014-03-07 08:57:51 -0800690 return -ENODEV;
691
692 ifbdev = kzalloc(sizeof(struct intel_fbdev), GFP_KERNEL);
693 if (ifbdev == NULL)
Dave Airlie8be48d92010-03-30 05:34:14 +0000694 return -ENOMEM;
695
Thierry Reding10a23102014-06-27 17:19:24 +0200696 drm_fb_helper_prepare(dev, &ifbdev->helper, &intel_fb_helper_funcs);
697
Jesse Barnesd978ef12014-03-07 08:57:51 -0800698 if (!intel_fbdev_init_bios(dev, ifbdev))
699 ifbdev->preferred_bpp = 32;
Dave Airlie8be48d92010-03-30 05:34:14 +0000700
Gabriel Krisman Bertazie4563f62017-02-02 14:26:40 -0200701 ret = drm_fb_helper_init(dev, &ifbdev->helper, 4);
Chris Wilson5a793952010-06-06 10:50:03 +0100702 if (ret) {
703 kfree(ifbdev);
704 return ret;
705 }
Dave Airlie4abe3522010-03-30 05:34:18 +0000706
Jesse Barnesd978ef12014-03-07 08:57:51 -0800707 dev_priv->fbdev = ifbdev;
Chris Wilson82e3b8c2014-08-13 13:09:46 +0100708 INIT_WORK(&dev_priv->fbdev_suspend_work, intel_fbdev_suspend_worker);
709
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000710 drm_fb_helper_single_add_all_connectors(&ifbdev->helper);
Daniel Vetter20afbda2012-12-11 14:05:07 +0100711
Dave Airlie38651672010-03-30 05:34:13 +0000712 return 0;
713}
714
Ville Syrjäläe00bf692015-11-06 15:08:33 +0200715static void intel_fbdev_initial_config(void *data, async_cookie_t cookie)
Daniel Vetter20afbda2012-12-11 14:05:07 +0100716{
Chris Wilson43cee312016-06-21 09:16:54 +0100717 struct intel_fbdev *ifbdev = data;
Daniel Vetter20afbda2012-12-11 14:05:07 +0100718
719 /* Due to peculiar init order wrt to hpd handling this is separate. */
Lukas Wunner366e39b2015-11-18 16:29:51 +0100720 if (drm_fb_helper_initial_config(&ifbdev->helper,
Daniel Vetter4f256d82017-07-15 00:46:55 +0200721 ifbdev->preferred_bpp)) {
722 intel_fbdev_unregister(to_i915(ifbdev->helper.dev));
723 intel_fbdev_fini(to_i915(ifbdev->helper.dev));
724 }
Daniel Vetter20afbda2012-12-11 14:05:07 +0100725}
726
Ville Syrjäläe00bf692015-11-06 15:08:33 +0200727void intel_fbdev_initial_config_async(struct drm_device *dev)
728{
Chris Wilson43cee312016-06-21 09:16:54 +0100729 struct intel_fbdev *ifbdev = to_i915(dev)->fbdev;
730
Clint Taylor5b8cd072017-01-18 13:38:43 -0800731 if (!ifbdev)
732 return;
733
Chris Wilson43cee312016-06-21 09:16:54 +0100734 ifbdev->cookie = async_schedule(intel_fbdev_initial_config, ifbdev);
735}
736
737static void intel_fbdev_sync(struct intel_fbdev *ifbdev)
738{
739 if (!ifbdev->cookie)
740 return;
741
742 /* Only serialises with all preceding async calls, hence +1 */
743 async_synchronize_cookie(ifbdev->cookie + 1);
744 ifbdev->cookie = 0;
Ville Syrjäläe00bf692015-11-06 15:08:33 +0200745}
746
Daniel Vetter4f256d82017-07-15 00:46:55 +0200747void intel_fbdev_unregister(struct drm_i915_private *dev_priv)
Dave Airlie38651672010-03-30 05:34:13 +0000748{
Chris Wilson43cee312016-06-21 09:16:54 +0100749 struct intel_fbdev *ifbdev = dev_priv->fbdev;
750
751 if (!ifbdev)
Dave Airlie8be48d92010-03-30 05:34:14 +0000752 return;
753
Chris Wilson0b8c0e92016-07-13 18:34:44 +0100754 cancel_work_sync(&dev_priv->fbdev_suspend_work);
Lukas Wunner366e39b2015-11-18 16:29:51 +0100755 if (!current_is_async())
Chris Wilson43cee312016-06-21 09:16:54 +0100756 intel_fbdev_sync(ifbdev);
757
Daniel Vetter4f256d82017-07-15 00:46:55 +0200758 drm_fb_helper_unregister_fbi(&ifbdev->helper);
759}
760
761void intel_fbdev_fini(struct drm_i915_private *dev_priv)
762{
763 struct intel_fbdev *ifbdev = fetch_and_zero(&dev_priv->fbdev);
764
765 if (!ifbdev)
766 return;
767
Chris Wilson43cee312016-06-21 09:16:54 +0100768 intel_fbdev_destroy(ifbdev);
Dave Airlie38651672010-03-30 05:34:13 +0000769}
Dave Airlie3fa016a2012-03-28 10:48:49 +0100770
Chris Wilson82e3b8c2014-08-13 13:09:46 +0100771void intel_fbdev_set_suspend(struct drm_device *dev, int state, bool synchronous)
Dave Airlie3fa016a2012-03-28 10:48:49 +0100772{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100773 struct drm_i915_private *dev_priv = to_i915(dev);
Jani Nikula1ffc5282013-05-07 18:54:05 +0300774 struct intel_fbdev *ifbdev = dev_priv->fbdev;
775 struct fb_info *info;
776
Chris Wilson15727ed2017-06-22 17:02:11 +0100777 if (!ifbdev || !ifbdev->vma)
Dave Airlie3fa016a2012-03-28 10:48:49 +0100778 return;
779
Jani Nikula1ffc5282013-05-07 18:54:05 +0300780 info = ifbdev->helper.fbdev;
781
Chris Wilson82e3b8c2014-08-13 13:09:46 +0100782 if (synchronous) {
783 /* Flush any pending work to turn the console on, and then
784 * wait to turn it off. It must be synchronous as we are
785 * about to suspend or unload the driver.
786 *
787 * Note that from within the work-handler, we cannot flush
788 * ourselves, so only flush outstanding work upon suspend!
789 */
790 if (state != FBINFO_STATE_RUNNING)
791 flush_work(&dev_priv->fbdev_suspend_work);
792 console_lock();
793 } else {
794 /*
795 * The console lock can be pretty contented on resume due
796 * to all the printk activity. Try to keep it out of the hot
797 * path of resume if possible.
798 */
799 WARN_ON(state != FBINFO_STATE_RUNNING);
800 if (!console_trylock()) {
801 /* Don't block our own workqueue as this can
802 * be run in parallel with other i915.ko tasks.
803 */
804 schedule_work(&dev_priv->fbdev_suspend_work);
805 return;
806 }
807 }
808
Jani Nikula1ffc5282013-05-07 18:54:05 +0300809 /* On resume from hibernation: If the object is shmemfs backed, it has
810 * been restored from swap. If the object is stolen however, it will be
811 * full of whatever garbage was left in there.
812 */
Jesse Barnes8bcd4552014-02-07 12:10:38 -0800813 if (state == FBINFO_STATE_RUNNING && ifbdev->fb->obj->stolen)
Jani Nikula1ffc5282013-05-07 18:54:05 +0300814 memset_io(info->screen_base, 0, info->screen_size);
815
Archit Taneja21cff142015-07-31 16:21:56 +0530816 drm_fb_helper_set_suspend(&ifbdev->helper, state);
Chris Wilson82e3b8c2014-08-13 13:09:46 +0100817 console_unlock();
Dave Airlie3fa016a2012-03-28 10:48:49 +0100818}
819
Daniel Vetter0632fef2013-10-08 17:44:49 +0200820void intel_fbdev_output_poll_changed(struct drm_device *dev)
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000821{
Chris Wilsonc45eb4f2016-07-13 18:34:45 +0100822 struct intel_fbdev *ifbdev = to_i915(dev)->fbdev;
823
Daniel Vetter88be58b2017-07-06 15:00:19 +0200824 if (ifbdev)
Chris Wilsonc45eb4f2016-07-13 18:34:45 +0100825 drm_fb_helper_hotplug_event(&ifbdev->helper);
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000826}
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100827
Daniel Vetter0632fef2013-10-08 17:44:49 +0200828void intel_fbdev_restore_mode(struct drm_device *dev)
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100829{
Chris Wilsonc45eb4f2016-07-13 18:34:45 +0100830 struct intel_fbdev *ifbdev = to_i915(dev)->fbdev;
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100831
Rodrigo Vivid04df732015-07-08 16:25:21 -0700832 if (!ifbdev)
Ben Widawskye3c74752013-04-05 13:12:39 -0700833 return;
834
Chris Wilsone77018f2016-06-21 09:16:55 +0100835 intel_fbdev_sync(ifbdev);
Chris Wilson15727ed2017-06-22 17:02:11 +0100836 if (!ifbdev->vma)
Chris Wilsonc45eb4f2016-07-13 18:34:45 +0100837 return;
Chris Wilsone77018f2016-06-21 09:16:55 +0100838
Chris Wilsonfabef822017-02-15 10:59:19 +0000839 if (drm_fb_helper_restore_fbdev_mode_unlocked(&ifbdev->helper) == 0)
840 intel_fbdev_invalidate(ifbdev);
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100841}