Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1 | /* |
| 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 Barnes | d1d7067 | 2014-05-28 14:39:03 -0700 | [diff] [blame] | 27 | #include <linux/async.h> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 28 | #include <linux/module.h> |
| 29 | #include <linux/kernel.h> |
Chris Wilson | 82e3b8c | 2014-08-13 13:09:46 +0100 | [diff] [blame] | 30 | #include <linux/console.h> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 31 | #include <linux/errno.h> |
| 32 | #include <linux/string.h> |
| 33 | #include <linux/mm.h> |
| 34 | #include <linux/tty.h> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 35 | #include <linux/sysrq.h> |
| 36 | #include <linux/delay.h> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 37 | #include <linux/init.h> |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 38 | #include <linux/vga_switcheroo.h> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 39 | |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 40 | #include <drm/drmP.h> |
| 41 | #include <drm/drm_crtc.h> |
| 42 | #include <drm/drm_fb_helper.h> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 43 | #include "intel_drv.h" |
Chris Wilson | 5d723d7 | 2016-08-04 16:32:35 +0100 | [diff] [blame] | 44 | #include "intel_frontbuffer.h" |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 45 | #include <drm/i915_drm.h> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 46 | #include "i915_drv.h" |
| 47 | |
Chris Wilson | fabef82 | 2017-02-15 10:59:19 +0000 | [diff] [blame] | 48 | static 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 Vetter | e991077 | 2014-06-18 15:05:19 +0200 | [diff] [blame] | 56 | static 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 Wilson | fabef82 | 2017-02-15 10:59:19 +0000 | [diff] [blame] | 64 | if (ret == 0) |
| 65 | intel_fbdev_invalidate(ifbdev); |
Daniel Vetter | e991077 | 2014-06-18 15:05:19 +0200 | [diff] [blame] | 66 | |
| 67 | return ret; |
| 68 | } |
| 69 | |
Rodrigo Vivi | 03e515f | 2015-03-09 17:57:07 -0700 | [diff] [blame] | 70 | static 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 Wilson | fabef82 | 2017-02-15 10:59:19 +0000 | [diff] [blame] | 78 | if (ret == 0) |
| 79 | intel_fbdev_invalidate(ifbdev); |
Rodrigo Vivi | 03e515f | 2015-03-09 17:57:07 -0700 | [diff] [blame] | 80 | |
| 81 | return ret; |
| 82 | } |
| 83 | |
Rodrigo Vivi | d9a946b | 2015-05-28 10:26:58 -0700 | [diff] [blame] | 84 | static 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 Vivi | d9a946b | 2015-05-28 10:26:58 -0700 | [diff] [blame] | 90 | int ret; |
Rodrigo Vivi | d9a946b | 2015-05-28 10:26:58 -0700 | [diff] [blame] | 91 | |
Chris Wilson | fabef82 | 2017-02-15 10:59:19 +0000 | [diff] [blame] | 92 | ret = drm_fb_helper_pan_display(var, info); |
| 93 | if (ret == 0) |
| 94 | intel_fbdev_invalidate(ifbdev); |
Rodrigo Vivi | d9a946b | 2015-05-28 10:26:58 -0700 | [diff] [blame] | 95 | |
| 96 | return ret; |
| 97 | } |
| 98 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 99 | static struct fb_ops intelfb_ops = { |
| 100 | .owner = THIS_MODULE, |
Stefan Christ | a36384d | 2016-11-14 00:03:27 +0100 | [diff] [blame] | 101 | DRM_FB_HELPER_DEFAULT_OPS, |
Daniel Vetter | e991077 | 2014-06-18 15:05:19 +0200 | [diff] [blame] | 102 | .fb_set_par = intel_fbdev_set_par, |
Archit Taneja | 21cff14 | 2015-07-31 16:21:56 +0530 | [diff] [blame] | 103 | .fb_fillrect = drm_fb_helper_cfb_fillrect, |
| 104 | .fb_copyarea = drm_fb_helper_cfb_copyarea, |
| 105 | .fb_imageblit = drm_fb_helper_cfb_imageblit, |
Rodrigo Vivi | d9a946b | 2015-05-28 10:26:58 -0700 | [diff] [blame] | 106 | .fb_pan_display = intel_fbdev_pan_display, |
Rodrigo Vivi | 03e515f | 2015-03-09 17:57:07 -0700 | [diff] [blame] | 107 | .fb_blank = intel_fbdev_blank, |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 108 | }; |
| 109 | |
Jesse Barnes | 8b4f49e | 2013-11-25 15:51:16 -0800 | [diff] [blame] | 110 | static int intelfb_alloc(struct drm_fb_helper *helper, |
| 111 | struct drm_fb_helper_surface_size *sizes) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 112 | { |
Ville Syrjälä | 3430824 | 2013-05-31 20:07:05 +0300 | [diff] [blame] | 113 | struct intel_fbdev *ifbdev = |
| 114 | container_of(helper, struct intel_fbdev, helper); |
Lukas Wunner | 4601b93 | 2015-12-19 15:40:39 +0100 | [diff] [blame] | 115 | struct drm_framebuffer *fb; |
Ville Syrjälä | 3430824 | 2013-05-31 20:07:05 +0300 | [diff] [blame] | 116 | struct drm_device *dev = helper->dev; |
Paulo Zanoni | 3badb49 | 2015-09-23 12:52:23 -0300 | [diff] [blame] | 117 | struct drm_i915_private *dev_priv = to_i915(dev); |
Joonas Lahtinen | 72e96d6 | 2016-03-30 16:57:10 +0300 | [diff] [blame] | 118 | struct i915_ggtt *ggtt = &dev_priv->ggtt; |
Ville Syrjälä | 3a7f2f6 | 2012-05-24 21:08:56 +0300 | [diff] [blame] | 119 | struct drm_mode_fb_cmd2 mode_cmd = {}; |
Chris Wilson | 24dbf51 | 2017-02-15 10:59:18 +0000 | [diff] [blame] | 120 | struct drm_i915_gem_object *obj; |
James Simmons | 57084d0 | 2010-12-20 19:10:39 +0000 | [diff] [blame] | 121 | int size, ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 122 | |
Dave Airlie | b8c00ac | 2009-10-06 13:54:01 +1000 | [diff] [blame] | 123 | /* we don't do packed 24bpp */ |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 124 | if (sizes->surface_bpp == 24) |
| 125 | sizes->surface_bpp = 32; |
Dave Airlie | b8c00ac | 2009-10-06 13:54:01 +1000 | [diff] [blame] | 126 | |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 127 | mode_cmd.width = sizes->surface_width; |
| 128 | mode_cmd.height = sizes->surface_height; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 129 | |
Paulo Zanoni | de45eaf | 2013-10-18 18:48:24 -0300 | [diff] [blame] | 130 | mode_cmd.pitches[0] = ALIGN(mode_cmd.width * |
| 131 | DIV_ROUND_UP(sizes->surface_bpp, 8), 64); |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 132 | mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, |
| 133 | sizes->surface_depth); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 134 | |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 135 | size = mode_cmd.pitches[0] * mode_cmd.height; |
Fabian Frederick | 1267a26 | 2014-07-01 20:39:41 +0200 | [diff] [blame] | 136 | size = PAGE_ALIGN(size); |
Paulo Zanoni | 3badb49 | 2015-09-23 12:52:23 -0300 | [diff] [blame] | 137 | |
| 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 Wilson | 24dbf51 | 2017-02-15 10:59:18 +0000 | [diff] [blame] | 141 | obj = NULL; |
Joonas Lahtinen | 72e96d6 | 2016-03-30 16:57:10 +0300 | [diff] [blame] | 142 | if (size * 2 < ggtt->stolen_usable_size) |
Tvrtko Ursulin | 187685c | 2016-12-01 14:16:36 +0000 | [diff] [blame] | 143 | obj = i915_gem_object_create_stolen(dev_priv, size); |
Chris Wilson | 0ffb0ff | 2012-11-15 11:32:27 +0000 | [diff] [blame] | 144 | if (obj == NULL) |
Tvrtko Ursulin | 12d79d7 | 2016-12-01 14:16:37 +0000 | [diff] [blame] | 145 | obj = i915_gem_object_create(dev_priv, size); |
Chris Wilson | fe3db79 | 2016-04-25 13:32:13 +0100 | [diff] [blame] | 146 | if (IS_ERR(obj)) { |
Keith Packard | 1ae8c0a | 2009-06-28 15:42:17 -0700 | [diff] [blame] | 147 | DRM_ERROR("failed to allocate framebuffer\n"); |
Chris Wilson | fe3db79 | 2016-04-25 13:32:13 +0100 | [diff] [blame] | 148 | ret = PTR_ERR(obj); |
Chris Wilson | 24dbf51 | 2017-02-15 10:59:18 +0000 | [diff] [blame] | 149 | goto err; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 150 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 151 | |
Chris Wilson | 24dbf51 | 2017-02-15 10:59:18 +0000 | [diff] [blame] | 152 | fb = intel_framebuffer_create(obj, &mode_cmd); |
Daniel Vetter | a8bb681 | 2014-02-10 18:00:39 +0100 | [diff] [blame] | 153 | if (IS_ERR(fb)) { |
| 154 | ret = PTR_ERR(fb); |
Chris Wilson | 24dbf51 | 2017-02-15 10:59:18 +0000 | [diff] [blame] | 155 | goto err_obj; |
Tvrtko Ursulin | 850c4cd | 2014-10-30 16:39:38 +0000 | [diff] [blame] | 156 | } |
| 157 | |
Daniel Vetter | a8bb681 | 2014-02-10 18:00:39 +0100 | [diff] [blame] | 158 | ifbdev->fb = to_intel_framebuffer(fb); |
Jesse Barnes | 8b4f49e | 2013-11-25 15:51:16 -0800 | [diff] [blame] | 159 | |
| 160 | return 0; |
| 161 | |
Chris Wilson | 24dbf51 | 2017-02-15 10:59:18 +0000 | [diff] [blame] | 162 | err_obj: |
| 163 | i915_gem_object_put(obj); |
| 164 | err: |
Jesse Barnes | 8b4f49e | 2013-11-25 15:51:16 -0800 | [diff] [blame] | 165 | return ret; |
| 166 | } |
| 167 | |
| 168 | static 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 Barnes | 8bcd455 | 2014-02-07 12:10:38 -0800 | [diff] [blame] | 173 | struct intel_framebuffer *intel_fb = ifbdev->fb; |
Jesse Barnes | 8b4f49e | 2013-11-25 15:51:16 -0800 | [diff] [blame] | 174 | struct drm_device *dev = helper->dev; |
Joonas Lahtinen | 72e96d6 | 2016-03-30 16:57:10 +0300 | [diff] [blame] | 175 | struct drm_i915_private *dev_priv = to_i915(dev); |
David Weinehall | 52a05c3 | 2016-08-22 13:32:44 +0300 | [diff] [blame] | 176 | struct pci_dev *pdev = dev_priv->drm.pdev; |
Joonas Lahtinen | 72e96d6 | 2016-03-30 16:57:10 +0300 | [diff] [blame] | 177 | struct i915_ggtt *ggtt = &dev_priv->ggtt; |
Jesse Barnes | 8b4f49e | 2013-11-25 15:51:16 -0800 | [diff] [blame] | 178 | struct fb_info *info; |
| 179 | struct drm_framebuffer *fb; |
Chris Wilson | 8ef8561 | 2016-04-28 09:56:39 +0100 | [diff] [blame] | 180 | struct i915_vma *vma; |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 181 | bool prealloc = false; |
Chris Wilson | 406ea8d | 2016-07-20 13:31:55 +0100 | [diff] [blame] | 182 | void __iomem *vaddr; |
Chris Wilson | 8ef8561 | 2016-04-28 09:56:39 +0100 | [diff] [blame] | 183 | int ret; |
Jesse Barnes | 8b4f49e | 2013-11-25 15:51:16 -0800 | [diff] [blame] | 184 | |
Chris Wilson | edd586f | 2014-04-23 08:54:31 +0100 | [diff] [blame] | 185 | 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); |
Harsha Sharma | c3ed110 | 2017-10-09 17:36:43 +0530 | [diff] [blame^] | 192 | drm_framebuffer_put(&intel_fb->base); |
Chris Wilson | edd586f | 2014-04-23 08:54:31 +0100 | [diff] [blame] | 193 | intel_fb = ifbdev->fb = NULL; |
| 194 | } |
Jesse Barnes | 8bcd455 | 2014-02-07 12:10:38 -0800 | [diff] [blame] | 195 | if (!intel_fb || WARN_ON(!intel_fb->obj)) { |
Jesse Barnes | 48e9212 | 2013-11-26 11:25:54 -0800 | [diff] [blame] | 196 | DRM_DEBUG_KMS("no BIOS fb, allocating a new one\n"); |
Jesse Barnes | 8b4f49e | 2013-11-25 15:51:16 -0800 | [diff] [blame] | 197 | ret = intelfb_alloc(helper, sizes); |
| 198 | if (ret) |
Tvrtko Ursulin | 51f1385 | 2015-06-30 10:06:27 +0100 | [diff] [blame] | 199 | return ret; |
Jesse Barnes | 8bcd455 | 2014-02-07 12:10:38 -0800 | [diff] [blame] | 200 | intel_fb = ifbdev->fb; |
Jesse Barnes | 8b4f49e | 2013-11-25 15:51:16 -0800 | [diff] [blame] | 201 | } else { |
Jesse Barnes | 48e9212 | 2013-11-26 11:25:54 -0800 | [diff] [blame] | 202 | DRM_DEBUG_KMS("re-using BIOS fb\n"); |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 203 | prealloc = true; |
Jesse Barnes | 8b4f49e | 2013-11-25 15:51:16 -0800 | [diff] [blame] | 204 | sizes->fb_width = intel_fb->base.width; |
| 205 | sizes->fb_height = intel_fb->base.height; |
| 206 | } |
| 207 | |
Tvrtko Ursulin | 51f1385 | 2015-06-30 10:06:27 +0100 | [diff] [blame] | 208 | mutex_lock(&dev->struct_mutex); |
Ville Syrjälä | c636423 | 2017-09-01 22:54:56 +0300 | [diff] [blame] | 209 | intel_runtime_pm_get(dev_priv); |
Tvrtko Ursulin | 51f1385 | 2015-06-30 10:06:27 +0100 | [diff] [blame] | 210 | |
Chris Wilson | 0c82312 | 2015-12-04 16:05:26 +0000 | [diff] [blame] | 211 | /* Pin the GGTT vma for our access via info->screen_base. |
| 212 | * This also validates that any existing fb inherited from the |
| 213 | * BIOS is suitable for own access. |
| 214 | */ |
Robert Foss | c2c446a | 2017-05-19 16:50:17 -0400 | [diff] [blame] | 215 | vma = intel_pin_and_fence_fb_obj(&ifbdev->fb->base, DRM_MODE_ROTATE_0); |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 216 | if (IS_ERR(vma)) { |
| 217 | ret = PTR_ERR(vma); |
Chris Wilson | 0c82312 | 2015-12-04 16:05:26 +0000 | [diff] [blame] | 218 | goto out_unlock; |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 219 | } |
Chris Wilson | 0c82312 | 2015-12-04 16:05:26 +0000 | [diff] [blame] | 220 | |
Archit Taneja | 21cff14 | 2015-07-31 16:21:56 +0530 | [diff] [blame] | 221 | info = drm_fb_helper_alloc_fbi(helper); |
| 222 | if (IS_ERR(info)) { |
Lukas Wunner | 366e39b | 2015-11-18 16:29:51 +0100 | [diff] [blame] | 223 | DRM_ERROR("Failed to allocate fb_info\n"); |
Archit Taneja | 21cff14 | 2015-07-31 16:21:56 +0530 | [diff] [blame] | 224 | ret = PTR_ERR(info); |
Chris Wilson | b4476f5 | 2009-02-11 14:26:36 +0000 | [diff] [blame] | 225 | goto out_unpin; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 226 | } |
| 227 | |
Ville Syrjälä | 3430824 | 2013-05-31 20:07:05 +0300 | [diff] [blame] | 228 | info->par = helper; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 229 | |
Jesse Barnes | 8bcd455 | 2014-02-07 12:10:38 -0800 | [diff] [blame] | 230 | fb = &ifbdev->fb->base; |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 231 | |
| 232 | ifbdev->helper.fb = fb; |
Dave Airlie | 785b93e | 2009-08-28 15:46:53 +1000 | [diff] [blame] | 233 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 234 | strcpy(info->fix.id, "inteldrmfb"); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 235 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 236 | info->fbops = &intelfb_ops; |
| 237 | |
Dave Airlie | 4410f39 | 2009-06-16 15:34:38 -0700 | [diff] [blame] | 238 | /* setup aperture base/size for vesafb takeover */ |
Marcin Slusarz | 1471ca9 | 2010-05-16 17:27:03 +0200 | [diff] [blame] | 239 | info->apertures->ranges[0].base = dev->mode_config.fb_base; |
Joonas Lahtinen | 72e96d6 | 2016-03-30 16:57:10 +0300 | [diff] [blame] | 240 | info->apertures->ranges[0].size = ggtt->mappable_end; |
Dave Airlie | 4410f39 | 2009-06-16 15:34:38 -0700 | [diff] [blame] | 241 | |
Chris Wilson | bde13eb | 2016-08-15 10:49:07 +0100 | [diff] [blame] | 242 | info->fix.smem_start = dev->mode_config.fb_base + i915_ggtt_offset(vma); |
Chris Wilson | 8ef8561 | 2016-04-28 09:56:39 +0100 | [diff] [blame] | 243 | info->fix.smem_len = vma->node.size; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 244 | |
Chris Wilson | 8ef8561 | 2016-04-28 09:56:39 +0100 | [diff] [blame] | 245 | vaddr = i915_vma_pin_iomap(vma); |
| 246 | if (IS_ERR(vaddr)) { |
Lukas Wunner | 366e39b | 2015-11-18 16:29:51 +0100 | [diff] [blame] | 247 | DRM_ERROR("Failed to remap framebuffer into virtual memory\n"); |
Chris Wilson | 8ef8561 | 2016-04-28 09:56:39 +0100 | [diff] [blame] | 248 | ret = PTR_ERR(vaddr); |
Daniel Vetter | da7bdda | 2017-02-07 17:16:03 +0100 | [diff] [blame] | 249 | goto out_unpin; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 250 | } |
Chris Wilson | 8ef8561 | 2016-04-28 09:56:39 +0100 | [diff] [blame] | 251 | info->screen_base = vaddr; |
| 252 | info->screen_size = vma->node.size; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 253 | |
Jesse Barnes | 24576d2 | 2013-03-26 09:25:45 -0700 | [diff] [blame] | 254 | /* This driver doesn't need a VT switch to restore the mode on resume */ |
| 255 | info->skip_vt_switch = true; |
| 256 | |
Ville Syrjälä | b00c600 | 2016-12-14 23:31:35 +0200 | [diff] [blame] | 257 | drm_fb_helper_fill_fix(info, fb->pitches[0], fb->format->depth); |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 258 | drm_fb_helper_fill_var(info, &ifbdev->helper, sizes->fb_width, sizes->fb_height); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 259 | |
Chris Wilson | 88afe71 | 2012-12-16 12:15:41 +0000 | [diff] [blame] | 260 | /* 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 Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 264 | if (intel_fb->obj->stolen && !prealloc) |
Chris Wilson | 88afe71 | 2012-12-16 12:15:41 +0000 | [diff] [blame] | 265 | memset_io(info->screen_base, 0, info->screen_size); |
| 266 | |
Sascha Hauer | fb2a99e | 2012-02-06 10:58:19 +0100 | [diff] [blame] | 267 | /* Use default scratch pixmap (info->pixmap.flags = FB_PIXMAP_SYSTEM) */ |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 268 | |
Chris Wilson | bde13eb | 2016-08-15 10:49:07 +0100 | [diff] [blame] | 269 | DRM_DEBUG_KMS("allocated %dx%d fb: 0x%08x\n", |
| 270 | fb->width, fb->height, i915_ggtt_offset(vma)); |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 271 | ifbdev->vma = vma; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 272 | |
Ville Syrjälä | c636423 | 2017-09-01 22:54:56 +0300 | [diff] [blame] | 273 | intel_runtime_pm_put(dev_priv); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 274 | mutex_unlock(&dev->struct_mutex); |
David Weinehall | 52a05c3 | 2016-08-22 13:32:44 +0300 | [diff] [blame] | 275 | vga_switcheroo_client_fb_set(pdev, info); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 276 | return 0; |
| 277 | |
Chris Wilson | b4476f5 | 2009-02-11 14:26:36 +0000 | [diff] [blame] | 278 | out_unpin: |
Chris Wilson | be1e341 | 2017-01-16 15:21:27 +0000 | [diff] [blame] | 279 | intel_unpin_fb_vma(vma); |
Chris Wilson | 0c82312 | 2015-12-04 16:05:26 +0000 | [diff] [blame] | 280 | out_unlock: |
Ville Syrjälä | c636423 | 2017-09-01 22:54:56 +0300 | [diff] [blame] | 281 | intel_runtime_pm_put(dev_priv); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 282 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 283 | return ret; |
| 284 | } |
| 285 | |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 286 | static struct drm_fb_helper_crtc * |
| 287 | intel_fb_helper_crtc(struct drm_fb_helper *fb_helper, struct drm_crtc *crtc) |
| 288 | { |
| 289 | int i; |
| 290 | |
| 291 | for (i = 0; i < fb_helper->crtc_count; i++) |
| 292 | if (fb_helper->crtc_info[i].mode_set.crtc == crtc) |
| 293 | return &fb_helper->crtc_info[i]; |
| 294 | |
| 295 | return NULL; |
| 296 | } |
| 297 | |
| 298 | /* |
| 299 | * Try to read the BIOS display configuration and use it for the initial |
| 300 | * fb configuration. |
| 301 | * |
| 302 | * The BIOS or boot loader will generally create an initial display |
| 303 | * configuration for us that includes some set of active pipes and displays. |
| 304 | * This routine tries to figure out which pipes and connectors are active |
| 305 | * and stuffs them into the crtcs and modes array given to us by the |
| 306 | * drm_fb_helper code. |
| 307 | * |
| 308 | * The overall sequence is: |
| 309 | * intel_fbdev_init - from driver load |
| 310 | * intel_fbdev_init_bios - initialize the intel_fbdev using BIOS data |
| 311 | * drm_fb_helper_init - build fb helper structs |
| 312 | * drm_fb_helper_single_add_all_connectors - more fb helper structs |
| 313 | * intel_fbdev_initial_config - apply the config |
| 314 | * drm_fb_helper_initial_config - call ->probe then register_framebuffer() |
| 315 | * drm_setup_crtcs - build crtc config for fbdev |
| 316 | * intel_fb_initial_config - find active connectors etc |
| 317 | * drm_fb_helper_single_fb_probe - set up fbdev |
| 318 | * intelfb_create - re-use or alloc fb, build out fbdev structs |
| 319 | * |
| 320 | * Note that we don't make special consideration whether we could actually |
| 321 | * switch to the selected modes without a full modeset. E.g. when the display |
| 322 | * is in VGA mode we need to recalculate watermarks and set a new high-res |
| 323 | * framebuffer anyway. |
| 324 | */ |
| 325 | static bool intel_fb_initial_config(struct drm_fb_helper *fb_helper, |
| 326 | struct drm_fb_helper_crtc **crtcs, |
| 327 | struct drm_display_mode **modes, |
Dave Airlie | b0ee9e7 | 2014-10-20 16:31:53 +1000 | [diff] [blame] | 328 | struct drm_fb_offset *offsets, |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 329 | bool *enabled, int width, int height) |
| 330 | { |
Tvrtko Ursulin | b7f05d4 | 2016-11-09 11:30:45 +0000 | [diff] [blame] | 331 | struct drm_i915_private *dev_priv = to_i915(fb_helper->dev); |
Chris Wilson | 754a765 | 2017-02-24 11:43:06 +0000 | [diff] [blame] | 332 | unsigned long conn_configured, conn_seq, mask; |
Chris Wilson | 86f40bb | 2016-07-02 15:36:02 +0100 | [diff] [blame] | 333 | unsigned int count = min(fb_helper->connector_count, BITS_PER_LONG); |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 334 | int i, j; |
Jesse Barnes | 02f5eeb | 2014-02-12 15:03:40 -0800 | [diff] [blame] | 335 | bool *save_enabled; |
Daniel Vetter | e13a058 | 2017-07-05 06:56:29 +0200 | [diff] [blame] | 336 | bool fallback = true, ret = true; |
Daniel Vetter | 7e696e4 | 2014-03-04 21:08:42 +0100 | [diff] [blame] | 337 | int num_connectors_enabled = 0; |
| 338 | int num_connectors_detected = 0; |
Daniel Vetter | e13a058 | 2017-07-05 06:56:29 +0200 | [diff] [blame] | 339 | struct drm_modeset_acquire_ctx ctx; |
Jesse Barnes | 02f5eeb | 2014-02-12 15:03:40 -0800 | [diff] [blame] | 340 | |
Chris Wilson | 86f40bb | 2016-07-02 15:36:02 +0100 | [diff] [blame] | 341 | save_enabled = kcalloc(count, sizeof(bool), GFP_KERNEL); |
Jesse Barnes | 02f5eeb | 2014-02-12 15:03:40 -0800 | [diff] [blame] | 342 | if (!save_enabled) |
| 343 | return false; |
| 344 | |
Daniel Vetter | e13a058 | 2017-07-05 06:56:29 +0200 | [diff] [blame] | 345 | drm_modeset_acquire_init(&ctx, 0); |
| 346 | |
| 347 | while (drm_modeset_lock_all_ctx(fb_helper->dev, &ctx) != 0) |
| 348 | drm_modeset_backoff(&ctx); |
| 349 | |
Chris Wilson | 86f40bb | 2016-07-02 15:36:02 +0100 | [diff] [blame] | 350 | memcpy(save_enabled, enabled, count); |
Joonas Lahtinen | 3c779a4 | 2017-02-08 15:12:09 +0200 | [diff] [blame] | 351 | mask = GENMASK(count - 1, 0); |
Chris Wilson | 86f40bb | 2016-07-02 15:36:02 +0100 | [diff] [blame] | 352 | conn_configured = 0; |
Dave Airlie | b0ee9e7 | 2014-10-20 16:31:53 +1000 | [diff] [blame] | 353 | retry: |
Chris Wilson | 754a765 | 2017-02-24 11:43:06 +0000 | [diff] [blame] | 354 | conn_seq = conn_configured; |
Chris Wilson | 86f40bb | 2016-07-02 15:36:02 +0100 | [diff] [blame] | 355 | for (i = 0; i < count; i++) { |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 356 | struct drm_fb_helper_connector *fb_conn; |
| 357 | struct drm_connector *connector; |
| 358 | struct drm_encoder *encoder; |
| 359 | struct drm_fb_helper_crtc *new_crtc; |
| 360 | |
| 361 | fb_conn = fb_helper->connector_info[i]; |
| 362 | connector = fb_conn->connector; |
Daniel Vetter | 7e696e4 | 2014-03-04 21:08:42 +0100 | [diff] [blame] | 363 | |
Chris Wilson | 86f40bb | 2016-07-02 15:36:02 +0100 | [diff] [blame] | 364 | if (conn_configured & BIT(i)) |
Dave Airlie | b0ee9e7 | 2014-10-20 16:31:53 +1000 | [diff] [blame] | 365 | continue; |
| 366 | |
Chris Wilson | 754a765 | 2017-02-24 11:43:06 +0000 | [diff] [blame] | 367 | if (conn_seq == 0 && !connector->has_tile) |
Dave Airlie | b0ee9e7 | 2014-10-20 16:31:53 +1000 | [diff] [blame] | 368 | continue; |
| 369 | |
Daniel Vetter | 7e696e4 | 2014-03-04 21:08:42 +0100 | [diff] [blame] | 370 | if (connector->status == connector_status_connected) |
| 371 | num_connectors_detected++; |
| 372 | |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 373 | if (!enabled[i]) { |
Chris Wilson | c0c9762 | 2014-05-13 13:45:09 +0100 | [diff] [blame] | 374 | DRM_DEBUG_KMS("connector %s not enabled, skipping\n", |
Jani Nikula | c23cc41 | 2014-06-03 14:56:17 +0300 | [diff] [blame] | 375 | connector->name); |
Chris Wilson | 86f40bb | 2016-07-02 15:36:02 +0100 | [diff] [blame] | 376 | conn_configured |= BIT(i); |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 377 | continue; |
| 378 | } |
| 379 | |
Chris Wilson | d84a0f3 | 2014-08-18 10:35:29 -0700 | [diff] [blame] | 380 | if (connector->force == DRM_FORCE_OFF) { |
| 381 | DRM_DEBUG_KMS("connector %s is disabled by user, skipping\n", |
| 382 | connector->name); |
| 383 | enabled[i] = false; |
| 384 | continue; |
| 385 | } |
| 386 | |
Maarten Lankhorst | e28661b | 2016-02-17 09:18:39 +0100 | [diff] [blame] | 387 | encoder = connector->state->best_encoder; |
| 388 | if (!encoder || WARN_ON(!connector->state->crtc)) { |
Chris Wilson | d84a0f3 | 2014-08-18 10:35:29 -0700 | [diff] [blame] | 389 | if (connector->force > DRM_FORCE_OFF) |
| 390 | goto bail; |
| 391 | |
Chris Wilson | c0c9762 | 2014-05-13 13:45:09 +0100 | [diff] [blame] | 392 | DRM_DEBUG_KMS("connector %s has no encoder or crtc, skipping\n", |
Jani Nikula | c23cc41 | 2014-06-03 14:56:17 +0300 | [diff] [blame] | 393 | connector->name); |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 394 | enabled[i] = false; |
Chris Wilson | 86f40bb | 2016-07-02 15:36:02 +0100 | [diff] [blame] | 395 | conn_configured |= BIT(i); |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 396 | continue; |
| 397 | } |
| 398 | |
Daniel Vetter | 7e696e4 | 2014-03-04 21:08:42 +0100 | [diff] [blame] | 399 | num_connectors_enabled++; |
| 400 | |
Chris Wilson | 86f40bb | 2016-07-02 15:36:02 +0100 | [diff] [blame] | 401 | new_crtc = intel_fb_helper_crtc(fb_helper, |
| 402 | connector->state->crtc); |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 403 | |
| 404 | /* |
| 405 | * Make sure we're not trying to drive multiple connectors |
| 406 | * with a single CRTC, since our cloning support may not |
| 407 | * match the BIOS. |
| 408 | */ |
Chris Wilson | 86f40bb | 2016-07-02 15:36:02 +0100 | [diff] [blame] | 409 | for (j = 0; j < count; j++) { |
Jesse Barnes | 02f5eeb | 2014-02-12 15:03:40 -0800 | [diff] [blame] | 410 | if (crtcs[j] == new_crtc) { |
Daniel Vetter | 7e696e4 | 2014-03-04 21:08:42 +0100 | [diff] [blame] | 411 | DRM_DEBUG_KMS("fallback: cloned configuration\n"); |
Chris Wilson | d84a0f3 | 2014-08-18 10:35:29 -0700 | [diff] [blame] | 412 | goto bail; |
Jesse Barnes | 02f5eeb | 2014-02-12 15:03:40 -0800 | [diff] [blame] | 413 | } |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 414 | } |
| 415 | |
Chris Wilson | c0c9762 | 2014-05-13 13:45:09 +0100 | [diff] [blame] | 416 | DRM_DEBUG_KMS("looking for cmdline mode on connector %s\n", |
Jani Nikula | c23cc41 | 2014-06-03 14:56:17 +0300 | [diff] [blame] | 417 | connector->name); |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 418 | |
| 419 | /* go for command line mode first */ |
Vincent Abriou | a09759e | 2017-01-06 17:44:43 +0100 | [diff] [blame] | 420 | modes[i] = drm_pick_cmdline_mode(fb_conn); |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 421 | |
| 422 | /* try for preferred next */ |
| 423 | if (!modes[i]) { |
Dave Airlie | b0ee9e7 | 2014-10-20 16:31:53 +1000 | [diff] [blame] | 424 | DRM_DEBUG_KMS("looking for preferred mode on connector %s %d\n", |
| 425 | connector->name, connector->has_tile); |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 426 | modes[i] = drm_has_preferred_mode(fb_conn, width, |
| 427 | height); |
| 428 | } |
| 429 | |
Chris Wilson | afba0b5 | 2014-05-13 16:07:37 +0100 | [diff] [blame] | 430 | /* No preferred mode marked by the EDID? Are there any modes? */ |
| 431 | if (!modes[i] && !list_empty(&connector->modes)) { |
| 432 | DRM_DEBUG_KMS("using first mode listed on connector %s\n", |
Dave Airlie | 8d4ad9d | 2014-06-05 20:28:59 +1000 | [diff] [blame] | 433 | connector->name); |
Chris Wilson | afba0b5 | 2014-05-13 16:07:37 +0100 | [diff] [blame] | 434 | modes[i] = list_first_entry(&connector->modes, |
| 435 | struct drm_display_mode, |
| 436 | head); |
| 437 | } |
| 438 | |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 439 | /* last resort: use current mode */ |
| 440 | if (!modes[i]) { |
| 441 | /* |
| 442 | * IMPORTANT: We want to use the adjusted mode (i.e. |
| 443 | * after the panel fitter upscaling) as the initial |
| 444 | * config, not the input mode, which is what crtc->mode |
Maarten Lankhorst | 5c1e342 | 2015-07-14 15:58:28 +0200 | [diff] [blame] | 445 | * usually contains. But since our current |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 446 | * code puts a mode derived from the post-pfit timings |
Maarten Lankhorst | 5c1e342 | 2015-07-14 15:58:28 +0200 | [diff] [blame] | 447 | * into crtc->mode this works out correctly. |
Maarten Lankhorst | e28661b | 2016-02-17 09:18:39 +0100 | [diff] [blame] | 448 | * |
| 449 | * This is crtc->mode and not crtc->state->mode for the |
| 450 | * fastboot check to work correctly. crtc_state->mode has |
| 451 | * I915_MODE_FLAG_INHERITED, which we clear to force check |
| 452 | * state. |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 453 | */ |
Chris Wilson | c0c9762 | 2014-05-13 13:45:09 +0100 | [diff] [blame] | 454 | DRM_DEBUG_KMS("looking for current mode on connector %s\n", |
Jani Nikula | c23cc41 | 2014-06-03 14:56:17 +0300 | [diff] [blame] | 455 | connector->name); |
Maarten Lankhorst | e28661b | 2016-02-17 09:18:39 +0100 | [diff] [blame] | 456 | modes[i] = &connector->state->crtc->mode; |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 457 | } |
| 458 | crtcs[i] = new_crtc; |
| 459 | |
Ville Syrjälä | 78108b7 | 2016-05-27 20:59:19 +0300 | [diff] [blame] | 460 | DRM_DEBUG_KMS("connector %s on [CRTC:%d:%s]: %dx%d%s\n", |
Jani Nikula | c23cc41 | 2014-06-03 14:56:17 +0300 | [diff] [blame] | 461 | connector->name, |
Maarten Lankhorst | e28661b | 2016-02-17 09:18:39 +0100 | [diff] [blame] | 462 | connector->state->crtc->base.id, |
Ville Syrjälä | 78108b7 | 2016-05-27 20:59:19 +0300 | [diff] [blame] | 463 | connector->state->crtc->name, |
Chris Wilson | c0c9762 | 2014-05-13 13:45:09 +0100 | [diff] [blame] | 464 | modes[i]->hdisplay, modes[i]->vdisplay, |
| 465 | modes[i]->flags & DRM_MODE_FLAG_INTERLACE ? "i" :""); |
Jesse Barnes | 02f5eeb | 2014-02-12 15:03:40 -0800 | [diff] [blame] | 466 | |
Daniel Vetter | 7c2bb53 | 2014-03-04 21:08:41 +0100 | [diff] [blame] | 467 | fallback = false; |
Chris Wilson | 86f40bb | 2016-07-02 15:36:02 +0100 | [diff] [blame] | 468 | conn_configured |= BIT(i); |
Dave Airlie | b0ee9e7 | 2014-10-20 16:31:53 +1000 | [diff] [blame] | 469 | } |
| 470 | |
Chris Wilson | 754a765 | 2017-02-24 11:43:06 +0000 | [diff] [blame] | 471 | if ((conn_configured & mask) != mask && conn_configured != conn_seq) |
Dave Airlie | b0ee9e7 | 2014-10-20 16:31:53 +1000 | [diff] [blame] | 472 | goto retry; |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 473 | |
Daniel Vetter | 7e696e4 | 2014-03-04 21:08:42 +0100 | [diff] [blame] | 474 | /* |
| 475 | * If the BIOS didn't enable everything it could, fall back to have the |
| 476 | * same user experiencing of lighting up as much as possible like the |
| 477 | * fbdev helper library. |
| 478 | */ |
| 479 | if (num_connectors_enabled != num_connectors_detected && |
Tvrtko Ursulin | b7f05d4 | 2016-11-09 11:30:45 +0000 | [diff] [blame] | 480 | num_connectors_enabled < INTEL_INFO(dev_priv)->num_pipes) { |
Daniel Vetter | 7e696e4 | 2014-03-04 21:08:42 +0100 | [diff] [blame] | 481 | DRM_DEBUG_KMS("fallback: Not all outputs enabled\n"); |
| 482 | DRM_DEBUG_KMS("Enabled: %i, detected: %i\n", num_connectors_enabled, |
| 483 | num_connectors_detected); |
| 484 | fallback = true; |
| 485 | } |
| 486 | |
Daniel Vetter | 7c2bb53 | 2014-03-04 21:08:41 +0100 | [diff] [blame] | 487 | if (fallback) { |
Chris Wilson | d84a0f3 | 2014-08-18 10:35:29 -0700 | [diff] [blame] | 488 | bail: |
Daniel Vetter | 7e696e4 | 2014-03-04 21:08:42 +0100 | [diff] [blame] | 489 | DRM_DEBUG_KMS("Not using firmware configuration\n"); |
Chris Wilson | 86f40bb | 2016-07-02 15:36:02 +0100 | [diff] [blame] | 490 | memcpy(enabled, save_enabled, count); |
Daniel Vetter | e13a058 | 2017-07-05 06:56:29 +0200 | [diff] [blame] | 491 | ret = false; |
Jesse Barnes | 02f5eeb | 2014-02-12 15:03:40 -0800 | [diff] [blame] | 492 | } |
| 493 | |
Daniel Vetter | e13a058 | 2017-07-05 06:56:29 +0200 | [diff] [blame] | 494 | drm_modeset_drop_locks(&ctx); |
| 495 | drm_modeset_acquire_fini(&ctx); |
| 496 | |
Jesse Barnes | 02f5eeb | 2014-02-12 15:03:40 -0800 | [diff] [blame] | 497 | kfree(save_enabled); |
Daniel Vetter | e13a058 | 2017-07-05 06:56:29 +0200 | [diff] [blame] | 498 | return ret; |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 499 | } |
| 500 | |
Thierry Reding | 3a49387 | 2014-06-27 17:19:23 +0200 | [diff] [blame] | 501 | static const struct drm_fb_helper_funcs intel_fb_helper_funcs = { |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 502 | .initial_config = intel_fb_initial_config, |
Daniel Vetter | cd5428a | 2013-01-21 23:42:49 +0100 | [diff] [blame] | 503 | .fb_probe = intelfb_create, |
Dave Airlie | 4abe352 | 2010-03-30 05:34:18 +0000 | [diff] [blame] | 504 | }; |
| 505 | |
Chris Wilson | 43cee31 | 2016-06-21 09:16:54 +0100 | [diff] [blame] | 506 | static void intel_fbdev_destroy(struct intel_fbdev *ifbdev) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 507 | { |
Chris Wilson | 0c82312 | 2015-12-04 16:05:26 +0000 | [diff] [blame] | 508 | /* We rely on the object-free to release the VMA pinning for |
| 509 | * the info->screen_base mmaping. Leaking the VMA is simpler than |
| 510 | * trying to rectify all the possible error paths leading here. |
| 511 | */ |
Chris Wilson | ddfe156 | 2013-08-06 17:43:07 +0100 | [diff] [blame] | 512 | |
Dave Airlie | 4abe352 | 2010-03-30 05:34:18 +0000 | [diff] [blame] | 513 | drm_fb_helper_fini(&ifbdev->helper); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 514 | |
Chris Wilson | 15727ed | 2017-06-22 17:02:11 +0100 | [diff] [blame] | 515 | if (ifbdev->vma) { |
Chris Wilson | 43cee31 | 2016-06-21 09:16:54 +0100 | [diff] [blame] | 516 | mutex_lock(&ifbdev->helper.dev->struct_mutex); |
Chris Wilson | be1e341 | 2017-01-16 15:21:27 +0000 | [diff] [blame] | 517 | intel_unpin_fb_vma(ifbdev->vma); |
Chris Wilson | 43cee31 | 2016-06-21 09:16:54 +0100 | [diff] [blame] | 518 | mutex_unlock(&ifbdev->helper.dev->struct_mutex); |
Lukas Wunner | 54632ab | 2015-11-18 13:43:20 +0100 | [diff] [blame] | 519 | } |
Chris Wilson | 43cee31 | 2016-06-21 09:16:54 +0100 | [diff] [blame] | 520 | |
Chris Wilson | 15727ed | 2017-06-22 17:02:11 +0100 | [diff] [blame] | 521 | if (ifbdev->fb) |
| 522 | drm_framebuffer_remove(&ifbdev->fb->base); |
| 523 | |
Chris Wilson | 43cee31 | 2016-06-21 09:16:54 +0100 | [diff] [blame] | 524 | kfree(ifbdev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 525 | } |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 526 | |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 527 | /* |
| 528 | * Build an intel_fbdev struct using a BIOS allocated framebuffer, if possible. |
| 529 | * The core display code will have read out the current plane configuration, |
| 530 | * so we use that to figure out if there's an object for us to use as the |
| 531 | * fb, and if so, we re-use it for the fbdev configuration. |
| 532 | * |
| 533 | * Note we only support a single fb shared across pipes for boot (mostly for |
| 534 | * fbcon), so we just find the biggest and use that. |
| 535 | */ |
| 536 | static bool intel_fbdev_init_bios(struct drm_device *dev, |
| 537 | struct intel_fbdev *ifbdev) |
| 538 | { |
| 539 | struct intel_framebuffer *fb = NULL; |
| 540 | struct drm_crtc *crtc; |
| 541 | struct intel_crtc *intel_crtc; |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 542 | unsigned int max_size = 0; |
| 543 | |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 544 | /* Find the largest fb */ |
Damien Lespiau | 70e1e0e | 2014-05-13 23:32:24 +0100 | [diff] [blame] | 545 | for_each_crtc(dev, crtc) { |
Maarten Lankhorst | 8e9ba31 | 2015-07-13 16:30:16 +0200 | [diff] [blame] | 546 | struct drm_i915_gem_object *obj = |
| 547 | intel_fb_obj(crtc->primary->state->fb); |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 548 | intel_crtc = to_intel_crtc(crtc); |
| 549 | |
Maarten Lankhorst | d551599 | 2015-08-27 15:44:03 +0200 | [diff] [blame] | 550 | if (!crtc->state->active || !obj) { |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 551 | DRM_DEBUG_KMS("pipe %c not active or no fb, skipping\n", |
| 552 | pipe_name(intel_crtc->pipe)); |
| 553 | continue; |
| 554 | } |
| 555 | |
Maarten Lankhorst | 8e9ba31 | 2015-07-13 16:30:16 +0200 | [diff] [blame] | 556 | if (obj->base.size > max_size) { |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 557 | DRM_DEBUG_KMS("found possible fb from plane %c\n", |
| 558 | pipe_name(intel_crtc->pipe)); |
Maarten Lankhorst | 8e9ba31 | 2015-07-13 16:30:16 +0200 | [diff] [blame] | 559 | fb = to_intel_framebuffer(crtc->primary->state->fb); |
| 560 | max_size = obj->base.size; |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 561 | } |
| 562 | } |
| 563 | |
| 564 | if (!fb) { |
| 565 | DRM_DEBUG_KMS("no active fbs found, not using BIOS config\n"); |
| 566 | goto out; |
| 567 | } |
| 568 | |
| 569 | /* Now make sure all the pipes will fit into it */ |
Damien Lespiau | 70e1e0e | 2014-05-13 23:32:24 +0100 | [diff] [blame] | 570 | for_each_crtc(dev, crtc) { |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 571 | unsigned int cur_size; |
| 572 | |
| 573 | intel_crtc = to_intel_crtc(crtc); |
| 574 | |
Maarten Lankhorst | d551599 | 2015-08-27 15:44:03 +0200 | [diff] [blame] | 575 | if (!crtc->state->active) { |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 576 | DRM_DEBUG_KMS("pipe %c not active, skipping\n", |
| 577 | pipe_name(intel_crtc->pipe)); |
| 578 | continue; |
| 579 | } |
| 580 | |
| 581 | DRM_DEBUG_KMS("checking plane %c for BIOS fb\n", |
| 582 | pipe_name(intel_crtc->pipe)); |
| 583 | |
| 584 | /* |
| 585 | * See if the plane fb we found above will fit on this |
Chris Wilson | bc104d1 | 2014-03-20 15:11:21 +0000 | [diff] [blame] | 586 | * pipe. Note we need to use the selected fb's pitch and bpp |
| 587 | * rather than the current pipe's, since they differ. |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 588 | */ |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 589 | cur_size = intel_crtc->config->base.adjusted_mode.crtc_hdisplay; |
Ville Syrjälä | 272725c | 2016-12-14 23:32:20 +0200 | [diff] [blame] | 590 | cur_size = cur_size * fb->base.format->cpp[0]; |
Chris Wilson | bc104d1 | 2014-03-20 15:11:21 +0000 | [diff] [blame] | 591 | if (fb->base.pitches[0] < cur_size) { |
| 592 | DRM_DEBUG_KMS("fb not wide enough for plane %c (%d vs %d)\n", |
| 593 | pipe_name(intel_crtc->pipe), |
| 594 | cur_size, fb->base.pitches[0]); |
Chris Wilson | bc104d1 | 2014-03-20 15:11:21 +0000 | [diff] [blame] | 595 | fb = NULL; |
| 596 | break; |
| 597 | } |
| 598 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 599 | cur_size = intel_crtc->config->base.adjusted_mode.crtc_vdisplay; |
Ville Syrjälä | d88c4af | 2017-03-07 21:42:06 +0200 | [diff] [blame] | 600 | cur_size = intel_fb_align_height(&fb->base, 0, cur_size); |
Chris Wilson | bc104d1 | 2014-03-20 15:11:21 +0000 | [diff] [blame] | 601 | cur_size *= fb->base.pitches[0]; |
| 602 | DRM_DEBUG_KMS("pipe %c area: %dx%d, bpp: %d, size: %d\n", |
| 603 | pipe_name(intel_crtc->pipe), |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 604 | intel_crtc->config->base.adjusted_mode.crtc_hdisplay, |
| 605 | intel_crtc->config->base.adjusted_mode.crtc_vdisplay, |
Ville Syrjälä | 272725c | 2016-12-14 23:32:20 +0200 | [diff] [blame] | 606 | fb->base.format->cpp[0] * 8, |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 607 | cur_size); |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 608 | |
| 609 | if (cur_size > max_size) { |
| 610 | DRM_DEBUG_KMS("fb not big enough for plane %c (%d vs %d)\n", |
| 611 | pipe_name(intel_crtc->pipe), |
| 612 | cur_size, max_size); |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 613 | fb = NULL; |
| 614 | break; |
| 615 | } |
| 616 | |
| 617 | DRM_DEBUG_KMS("fb big enough for plane %c (%d >= %d)\n", |
| 618 | pipe_name(intel_crtc->pipe), |
| 619 | max_size, cur_size); |
| 620 | } |
| 621 | |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 622 | if (!fb) { |
| 623 | DRM_DEBUG_KMS("BIOS fb not suitable for all pipes, not using\n"); |
| 624 | goto out; |
| 625 | } |
| 626 | |
Ville Syrjälä | 272725c | 2016-12-14 23:32:20 +0200 | [diff] [blame] | 627 | ifbdev->preferred_bpp = fb->base.format->cpp[0] * 8; |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 628 | ifbdev->fb = fb; |
| 629 | |
Harsha Sharma | c3ed110 | 2017-10-09 17:36:43 +0530 | [diff] [blame^] | 630 | drm_framebuffer_get(&ifbdev->fb->base); |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 631 | |
| 632 | /* Final pass to check if any active pipes don't have fbs */ |
Damien Lespiau | 70e1e0e | 2014-05-13 23:32:24 +0100 | [diff] [blame] | 633 | for_each_crtc(dev, crtc) { |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 634 | intel_crtc = to_intel_crtc(crtc); |
| 635 | |
Maarten Lankhorst | d551599 | 2015-08-27 15:44:03 +0200 | [diff] [blame] | 636 | if (!crtc->state->active) |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 637 | continue; |
| 638 | |
Dave Airlie | 66e514c | 2014-04-03 07:51:54 +1000 | [diff] [blame] | 639 | WARN(!crtc->primary->fb, |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 640 | "re-used BIOS config but lost an fb on crtc %d\n", |
| 641 | crtc->base.id); |
| 642 | } |
| 643 | |
| 644 | |
| 645 | DRM_DEBUG_KMS("using BIOS fb for initial console\n"); |
| 646 | return true; |
| 647 | |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 648 | out: |
| 649 | |
| 650 | return false; |
| 651 | } |
| 652 | |
Chris Wilson | 82e3b8c | 2014-08-13 13:09:46 +0100 | [diff] [blame] | 653 | static void intel_fbdev_suspend_worker(struct work_struct *work) |
| 654 | { |
Chris Wilson | 91c8a32 | 2016-07-05 10:40:23 +0100 | [diff] [blame] | 655 | intel_fbdev_set_suspend(&container_of(work, |
| 656 | struct drm_i915_private, |
| 657 | fbdev_suspend_work)->drm, |
Chris Wilson | 82e3b8c | 2014-08-13 13:09:46 +0100 | [diff] [blame] | 658 | FBINFO_STATE_RUNNING, |
| 659 | true); |
| 660 | } |
| 661 | |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 662 | int intel_fbdev_init(struct drm_device *dev) |
| 663 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 664 | struct drm_i915_private *dev_priv = to_i915(dev); |
Tvrtko Ursulin | b7f05d4 | 2016-11-09 11:30:45 +0000 | [diff] [blame] | 665 | struct intel_fbdev *ifbdev; |
Chris Wilson | 5a79395 | 2010-06-06 10:50:03 +0100 | [diff] [blame] | 666 | int ret; |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame] | 667 | |
Tvrtko Ursulin | b7f05d4 | 2016-11-09 11:30:45 +0000 | [diff] [blame] | 668 | if (WARN_ON(INTEL_INFO(dev_priv)->num_pipes == 0)) |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 669 | return -ENODEV; |
| 670 | |
| 671 | ifbdev = kzalloc(sizeof(struct intel_fbdev), GFP_KERNEL); |
| 672 | if (ifbdev == NULL) |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame] | 673 | return -ENOMEM; |
| 674 | |
Thierry Reding | 10a2310 | 2014-06-27 17:19:24 +0200 | [diff] [blame] | 675 | drm_fb_helper_prepare(dev, &ifbdev->helper, &intel_fb_helper_funcs); |
| 676 | |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 677 | if (!intel_fbdev_init_bios(dev, ifbdev)) |
| 678 | ifbdev->preferred_bpp = 32; |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame] | 679 | |
Gabriel Krisman Bertazi | e4563f6 | 2017-02-02 14:26:40 -0200 | [diff] [blame] | 680 | ret = drm_fb_helper_init(dev, &ifbdev->helper, 4); |
Chris Wilson | 5a79395 | 2010-06-06 10:50:03 +0100 | [diff] [blame] | 681 | if (ret) { |
| 682 | kfree(ifbdev); |
| 683 | return ret; |
| 684 | } |
Dave Airlie | 4abe352 | 2010-03-30 05:34:18 +0000 | [diff] [blame] | 685 | |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 686 | dev_priv->fbdev = ifbdev; |
Chris Wilson | 82e3b8c | 2014-08-13 13:09:46 +0100 | [diff] [blame] | 687 | INIT_WORK(&dev_priv->fbdev_suspend_work, intel_fbdev_suspend_worker); |
| 688 | |
Dave Airlie | 0b4c0f3 | 2010-03-30 05:34:15 +0000 | [diff] [blame] | 689 | drm_fb_helper_single_add_all_connectors(&ifbdev->helper); |
Daniel Vetter | 20afbda | 2012-12-11 14:05:07 +0100 | [diff] [blame] | 690 | |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 691 | return 0; |
| 692 | } |
| 693 | |
Ville Syrjälä | e00bf69 | 2015-11-06 15:08:33 +0200 | [diff] [blame] | 694 | static void intel_fbdev_initial_config(void *data, async_cookie_t cookie) |
Daniel Vetter | 20afbda | 2012-12-11 14:05:07 +0100 | [diff] [blame] | 695 | { |
Chris Wilson | 43cee31 | 2016-06-21 09:16:54 +0100 | [diff] [blame] | 696 | struct intel_fbdev *ifbdev = data; |
Daniel Vetter | 20afbda | 2012-12-11 14:05:07 +0100 | [diff] [blame] | 697 | |
| 698 | /* Due to peculiar init order wrt to hpd handling this is separate. */ |
Lukas Wunner | 366e39b | 2015-11-18 16:29:51 +0100 | [diff] [blame] | 699 | if (drm_fb_helper_initial_config(&ifbdev->helper, |
Daniel Vetter | 4f256d8 | 2017-07-15 00:46:55 +0200 | [diff] [blame] | 700 | ifbdev->preferred_bpp)) { |
| 701 | intel_fbdev_unregister(to_i915(ifbdev->helper.dev)); |
| 702 | intel_fbdev_fini(to_i915(ifbdev->helper.dev)); |
| 703 | } |
Daniel Vetter | 20afbda | 2012-12-11 14:05:07 +0100 | [diff] [blame] | 704 | } |
| 705 | |
Ville Syrjälä | e00bf69 | 2015-11-06 15:08:33 +0200 | [diff] [blame] | 706 | void intel_fbdev_initial_config_async(struct drm_device *dev) |
| 707 | { |
Chris Wilson | 43cee31 | 2016-06-21 09:16:54 +0100 | [diff] [blame] | 708 | struct intel_fbdev *ifbdev = to_i915(dev)->fbdev; |
| 709 | |
Clint Taylor | 5b8cd07 | 2017-01-18 13:38:43 -0800 | [diff] [blame] | 710 | if (!ifbdev) |
| 711 | return; |
| 712 | |
Chris Wilson | 43cee31 | 2016-06-21 09:16:54 +0100 | [diff] [blame] | 713 | ifbdev->cookie = async_schedule(intel_fbdev_initial_config, ifbdev); |
| 714 | } |
| 715 | |
| 716 | static void intel_fbdev_sync(struct intel_fbdev *ifbdev) |
| 717 | { |
| 718 | if (!ifbdev->cookie) |
| 719 | return; |
| 720 | |
| 721 | /* Only serialises with all preceding async calls, hence +1 */ |
| 722 | async_synchronize_cookie(ifbdev->cookie + 1); |
| 723 | ifbdev->cookie = 0; |
Ville Syrjälä | e00bf69 | 2015-11-06 15:08:33 +0200 | [diff] [blame] | 724 | } |
| 725 | |
Daniel Vetter | 4f256d8 | 2017-07-15 00:46:55 +0200 | [diff] [blame] | 726 | void intel_fbdev_unregister(struct drm_i915_private *dev_priv) |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 727 | { |
Chris Wilson | 43cee31 | 2016-06-21 09:16:54 +0100 | [diff] [blame] | 728 | struct intel_fbdev *ifbdev = dev_priv->fbdev; |
| 729 | |
| 730 | if (!ifbdev) |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame] | 731 | return; |
| 732 | |
Chris Wilson | 0b8c0e9 | 2016-07-13 18:34:44 +0100 | [diff] [blame] | 733 | cancel_work_sync(&dev_priv->fbdev_suspend_work); |
Lukas Wunner | 366e39b | 2015-11-18 16:29:51 +0100 | [diff] [blame] | 734 | if (!current_is_async()) |
Chris Wilson | 43cee31 | 2016-06-21 09:16:54 +0100 | [diff] [blame] | 735 | intel_fbdev_sync(ifbdev); |
| 736 | |
Daniel Vetter | 4f256d8 | 2017-07-15 00:46:55 +0200 | [diff] [blame] | 737 | drm_fb_helper_unregister_fbi(&ifbdev->helper); |
| 738 | } |
| 739 | |
| 740 | void intel_fbdev_fini(struct drm_i915_private *dev_priv) |
| 741 | { |
| 742 | struct intel_fbdev *ifbdev = fetch_and_zero(&dev_priv->fbdev); |
| 743 | |
| 744 | if (!ifbdev) |
| 745 | return; |
| 746 | |
Chris Wilson | 43cee31 | 2016-06-21 09:16:54 +0100 | [diff] [blame] | 747 | intel_fbdev_destroy(ifbdev); |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 748 | } |
Dave Airlie | 3fa016a | 2012-03-28 10:48:49 +0100 | [diff] [blame] | 749 | |
Chris Wilson | 82e3b8c | 2014-08-13 13:09:46 +0100 | [diff] [blame] | 750 | void intel_fbdev_set_suspend(struct drm_device *dev, int state, bool synchronous) |
Dave Airlie | 3fa016a | 2012-03-28 10:48:49 +0100 | [diff] [blame] | 751 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 752 | struct drm_i915_private *dev_priv = to_i915(dev); |
Jani Nikula | 1ffc528 | 2013-05-07 18:54:05 +0300 | [diff] [blame] | 753 | struct intel_fbdev *ifbdev = dev_priv->fbdev; |
| 754 | struct fb_info *info; |
| 755 | |
Chris Wilson | 15727ed | 2017-06-22 17:02:11 +0100 | [diff] [blame] | 756 | if (!ifbdev || !ifbdev->vma) |
Dave Airlie | 3fa016a | 2012-03-28 10:48:49 +0100 | [diff] [blame] | 757 | return; |
| 758 | |
Jani Nikula | 1ffc528 | 2013-05-07 18:54:05 +0300 | [diff] [blame] | 759 | info = ifbdev->helper.fbdev; |
| 760 | |
Chris Wilson | 82e3b8c | 2014-08-13 13:09:46 +0100 | [diff] [blame] | 761 | if (synchronous) { |
| 762 | /* Flush any pending work to turn the console on, and then |
| 763 | * wait to turn it off. It must be synchronous as we are |
| 764 | * about to suspend or unload the driver. |
| 765 | * |
| 766 | * Note that from within the work-handler, we cannot flush |
| 767 | * ourselves, so only flush outstanding work upon suspend! |
| 768 | */ |
| 769 | if (state != FBINFO_STATE_RUNNING) |
| 770 | flush_work(&dev_priv->fbdev_suspend_work); |
| 771 | console_lock(); |
| 772 | } else { |
| 773 | /* |
| 774 | * The console lock can be pretty contented on resume due |
| 775 | * to all the printk activity. Try to keep it out of the hot |
| 776 | * path of resume if possible. |
| 777 | */ |
| 778 | WARN_ON(state != FBINFO_STATE_RUNNING); |
| 779 | if (!console_trylock()) { |
| 780 | /* Don't block our own workqueue as this can |
| 781 | * be run in parallel with other i915.ko tasks. |
| 782 | */ |
| 783 | schedule_work(&dev_priv->fbdev_suspend_work); |
| 784 | return; |
| 785 | } |
| 786 | } |
| 787 | |
Jani Nikula | 1ffc528 | 2013-05-07 18:54:05 +0300 | [diff] [blame] | 788 | /* On resume from hibernation: If the object is shmemfs backed, it has |
| 789 | * been restored from swap. If the object is stolen however, it will be |
| 790 | * full of whatever garbage was left in there. |
| 791 | */ |
Jesse Barnes | 8bcd455 | 2014-02-07 12:10:38 -0800 | [diff] [blame] | 792 | if (state == FBINFO_STATE_RUNNING && ifbdev->fb->obj->stolen) |
Jani Nikula | 1ffc528 | 2013-05-07 18:54:05 +0300 | [diff] [blame] | 793 | memset_io(info->screen_base, 0, info->screen_size); |
| 794 | |
Archit Taneja | 21cff14 | 2015-07-31 16:21:56 +0530 | [diff] [blame] | 795 | drm_fb_helper_set_suspend(&ifbdev->helper, state); |
Chris Wilson | 82e3b8c | 2014-08-13 13:09:46 +0100 | [diff] [blame] | 796 | console_unlock(); |
Dave Airlie | 3fa016a | 2012-03-28 10:48:49 +0100 | [diff] [blame] | 797 | } |
| 798 | |
Daniel Vetter | 0632fef | 2013-10-08 17:44:49 +0200 | [diff] [blame] | 799 | void intel_fbdev_output_poll_changed(struct drm_device *dev) |
Dave Airlie | eb1f8e4 | 2010-05-07 06:42:51 +0000 | [diff] [blame] | 800 | { |
Chris Wilson | c45eb4f | 2016-07-13 18:34:45 +0100 | [diff] [blame] | 801 | struct intel_fbdev *ifbdev = to_i915(dev)->fbdev; |
| 802 | |
Daniel Vetter | 88be58b | 2017-07-06 15:00:19 +0200 | [diff] [blame] | 803 | if (ifbdev) |
Chris Wilson | c45eb4f | 2016-07-13 18:34:45 +0100 | [diff] [blame] | 804 | drm_fb_helper_hotplug_event(&ifbdev->helper); |
Dave Airlie | eb1f8e4 | 2010-05-07 06:42:51 +0000 | [diff] [blame] | 805 | } |
Dave Airlie | e8e7a2b | 2011-04-21 22:18:32 +0100 | [diff] [blame] | 806 | |
Daniel Vetter | 0632fef | 2013-10-08 17:44:49 +0200 | [diff] [blame] | 807 | void intel_fbdev_restore_mode(struct drm_device *dev) |
Dave Airlie | e8e7a2b | 2011-04-21 22:18:32 +0100 | [diff] [blame] | 808 | { |
Chris Wilson | c45eb4f | 2016-07-13 18:34:45 +0100 | [diff] [blame] | 809 | struct intel_fbdev *ifbdev = to_i915(dev)->fbdev; |
Dave Airlie | e8e7a2b | 2011-04-21 22:18:32 +0100 | [diff] [blame] | 810 | |
Rodrigo Vivi | d04df73 | 2015-07-08 16:25:21 -0700 | [diff] [blame] | 811 | if (!ifbdev) |
Ben Widawsky | e3c7475 | 2013-04-05 13:12:39 -0700 | [diff] [blame] | 812 | return; |
| 813 | |
Chris Wilson | e77018f | 2016-06-21 09:16:55 +0100 | [diff] [blame] | 814 | intel_fbdev_sync(ifbdev); |
Chris Wilson | 15727ed | 2017-06-22 17:02:11 +0100 | [diff] [blame] | 815 | if (!ifbdev->vma) |
Chris Wilson | c45eb4f | 2016-07-13 18:34:45 +0100 | [diff] [blame] | 816 | return; |
Chris Wilson | e77018f | 2016-06-21 09:16:55 +0100 | [diff] [blame] | 817 | |
Chris Wilson | fabef82 | 2017-02-15 10:59:19 +0000 | [diff] [blame] | 818 | if (drm_fb_helper_restore_fbdev_mode_unlocked(&ifbdev->helper) == 0) |
| 819 | intel_fbdev_invalidate(ifbdev); |
Dave Airlie | e8e7a2b | 2011-04-21 22:18:32 +0100 | [diff] [blame] | 820 | } |