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); |
| 192 | drm_framebuffer_unreference(&intel_fb->base); |
| 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); |
| 209 | |
Chris Wilson | 0c82312 | 2015-12-04 16:05:26 +0000 | [diff] [blame] | 210 | /* Pin the GGTT vma for our access via info->screen_base. |
| 211 | * This also validates that any existing fb inherited from the |
| 212 | * BIOS is suitable for own access. |
| 213 | */ |
Robert Foss | c2c446a | 2017-05-19 16:50:17 -0400 | [diff] [blame] | 214 | 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] | 215 | if (IS_ERR(vma)) { |
| 216 | ret = PTR_ERR(vma); |
Chris Wilson | 0c82312 | 2015-12-04 16:05:26 +0000 | [diff] [blame] | 217 | goto out_unlock; |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 218 | } |
Chris Wilson | 0c82312 | 2015-12-04 16:05:26 +0000 | [diff] [blame] | 219 | |
Archit Taneja | 21cff14 | 2015-07-31 16:21:56 +0530 | [diff] [blame] | 220 | info = drm_fb_helper_alloc_fbi(helper); |
| 221 | if (IS_ERR(info)) { |
Lukas Wunner | 366e39b | 2015-11-18 16:29:51 +0100 | [diff] [blame] | 222 | DRM_ERROR("Failed to allocate fb_info\n"); |
Archit Taneja | 21cff14 | 2015-07-31 16:21:56 +0530 | [diff] [blame] | 223 | ret = PTR_ERR(info); |
Chris Wilson | b4476f5 | 2009-02-11 14:26:36 +0000 | [diff] [blame] | 224 | goto out_unpin; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 225 | } |
| 226 | |
Ville Syrjälä | 3430824 | 2013-05-31 20:07:05 +0300 | [diff] [blame] | 227 | info->par = helper; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 228 | |
Jesse Barnes | 8bcd455 | 2014-02-07 12:10:38 -0800 | [diff] [blame] | 229 | fb = &ifbdev->fb->base; |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 230 | |
| 231 | ifbdev->helper.fb = fb; |
Dave Airlie | 785b93e | 2009-08-28 15:46:53 +1000 | [diff] [blame] | 232 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 233 | strcpy(info->fix.id, "inteldrmfb"); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 234 | |
Jesse Barnes | 8fd4bd2 | 2010-06-23 12:56:12 -0700 | [diff] [blame] | 235 | info->flags = FBINFO_DEFAULT | FBINFO_CAN_FORCE_OUTPUT; |
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 | |
| 273 | mutex_unlock(&dev->struct_mutex); |
David Weinehall | 52a05c3 | 2016-08-22 13:32:44 +0300 | [diff] [blame] | 274 | vga_switcheroo_client_fb_set(pdev, info); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 275 | return 0; |
| 276 | |
Chris Wilson | b4476f5 | 2009-02-11 14:26:36 +0000 | [diff] [blame] | 277 | out_unpin: |
Chris Wilson | be1e341 | 2017-01-16 15:21:27 +0000 | [diff] [blame] | 278 | intel_unpin_fb_vma(vma); |
Chris Wilson | 0c82312 | 2015-12-04 16:05:26 +0000 | [diff] [blame] | 279 | out_unlock: |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 280 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 281 | return ret; |
| 282 | } |
| 283 | |
Paulo Zanoni | 6743768 | 2013-09-24 13:52:56 -0300 | [diff] [blame] | 284 | /** Sets the color ramps on behalf of RandR */ |
| 285 | static 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 | |
| 295 | static 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 Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 305 | static struct drm_fb_helper_crtc * |
| 306 | intel_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 | */ |
| 344 | static 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 Airlie | b0ee9e7 | 2014-10-20 16:31:53 +1000 | [diff] [blame] | 347 | struct drm_fb_offset *offsets, |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 348 | bool *enabled, int width, int height) |
| 349 | { |
Tvrtko Ursulin | b7f05d4 | 2016-11-09 11:30:45 +0000 | [diff] [blame] | 350 | struct drm_i915_private *dev_priv = to_i915(fb_helper->dev); |
Chris Wilson | 754a765 | 2017-02-24 11:43:06 +0000 | [diff] [blame] | 351 | unsigned long conn_configured, conn_seq, mask; |
Chris Wilson | 86f40bb | 2016-07-02 15:36:02 +0100 | [diff] [blame] | 352 | unsigned int count = min(fb_helper->connector_count, BITS_PER_LONG); |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 353 | int i, j; |
Jesse Barnes | 02f5eeb | 2014-02-12 15:03:40 -0800 | [diff] [blame] | 354 | bool *save_enabled; |
Daniel Vetter | 7c2bb53 | 2014-03-04 21:08:41 +0100 | [diff] [blame] | 355 | bool fallback = true; |
Daniel Vetter | 7e696e4 | 2014-03-04 21:08:42 +0100 | [diff] [blame] | 356 | int num_connectors_enabled = 0; |
| 357 | int num_connectors_detected = 0; |
Jesse Barnes | 02f5eeb | 2014-02-12 15:03:40 -0800 | [diff] [blame] | 358 | |
Chris Wilson | 86f40bb | 2016-07-02 15:36:02 +0100 | [diff] [blame] | 359 | save_enabled = kcalloc(count, sizeof(bool), GFP_KERNEL); |
Jesse Barnes | 02f5eeb | 2014-02-12 15:03:40 -0800 | [diff] [blame] | 360 | if (!save_enabled) |
| 361 | return false; |
| 362 | |
Chris Wilson | 86f40bb | 2016-07-02 15:36:02 +0100 | [diff] [blame] | 363 | memcpy(save_enabled, enabled, count); |
Joonas Lahtinen | 3c779a4 | 2017-02-08 15:12:09 +0200 | [diff] [blame] | 364 | mask = GENMASK(count - 1, 0); |
Chris Wilson | 86f40bb | 2016-07-02 15:36:02 +0100 | [diff] [blame] | 365 | conn_configured = 0; |
Dave Airlie | b0ee9e7 | 2014-10-20 16:31:53 +1000 | [diff] [blame] | 366 | retry: |
Chris Wilson | 754a765 | 2017-02-24 11:43:06 +0000 | [diff] [blame] | 367 | conn_seq = conn_configured; |
Chris Wilson | 86f40bb | 2016-07-02 15:36:02 +0100 | [diff] [blame] | 368 | for (i = 0; i < count; i++) { |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 369 | 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 Landwerlin | 82cf435 | 2016-03-16 10:57:16 +0000 | [diff] [blame] | 373 | struct intel_crtc *intel_crtc; |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 374 | |
| 375 | fb_conn = fb_helper->connector_info[i]; |
| 376 | connector = fb_conn->connector; |
Daniel Vetter | 7e696e4 | 2014-03-04 21:08:42 +0100 | [diff] [blame] | 377 | |
Chris Wilson | 86f40bb | 2016-07-02 15:36:02 +0100 | [diff] [blame] | 378 | if (conn_configured & BIT(i)) |
Dave Airlie | b0ee9e7 | 2014-10-20 16:31:53 +1000 | [diff] [blame] | 379 | continue; |
| 380 | |
Chris Wilson | 754a765 | 2017-02-24 11:43:06 +0000 | [diff] [blame] | 381 | if (conn_seq == 0 && !connector->has_tile) |
Dave Airlie | b0ee9e7 | 2014-10-20 16:31:53 +1000 | [diff] [blame] | 382 | continue; |
| 383 | |
Daniel Vetter | 7e696e4 | 2014-03-04 21:08:42 +0100 | [diff] [blame] | 384 | if (connector->status == connector_status_connected) |
| 385 | num_connectors_detected++; |
| 386 | |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 387 | if (!enabled[i]) { |
Chris Wilson | c0c9762 | 2014-05-13 13:45:09 +0100 | [diff] [blame] | 388 | DRM_DEBUG_KMS("connector %s not enabled, skipping\n", |
Jani Nikula | c23cc41 | 2014-06-03 14:56:17 +0300 | [diff] [blame] | 389 | connector->name); |
Chris Wilson | 86f40bb | 2016-07-02 15:36:02 +0100 | [diff] [blame] | 390 | conn_configured |= BIT(i); |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 391 | continue; |
| 392 | } |
| 393 | |
Chris Wilson | d84a0f3 | 2014-08-18 10:35:29 -0700 | [diff] [blame] | 394 | 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 Lankhorst | e28661b | 2016-02-17 09:18:39 +0100 | [diff] [blame] | 401 | encoder = connector->state->best_encoder; |
| 402 | if (!encoder || WARN_ON(!connector->state->crtc)) { |
Chris Wilson | d84a0f3 | 2014-08-18 10:35:29 -0700 | [diff] [blame] | 403 | if (connector->force > DRM_FORCE_OFF) |
| 404 | goto bail; |
| 405 | |
Chris Wilson | c0c9762 | 2014-05-13 13:45:09 +0100 | [diff] [blame] | 406 | DRM_DEBUG_KMS("connector %s has no encoder or crtc, skipping\n", |
Jani Nikula | c23cc41 | 2014-06-03 14:56:17 +0300 | [diff] [blame] | 407 | connector->name); |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 408 | enabled[i] = false; |
Chris Wilson | 86f40bb | 2016-07-02 15:36:02 +0100 | [diff] [blame] | 409 | conn_configured |= BIT(i); |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 410 | continue; |
| 411 | } |
| 412 | |
Daniel Vetter | 7e696e4 | 2014-03-04 21:08:42 +0100 | [diff] [blame] | 413 | num_connectors_enabled++; |
| 414 | |
Lionel Landwerlin | 82cf435 | 2016-03-16 10:57:16 +0000 | [diff] [blame] | 415 | 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 Wilson | 86f40bb | 2016-07-02 15:36:02 +0100 | [diff] [blame] | 422 | new_crtc = intel_fb_helper_crtc(fb_helper, |
| 423 | connector->state->crtc); |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 424 | |
| 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 Wilson | 86f40bb | 2016-07-02 15:36:02 +0100 | [diff] [blame] | 430 | for (j = 0; j < count; j++) { |
Jesse Barnes | 02f5eeb | 2014-02-12 15:03:40 -0800 | [diff] [blame] | 431 | if (crtcs[j] == new_crtc) { |
Daniel Vetter | 7e696e4 | 2014-03-04 21:08:42 +0100 | [diff] [blame] | 432 | DRM_DEBUG_KMS("fallback: cloned configuration\n"); |
Chris Wilson | d84a0f3 | 2014-08-18 10:35:29 -0700 | [diff] [blame] | 433 | goto bail; |
Jesse Barnes | 02f5eeb | 2014-02-12 15:03:40 -0800 | [diff] [blame] | 434 | } |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 435 | } |
| 436 | |
Chris Wilson | c0c9762 | 2014-05-13 13:45:09 +0100 | [diff] [blame] | 437 | DRM_DEBUG_KMS("looking for cmdline mode on connector %s\n", |
Jani Nikula | c23cc41 | 2014-06-03 14:56:17 +0300 | [diff] [blame] | 438 | connector->name); |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 439 | |
| 440 | /* go for command line mode first */ |
Vincent Abriou | a09759e | 2017-01-06 17:44:43 +0100 | [diff] [blame] | 441 | modes[i] = drm_pick_cmdline_mode(fb_conn); |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 442 | |
| 443 | /* try for preferred next */ |
| 444 | if (!modes[i]) { |
Dave Airlie | b0ee9e7 | 2014-10-20 16:31:53 +1000 | [diff] [blame] | 445 | DRM_DEBUG_KMS("looking for preferred mode on connector %s %d\n", |
| 446 | connector->name, connector->has_tile); |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 447 | modes[i] = drm_has_preferred_mode(fb_conn, width, |
| 448 | height); |
| 449 | } |
| 450 | |
Chris Wilson | afba0b5 | 2014-05-13 16:07:37 +0100 | [diff] [blame] | 451 | /* 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 Airlie | 8d4ad9d | 2014-06-05 20:28:59 +1000 | [diff] [blame] | 454 | connector->name); |
Chris Wilson | afba0b5 | 2014-05-13 16:07:37 +0100 | [diff] [blame] | 455 | modes[i] = list_first_entry(&connector->modes, |
| 456 | struct drm_display_mode, |
| 457 | head); |
| 458 | } |
| 459 | |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 460 | /* 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 Lankhorst | 5c1e342 | 2015-07-14 15:58:28 +0200 | [diff] [blame] | 466 | * usually contains. But since our current |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 467 | * code puts a mode derived from the post-pfit timings |
Maarten Lankhorst | 5c1e342 | 2015-07-14 15:58:28 +0200 | [diff] [blame] | 468 | * into crtc->mode this works out correctly. |
Maarten Lankhorst | e28661b | 2016-02-17 09:18:39 +0100 | [diff] [blame] | 469 | * |
| 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 Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 474 | */ |
Chris Wilson | c0c9762 | 2014-05-13 13:45:09 +0100 | [diff] [blame] | 475 | DRM_DEBUG_KMS("looking for current mode on connector %s\n", |
Jani Nikula | c23cc41 | 2014-06-03 14:56:17 +0300 | [diff] [blame] | 476 | connector->name); |
Maarten Lankhorst | e28661b | 2016-02-17 09:18:39 +0100 | [diff] [blame] | 477 | modes[i] = &connector->state->crtc->mode; |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 478 | } |
| 479 | crtcs[i] = new_crtc; |
| 480 | |
Ville Syrjälä | 78108b7 | 2016-05-27 20:59:19 +0300 | [diff] [blame] | 481 | 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] | 482 | connector->name, |
Maarten Lankhorst | e28661b | 2016-02-17 09:18:39 +0100 | [diff] [blame] | 483 | connector->state->crtc->base.id, |
Ville Syrjälä | 78108b7 | 2016-05-27 20:59:19 +0300 | [diff] [blame] | 484 | connector->state->crtc->name, |
Chris Wilson | c0c9762 | 2014-05-13 13:45:09 +0100 | [diff] [blame] | 485 | modes[i]->hdisplay, modes[i]->vdisplay, |
| 486 | modes[i]->flags & DRM_MODE_FLAG_INTERLACE ? "i" :""); |
Jesse Barnes | 02f5eeb | 2014-02-12 15:03:40 -0800 | [diff] [blame] | 487 | |
Daniel Vetter | 7c2bb53 | 2014-03-04 21:08:41 +0100 | [diff] [blame] | 488 | fallback = false; |
Chris Wilson | 86f40bb | 2016-07-02 15:36:02 +0100 | [diff] [blame] | 489 | conn_configured |= BIT(i); |
Dave Airlie | b0ee9e7 | 2014-10-20 16:31:53 +1000 | [diff] [blame] | 490 | } |
| 491 | |
Chris Wilson | 754a765 | 2017-02-24 11:43:06 +0000 | [diff] [blame] | 492 | if ((conn_configured & mask) != mask && conn_configured != conn_seq) |
Dave Airlie | b0ee9e7 | 2014-10-20 16:31:53 +1000 | [diff] [blame] | 493 | goto retry; |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 494 | |
Daniel Vetter | 7e696e4 | 2014-03-04 21:08:42 +0100 | [diff] [blame] | 495 | /* |
| 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 Ursulin | b7f05d4 | 2016-11-09 11:30:45 +0000 | [diff] [blame] | 501 | num_connectors_enabled < INTEL_INFO(dev_priv)->num_pipes) { |
Daniel Vetter | 7e696e4 | 2014-03-04 21:08:42 +0100 | [diff] [blame] | 502 | 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 Vetter | 7c2bb53 | 2014-03-04 21:08:41 +0100 | [diff] [blame] | 508 | if (fallback) { |
Chris Wilson | d84a0f3 | 2014-08-18 10:35:29 -0700 | [diff] [blame] | 509 | bail: |
Daniel Vetter | 7e696e4 | 2014-03-04 21:08:42 +0100 | [diff] [blame] | 510 | DRM_DEBUG_KMS("Not using firmware configuration\n"); |
Chris Wilson | 86f40bb | 2016-07-02 15:36:02 +0100 | [diff] [blame] | 511 | memcpy(enabled, save_enabled, count); |
Jesse Barnes | 02f5eeb | 2014-02-12 15:03:40 -0800 | [diff] [blame] | 512 | kfree(save_enabled); |
| 513 | return false; |
| 514 | } |
| 515 | |
| 516 | kfree(save_enabled); |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 517 | return true; |
| 518 | } |
| 519 | |
Thierry Reding | 3a49387 | 2014-06-27 17:19:23 +0200 | [diff] [blame] | 520 | static const struct drm_fb_helper_funcs intel_fb_helper_funcs = { |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 521 | .initial_config = intel_fb_initial_config, |
Dave Airlie | 4abe352 | 2010-03-30 05:34:18 +0000 | [diff] [blame] | 522 | .gamma_set = intel_crtc_fb_gamma_set, |
| 523 | .gamma_get = intel_crtc_fb_gamma_get, |
Daniel Vetter | cd5428a | 2013-01-21 23:42:49 +0100 | [diff] [blame] | 524 | .fb_probe = intelfb_create, |
Dave Airlie | 4abe352 | 2010-03-30 05:34:18 +0000 | [diff] [blame] | 525 | }; |
| 526 | |
Chris Wilson | 43cee31 | 2016-06-21 09:16:54 +0100 | [diff] [blame] | 527 | static void intel_fbdev_destroy(struct intel_fbdev *ifbdev) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 528 | { |
Chris Wilson | 0c82312 | 2015-12-04 16:05:26 +0000 | [diff] [blame] | 529 | /* 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 Wilson | ddfe156 | 2013-08-06 17:43:07 +0100 | [diff] [blame] | 533 | |
Dave Airlie | 4abe352 | 2010-03-30 05:34:18 +0000 | [diff] [blame] | 534 | drm_fb_helper_fini(&ifbdev->helper); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 535 | |
Chris Wilson | 15727ed | 2017-06-22 17:02:11 +0100 | [diff] [blame] | 536 | if (ifbdev->vma) { |
Chris Wilson | 43cee31 | 2016-06-21 09:16:54 +0100 | [diff] [blame] | 537 | mutex_lock(&ifbdev->helper.dev->struct_mutex); |
Chris Wilson | be1e341 | 2017-01-16 15:21:27 +0000 | [diff] [blame] | 538 | intel_unpin_fb_vma(ifbdev->vma); |
Chris Wilson | 43cee31 | 2016-06-21 09:16:54 +0100 | [diff] [blame] | 539 | mutex_unlock(&ifbdev->helper.dev->struct_mutex); |
Lukas Wunner | 54632ab | 2015-11-18 13:43:20 +0100 | [diff] [blame] | 540 | } |
Chris Wilson | 43cee31 | 2016-06-21 09:16:54 +0100 | [diff] [blame] | 541 | |
Chris Wilson | 15727ed | 2017-06-22 17:02:11 +0100 | [diff] [blame] | 542 | if (ifbdev->fb) |
| 543 | drm_framebuffer_remove(&ifbdev->fb->base); |
| 544 | |
Chris Wilson | 43cee31 | 2016-06-21 09:16:54 +0100 | [diff] [blame] | 545 | kfree(ifbdev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 546 | } |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 547 | |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 548 | /* |
| 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 | */ |
| 557 | static 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 Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 563 | unsigned int max_size = 0; |
| 564 | |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 565 | /* Find the largest fb */ |
Damien Lespiau | 70e1e0e | 2014-05-13 23:32:24 +0100 | [diff] [blame] | 566 | for_each_crtc(dev, crtc) { |
Maarten Lankhorst | 8e9ba31 | 2015-07-13 16:30:16 +0200 | [diff] [blame] | 567 | struct drm_i915_gem_object *obj = |
| 568 | intel_fb_obj(crtc->primary->state->fb); |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 569 | intel_crtc = to_intel_crtc(crtc); |
| 570 | |
Maarten Lankhorst | d551599 | 2015-08-27 15:44:03 +0200 | [diff] [blame] | 571 | if (!crtc->state->active || !obj) { |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 572 | DRM_DEBUG_KMS("pipe %c not active or no fb, skipping\n", |
| 573 | pipe_name(intel_crtc->pipe)); |
| 574 | continue; |
| 575 | } |
| 576 | |
Maarten Lankhorst | 8e9ba31 | 2015-07-13 16:30:16 +0200 | [diff] [blame] | 577 | if (obj->base.size > max_size) { |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 578 | DRM_DEBUG_KMS("found possible fb from plane %c\n", |
| 579 | pipe_name(intel_crtc->pipe)); |
Maarten Lankhorst | 8e9ba31 | 2015-07-13 16:30:16 +0200 | [diff] [blame] | 580 | fb = to_intel_framebuffer(crtc->primary->state->fb); |
| 581 | max_size = obj->base.size; |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 582 | } |
| 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 Lespiau | 70e1e0e | 2014-05-13 23:32:24 +0100 | [diff] [blame] | 591 | for_each_crtc(dev, crtc) { |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 592 | unsigned int cur_size; |
| 593 | |
| 594 | intel_crtc = to_intel_crtc(crtc); |
| 595 | |
Maarten Lankhorst | d551599 | 2015-08-27 15:44:03 +0200 | [diff] [blame] | 596 | if (!crtc->state->active) { |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 597 | 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 Wilson | bc104d1 | 2014-03-20 15:11:21 +0000 | [diff] [blame] | 607 | * pipe. Note we need to use the selected fb's pitch and bpp |
| 608 | * rather than the current pipe's, since they differ. |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 609 | */ |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 610 | cur_size = intel_crtc->config->base.adjusted_mode.crtc_hdisplay; |
Ville Syrjälä | 272725c | 2016-12-14 23:32:20 +0200 | [diff] [blame] | 611 | cur_size = cur_size * fb->base.format->cpp[0]; |
Chris Wilson | bc104d1 | 2014-03-20 15:11:21 +0000 | [diff] [blame] | 612 | 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 Wilson | bc104d1 | 2014-03-20 15:11:21 +0000 | [diff] [blame] | 616 | fb = NULL; |
| 617 | break; |
| 618 | } |
| 619 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 620 | cur_size = intel_crtc->config->base.adjusted_mode.crtc_vdisplay; |
Ville Syrjälä | d88c4af | 2017-03-07 21:42:06 +0200 | [diff] [blame] | 621 | cur_size = intel_fb_align_height(&fb->base, 0, cur_size); |
Chris Wilson | bc104d1 | 2014-03-20 15:11:21 +0000 | [diff] [blame] | 622 | 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 Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 625 | intel_crtc->config->base.adjusted_mode.crtc_hdisplay, |
| 626 | intel_crtc->config->base.adjusted_mode.crtc_vdisplay, |
Ville Syrjälä | 272725c | 2016-12-14 23:32:20 +0200 | [diff] [blame] | 627 | fb->base.format->cpp[0] * 8, |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 628 | cur_size); |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 629 | |
| 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 Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 634 | 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 Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 643 | if (!fb) { |
| 644 | DRM_DEBUG_KMS("BIOS fb not suitable for all pipes, not using\n"); |
| 645 | goto out; |
| 646 | } |
| 647 | |
Ville Syrjälä | 272725c | 2016-12-14 23:32:20 +0200 | [diff] [blame] | 648 | ifbdev->preferred_bpp = fb->base.format->cpp[0] * 8; |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 649 | ifbdev->fb = fb; |
| 650 | |
Jesse Barnes | 484b41d | 2014-03-07 08:57:55 -0800 | [diff] [blame] | 651 | drm_framebuffer_reference(&ifbdev->fb->base); |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 652 | |
| 653 | /* Final pass to check if any active pipes don't have fbs */ |
Damien Lespiau | 70e1e0e | 2014-05-13 23:32:24 +0100 | [diff] [blame] | 654 | for_each_crtc(dev, crtc) { |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 655 | intel_crtc = to_intel_crtc(crtc); |
| 656 | |
Maarten Lankhorst | d551599 | 2015-08-27 15:44:03 +0200 | [diff] [blame] | 657 | if (!crtc->state->active) |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 658 | continue; |
| 659 | |
Dave Airlie | 66e514c | 2014-04-03 07:51:54 +1000 | [diff] [blame] | 660 | WARN(!crtc->primary->fb, |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 661 | "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 Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 669 | out: |
| 670 | |
| 671 | return false; |
| 672 | } |
| 673 | |
Chris Wilson | 82e3b8c | 2014-08-13 13:09:46 +0100 | [diff] [blame] | 674 | static void intel_fbdev_suspend_worker(struct work_struct *work) |
| 675 | { |
Chris Wilson | 91c8a32 | 2016-07-05 10:40:23 +0100 | [diff] [blame] | 676 | intel_fbdev_set_suspend(&container_of(work, |
| 677 | struct drm_i915_private, |
| 678 | fbdev_suspend_work)->drm, |
Chris Wilson | 82e3b8c | 2014-08-13 13:09:46 +0100 | [diff] [blame] | 679 | FBINFO_STATE_RUNNING, |
| 680 | true); |
| 681 | } |
| 682 | |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 683 | int intel_fbdev_init(struct drm_device *dev) |
| 684 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 685 | struct drm_i915_private *dev_priv = to_i915(dev); |
Tvrtko Ursulin | b7f05d4 | 2016-11-09 11:30:45 +0000 | [diff] [blame] | 686 | struct intel_fbdev *ifbdev; |
Chris Wilson | 5a79395 | 2010-06-06 10:50:03 +0100 | [diff] [blame] | 687 | int ret; |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame] | 688 | |
Tvrtko Ursulin | b7f05d4 | 2016-11-09 11:30:45 +0000 | [diff] [blame] | 689 | if (WARN_ON(INTEL_INFO(dev_priv)->num_pipes == 0)) |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 690 | return -ENODEV; |
| 691 | |
| 692 | ifbdev = kzalloc(sizeof(struct intel_fbdev), GFP_KERNEL); |
| 693 | if (ifbdev == NULL) |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame] | 694 | return -ENOMEM; |
| 695 | |
Thierry Reding | 10a2310 | 2014-06-27 17:19:24 +0200 | [diff] [blame] | 696 | drm_fb_helper_prepare(dev, &ifbdev->helper, &intel_fb_helper_funcs); |
| 697 | |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 698 | if (!intel_fbdev_init_bios(dev, ifbdev)) |
| 699 | ifbdev->preferred_bpp = 32; |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame] | 700 | |
Gabriel Krisman Bertazi | e4563f6 | 2017-02-02 14:26:40 -0200 | [diff] [blame] | 701 | ret = drm_fb_helper_init(dev, &ifbdev->helper, 4); |
Chris Wilson | 5a79395 | 2010-06-06 10:50:03 +0100 | [diff] [blame] | 702 | if (ret) { |
| 703 | kfree(ifbdev); |
| 704 | return ret; |
| 705 | } |
Dave Airlie | 4abe352 | 2010-03-30 05:34:18 +0000 | [diff] [blame] | 706 | |
Jesse Barnes | d978ef1 | 2014-03-07 08:57:51 -0800 | [diff] [blame] | 707 | dev_priv->fbdev = ifbdev; |
Chris Wilson | 82e3b8c | 2014-08-13 13:09:46 +0100 | [diff] [blame] | 708 | INIT_WORK(&dev_priv->fbdev_suspend_work, intel_fbdev_suspend_worker); |
| 709 | |
Dave Airlie | 0b4c0f3 | 2010-03-30 05:34:15 +0000 | [diff] [blame] | 710 | drm_fb_helper_single_add_all_connectors(&ifbdev->helper); |
Daniel Vetter | 20afbda | 2012-12-11 14:05:07 +0100 | [diff] [blame] | 711 | |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 712 | return 0; |
| 713 | } |
| 714 | |
Ville Syrjälä | e00bf69 | 2015-11-06 15:08:33 +0200 | [diff] [blame] | 715 | static void intel_fbdev_initial_config(void *data, async_cookie_t cookie) |
Daniel Vetter | 20afbda | 2012-12-11 14:05:07 +0100 | [diff] [blame] | 716 | { |
Chris Wilson | 43cee31 | 2016-06-21 09:16:54 +0100 | [diff] [blame] | 717 | struct intel_fbdev *ifbdev = data; |
Daniel Vetter | 20afbda | 2012-12-11 14:05:07 +0100 | [diff] [blame] | 718 | |
| 719 | /* Due to peculiar init order wrt to hpd handling this is separate. */ |
Lukas Wunner | 366e39b | 2015-11-18 16:29:51 +0100 | [diff] [blame] | 720 | if (drm_fb_helper_initial_config(&ifbdev->helper, |
Daniel Vetter | 4f256d8 | 2017-07-15 00:46:55 +0200 | [diff] [blame^] | 721 | ifbdev->preferred_bpp)) { |
| 722 | intel_fbdev_unregister(to_i915(ifbdev->helper.dev)); |
| 723 | intel_fbdev_fini(to_i915(ifbdev->helper.dev)); |
| 724 | } |
Daniel Vetter | 20afbda | 2012-12-11 14:05:07 +0100 | [diff] [blame] | 725 | } |
| 726 | |
Ville Syrjälä | e00bf69 | 2015-11-06 15:08:33 +0200 | [diff] [blame] | 727 | void intel_fbdev_initial_config_async(struct drm_device *dev) |
| 728 | { |
Chris Wilson | 43cee31 | 2016-06-21 09:16:54 +0100 | [diff] [blame] | 729 | struct intel_fbdev *ifbdev = to_i915(dev)->fbdev; |
| 730 | |
Clint Taylor | 5b8cd07 | 2017-01-18 13:38:43 -0800 | [diff] [blame] | 731 | if (!ifbdev) |
| 732 | return; |
| 733 | |
Chris Wilson | 43cee31 | 2016-06-21 09:16:54 +0100 | [diff] [blame] | 734 | ifbdev->cookie = async_schedule(intel_fbdev_initial_config, ifbdev); |
| 735 | } |
| 736 | |
| 737 | static 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ä | e00bf69 | 2015-11-06 15:08:33 +0200 | [diff] [blame] | 745 | } |
| 746 | |
Daniel Vetter | 4f256d8 | 2017-07-15 00:46:55 +0200 | [diff] [blame^] | 747 | void intel_fbdev_unregister(struct drm_i915_private *dev_priv) |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 748 | { |
Chris Wilson | 43cee31 | 2016-06-21 09:16:54 +0100 | [diff] [blame] | 749 | struct intel_fbdev *ifbdev = dev_priv->fbdev; |
| 750 | |
| 751 | if (!ifbdev) |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame] | 752 | return; |
| 753 | |
Chris Wilson | 0b8c0e9 | 2016-07-13 18:34:44 +0100 | [diff] [blame] | 754 | cancel_work_sync(&dev_priv->fbdev_suspend_work); |
Lukas Wunner | 366e39b | 2015-11-18 16:29:51 +0100 | [diff] [blame] | 755 | if (!current_is_async()) |
Chris Wilson | 43cee31 | 2016-06-21 09:16:54 +0100 | [diff] [blame] | 756 | intel_fbdev_sync(ifbdev); |
| 757 | |
Daniel Vetter | 4f256d8 | 2017-07-15 00:46:55 +0200 | [diff] [blame^] | 758 | drm_fb_helper_unregister_fbi(&ifbdev->helper); |
| 759 | } |
| 760 | |
| 761 | void 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 Wilson | 43cee31 | 2016-06-21 09:16:54 +0100 | [diff] [blame] | 768 | intel_fbdev_destroy(ifbdev); |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 769 | } |
Dave Airlie | 3fa016a | 2012-03-28 10:48:49 +0100 | [diff] [blame] | 770 | |
Chris Wilson | 82e3b8c | 2014-08-13 13:09:46 +0100 | [diff] [blame] | 771 | 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] | 772 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 773 | struct drm_i915_private *dev_priv = to_i915(dev); |
Jani Nikula | 1ffc528 | 2013-05-07 18:54:05 +0300 | [diff] [blame] | 774 | struct intel_fbdev *ifbdev = dev_priv->fbdev; |
| 775 | struct fb_info *info; |
| 776 | |
Chris Wilson | 15727ed | 2017-06-22 17:02:11 +0100 | [diff] [blame] | 777 | if (!ifbdev || !ifbdev->vma) |
Dave Airlie | 3fa016a | 2012-03-28 10:48:49 +0100 | [diff] [blame] | 778 | return; |
| 779 | |
Jani Nikula | 1ffc528 | 2013-05-07 18:54:05 +0300 | [diff] [blame] | 780 | info = ifbdev->helper.fbdev; |
| 781 | |
Chris Wilson | 82e3b8c | 2014-08-13 13:09:46 +0100 | [diff] [blame] | 782 | 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 Nikula | 1ffc528 | 2013-05-07 18:54:05 +0300 | [diff] [blame] | 809 | /* 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 Barnes | 8bcd455 | 2014-02-07 12:10:38 -0800 | [diff] [blame] | 813 | if (state == FBINFO_STATE_RUNNING && ifbdev->fb->obj->stolen) |
Jani Nikula | 1ffc528 | 2013-05-07 18:54:05 +0300 | [diff] [blame] | 814 | memset_io(info->screen_base, 0, info->screen_size); |
| 815 | |
Archit Taneja | 21cff14 | 2015-07-31 16:21:56 +0530 | [diff] [blame] | 816 | drm_fb_helper_set_suspend(&ifbdev->helper, state); |
Chris Wilson | 82e3b8c | 2014-08-13 13:09:46 +0100 | [diff] [blame] | 817 | console_unlock(); |
Dave Airlie | 3fa016a | 2012-03-28 10:48:49 +0100 | [diff] [blame] | 818 | } |
| 819 | |
Daniel Vetter | 0632fef | 2013-10-08 17:44:49 +0200 | [diff] [blame] | 820 | void intel_fbdev_output_poll_changed(struct drm_device *dev) |
Dave Airlie | eb1f8e4 | 2010-05-07 06:42:51 +0000 | [diff] [blame] | 821 | { |
Chris Wilson | c45eb4f | 2016-07-13 18:34:45 +0100 | [diff] [blame] | 822 | struct intel_fbdev *ifbdev = to_i915(dev)->fbdev; |
| 823 | |
Daniel Vetter | 88be58b | 2017-07-06 15:00:19 +0200 | [diff] [blame] | 824 | if (ifbdev) |
Chris Wilson | c45eb4f | 2016-07-13 18:34:45 +0100 | [diff] [blame] | 825 | drm_fb_helper_hotplug_event(&ifbdev->helper); |
Dave Airlie | eb1f8e4 | 2010-05-07 06:42:51 +0000 | [diff] [blame] | 826 | } |
Dave Airlie | e8e7a2b | 2011-04-21 22:18:32 +0100 | [diff] [blame] | 827 | |
Daniel Vetter | 0632fef | 2013-10-08 17:44:49 +0200 | [diff] [blame] | 828 | void intel_fbdev_restore_mode(struct drm_device *dev) |
Dave Airlie | e8e7a2b | 2011-04-21 22:18:32 +0100 | [diff] [blame] | 829 | { |
Chris Wilson | c45eb4f | 2016-07-13 18:34:45 +0100 | [diff] [blame] | 830 | struct intel_fbdev *ifbdev = to_i915(dev)->fbdev; |
Dave Airlie | e8e7a2b | 2011-04-21 22:18:32 +0100 | [diff] [blame] | 831 | |
Rodrigo Vivi | d04df73 | 2015-07-08 16:25:21 -0700 | [diff] [blame] | 832 | if (!ifbdev) |
Ben Widawsky | e3c7475 | 2013-04-05 13:12:39 -0700 | [diff] [blame] | 833 | return; |
| 834 | |
Chris Wilson | e77018f | 2016-06-21 09:16:55 +0100 | [diff] [blame] | 835 | intel_fbdev_sync(ifbdev); |
Chris Wilson | 15727ed | 2017-06-22 17:02:11 +0100 | [diff] [blame] | 836 | if (!ifbdev->vma) |
Chris Wilson | c45eb4f | 2016-07-13 18:34:45 +0100 | [diff] [blame] | 837 | return; |
Chris Wilson | e77018f | 2016-06-21 09:16:55 +0100 | [diff] [blame] | 838 | |
Chris Wilson | fabef82 | 2017-02-15 10:59:19 +0000 | [diff] [blame] | 839 | if (drm_fb_helper_restore_fbdev_mode_unlocked(&ifbdev->helper) == 0) |
| 840 | intel_fbdev_invalidate(ifbdev); |
Dave Airlie | e8e7a2b | 2011-04-21 22:18:32 +0100 | [diff] [blame] | 841 | } |