Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [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 | |
| 27 | #include <linux/module.h> |
| 28 | #include <linux/kernel.h> |
| 29 | #include <linux/errno.h> |
| 30 | #include <linux/string.h> |
| 31 | #include <linux/mm.h> |
| 32 | #include <linux/tty.h> |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 33 | #include <linux/sysrq.h> |
| 34 | #include <linux/delay.h> |
| 35 | #include <linux/fb.h> |
| 36 | #include <linux/init.h> |
| 37 | #include <linux/screen_info.h> |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 38 | #include <linux/vga_switcheroo.h> |
Ben Skeggs | cf41d53 | 2011-11-09 14:31:16 +1000 | [diff] [blame] | 39 | #include <linux/console.h> |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 40 | |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 41 | #include <drm/drmP.h> |
| 42 | #include <drm/drm_crtc.h> |
| 43 | #include <drm/drm_crtc_helper.h> |
| 44 | #include <drm/drm_fb_helper.h> |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 45 | |
| 46 | #include "nouveau_drm.h" |
| 47 | #include "nouveau_gem.h" |
| 48 | #include "nouveau_bo.h" |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 49 | #include "nouveau_fbcon.h" |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 50 | #include "nouveau_chan.h" |
| 51 | |
| 52 | #include "nouveau_crtc.h" |
| 53 | |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 54 | MODULE_PARM_DESC(nofbaccel, "Disable fbcon acceleration"); |
Pierre Moreau | 703fa26 | 2014-08-18 22:43:24 +0200 | [diff] [blame] | 55 | int nouveau_nofbaccel = 0; |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 56 | module_param_named(nofbaccel, nouveau_nofbaccel, int, 0400); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 57 | |
Ben Skeggs | ceed5f3 | 2010-10-05 16:41:29 +1000 | [diff] [blame] | 58 | static void |
| 59 | nouveau_fbcon_fillrect(struct fb_info *info, const struct fb_fillrect *rect) |
| 60 | { |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 61 | struct nouveau_fbdev *fbcon = info->par; |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 62 | struct nouveau_drm *drm = nouveau_drm(fbcon->dev); |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 63 | struct nvif_device *device = &drm->device; |
Ben Skeggs | ceed5f3 | 2010-10-05 16:41:29 +1000 | [diff] [blame] | 64 | int ret; |
| 65 | |
| 66 | if (info->state != FBINFO_STATE_RUNNING) |
| 67 | return; |
| 68 | |
| 69 | ret = -ENODEV; |
Ben Skeggs | 9acc810 | 2010-10-14 14:55:23 +1000 | [diff] [blame] | 70 | if (!in_interrupt() && !(info->flags & FBINFO_HWACCEL_DISABLED) && |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 71 | mutex_trylock(&drm->client.mutex)) { |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 72 | if (device->info.family < NV_DEVICE_INFO_V0_TESLA) |
Ben Skeggs | ceed5f3 | 2010-10-05 16:41:29 +1000 | [diff] [blame] | 73 | ret = nv04_fbcon_fillrect(info, rect); |
| 74 | else |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 75 | if (device->info.family < NV_DEVICE_INFO_V0_FERMI) |
Ben Skeggs | ceed5f3 | 2010-10-05 16:41:29 +1000 | [diff] [blame] | 76 | ret = nv50_fbcon_fillrect(info, rect); |
Ben Skeggs | ddbaf79 | 2010-11-24 10:52:43 +1000 | [diff] [blame] | 77 | else |
| 78 | ret = nvc0_fbcon_fillrect(info, rect); |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 79 | mutex_unlock(&drm->client.mutex); |
Ben Skeggs | ceed5f3 | 2010-10-05 16:41:29 +1000 | [diff] [blame] | 80 | } |
| 81 | |
| 82 | if (ret == 0) |
| 83 | return; |
| 84 | |
| 85 | if (ret != -ENODEV) |
| 86 | nouveau_fbcon_gpu_lockup(info); |
Archit Taneja | b166aeb | 2015-07-31 16:21:57 +0530 | [diff] [blame] | 87 | drm_fb_helper_cfb_fillrect(info, rect); |
Ben Skeggs | ceed5f3 | 2010-10-05 16:41:29 +1000 | [diff] [blame] | 88 | } |
| 89 | |
| 90 | static void |
| 91 | nouveau_fbcon_copyarea(struct fb_info *info, const struct fb_copyarea *image) |
| 92 | { |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 93 | struct nouveau_fbdev *fbcon = info->par; |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 94 | struct nouveau_drm *drm = nouveau_drm(fbcon->dev); |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 95 | struct nvif_device *device = &drm->device; |
Ben Skeggs | ceed5f3 | 2010-10-05 16:41:29 +1000 | [diff] [blame] | 96 | int ret; |
| 97 | |
| 98 | if (info->state != FBINFO_STATE_RUNNING) |
| 99 | return; |
| 100 | |
| 101 | ret = -ENODEV; |
Ben Skeggs | 9acc810 | 2010-10-14 14:55:23 +1000 | [diff] [blame] | 102 | if (!in_interrupt() && !(info->flags & FBINFO_HWACCEL_DISABLED) && |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 103 | mutex_trylock(&drm->client.mutex)) { |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 104 | if (device->info.family < NV_DEVICE_INFO_V0_TESLA) |
Ben Skeggs | ceed5f3 | 2010-10-05 16:41:29 +1000 | [diff] [blame] | 105 | ret = nv04_fbcon_copyarea(info, image); |
| 106 | else |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 107 | if (device->info.family < NV_DEVICE_INFO_V0_FERMI) |
Ben Skeggs | ceed5f3 | 2010-10-05 16:41:29 +1000 | [diff] [blame] | 108 | ret = nv50_fbcon_copyarea(info, image); |
Ben Skeggs | ddbaf79 | 2010-11-24 10:52:43 +1000 | [diff] [blame] | 109 | else |
| 110 | ret = nvc0_fbcon_copyarea(info, image); |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 111 | mutex_unlock(&drm->client.mutex); |
Ben Skeggs | ceed5f3 | 2010-10-05 16:41:29 +1000 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | if (ret == 0) |
| 115 | return; |
| 116 | |
| 117 | if (ret != -ENODEV) |
| 118 | nouveau_fbcon_gpu_lockup(info); |
Archit Taneja | b166aeb | 2015-07-31 16:21:57 +0530 | [diff] [blame] | 119 | drm_fb_helper_cfb_copyarea(info, image); |
Ben Skeggs | ceed5f3 | 2010-10-05 16:41:29 +1000 | [diff] [blame] | 120 | } |
| 121 | |
| 122 | static void |
| 123 | nouveau_fbcon_imageblit(struct fb_info *info, const struct fb_image *image) |
| 124 | { |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 125 | struct nouveau_fbdev *fbcon = info->par; |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 126 | struct nouveau_drm *drm = nouveau_drm(fbcon->dev); |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 127 | struct nvif_device *device = &drm->device; |
Ben Skeggs | ceed5f3 | 2010-10-05 16:41:29 +1000 | [diff] [blame] | 128 | int ret; |
| 129 | |
| 130 | if (info->state != FBINFO_STATE_RUNNING) |
| 131 | return; |
| 132 | |
| 133 | ret = -ENODEV; |
Ben Skeggs | 9acc810 | 2010-10-14 14:55:23 +1000 | [diff] [blame] | 134 | if (!in_interrupt() && !(info->flags & FBINFO_HWACCEL_DISABLED) && |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 135 | mutex_trylock(&drm->client.mutex)) { |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 136 | if (device->info.family < NV_DEVICE_INFO_V0_TESLA) |
Ben Skeggs | ceed5f3 | 2010-10-05 16:41:29 +1000 | [diff] [blame] | 137 | ret = nv04_fbcon_imageblit(info, image); |
| 138 | else |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 139 | if (device->info.family < NV_DEVICE_INFO_V0_FERMI) |
Ben Skeggs | ceed5f3 | 2010-10-05 16:41:29 +1000 | [diff] [blame] | 140 | ret = nv50_fbcon_imageblit(info, image); |
Ben Skeggs | ddbaf79 | 2010-11-24 10:52:43 +1000 | [diff] [blame] | 141 | else |
| 142 | ret = nvc0_fbcon_imageblit(info, image); |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 143 | mutex_unlock(&drm->client.mutex); |
Ben Skeggs | ceed5f3 | 2010-10-05 16:41:29 +1000 | [diff] [blame] | 144 | } |
| 145 | |
| 146 | if (ret == 0) |
| 147 | return; |
| 148 | |
| 149 | if (ret != -ENODEV) |
| 150 | nouveau_fbcon_gpu_lockup(info); |
Archit Taneja | b166aeb | 2015-07-31 16:21:57 +0530 | [diff] [blame] | 151 | drm_fb_helper_cfb_imageblit(info, image); |
Ben Skeggs | ceed5f3 | 2010-10-05 16:41:29 +1000 | [diff] [blame] | 152 | } |
| 153 | |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 154 | static int |
| 155 | nouveau_fbcon_sync(struct fb_info *info) |
| 156 | { |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 157 | struct nouveau_fbdev *fbcon = info->par; |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 158 | struct nouveau_drm *drm = nouveau_drm(fbcon->dev); |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 159 | struct nouveau_channel *chan = drm->channel; |
Ben Skeggs | 78df3a1 | 2012-05-04 14:01:28 +1000 | [diff] [blame] | 160 | int ret; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 161 | |
Ben Skeggs | 6a6b73f | 2010-10-05 16:53:48 +1000 | [diff] [blame] | 162 | if (!chan || !chan->accel_done || in_interrupt() || |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 163 | info->state != FBINFO_STATE_RUNNING || |
| 164 | info->flags & FBINFO_HWACCEL_DISABLED) |
| 165 | return 0; |
| 166 | |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 167 | if (!mutex_trylock(&drm->client.mutex)) |
Ben Skeggs | 9acc810 | 2010-10-14 14:55:23 +1000 | [diff] [blame] | 168 | return 0; |
| 169 | |
Ben Skeggs | 78df3a1 | 2012-05-04 14:01:28 +1000 | [diff] [blame] | 170 | ret = nouveau_channel_idle(chan); |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 171 | mutex_unlock(&drm->client.mutex); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 172 | if (ret) { |
Marcin Slusarz | 846975a | 2010-01-04 19:25:09 +0100 | [diff] [blame] | 173 | nouveau_fbcon_gpu_lockup(info); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 174 | return 0; |
| 175 | } |
| 176 | |
| 177 | chan->accel_done = false; |
| 178 | return 0; |
| 179 | } |
| 180 | |
Ben Skeggs | f231976 | 2015-10-02 14:03:19 +1000 | [diff] [blame^] | 181 | static int |
| 182 | nouveau_fbcon_open(struct fb_info *info, int user) |
| 183 | { |
| 184 | struct nouveau_fbdev *fbcon = info->par; |
| 185 | struct nouveau_drm *drm = nouveau_drm(fbcon->dev); |
| 186 | int ret = pm_runtime_get_sync(drm->dev->dev); |
| 187 | if (ret < 0 && ret != -EACCES) |
| 188 | return ret; |
| 189 | return 0; |
| 190 | } |
| 191 | |
| 192 | static int |
| 193 | nouveau_fbcon_release(struct fb_info *info, int user) |
| 194 | { |
| 195 | struct nouveau_fbdev *fbcon = info->par; |
| 196 | struct nouveau_drm *drm = nouveau_drm(fbcon->dev); |
| 197 | pm_runtime_put(drm->dev->dev); |
| 198 | return 0; |
| 199 | } |
| 200 | |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 201 | static struct fb_ops nouveau_fbcon_ops = { |
| 202 | .owner = THIS_MODULE, |
Ben Skeggs | f231976 | 2015-10-02 14:03:19 +1000 | [diff] [blame^] | 203 | .fb_open = nouveau_fbcon_open, |
| 204 | .fb_release = nouveau_fbcon_release, |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 205 | .fb_check_var = drm_fb_helper_check_var, |
| 206 | .fb_set_par = drm_fb_helper_set_par, |
Ben Skeggs | ceed5f3 | 2010-10-05 16:41:29 +1000 | [diff] [blame] | 207 | .fb_fillrect = nouveau_fbcon_fillrect, |
| 208 | .fb_copyarea = nouveau_fbcon_copyarea, |
| 209 | .fb_imageblit = nouveau_fbcon_imageblit, |
| 210 | .fb_sync = nouveau_fbcon_sync, |
| 211 | .fb_pan_display = drm_fb_helper_pan_display, |
| 212 | .fb_blank = drm_fb_helper_blank, |
| 213 | .fb_setcmap = drm_fb_helper_setcmap, |
| 214 | .fb_debug_enter = drm_fb_helper_debug_enter, |
| 215 | .fb_debug_leave = drm_fb_helper_debug_leave, |
| 216 | }; |
| 217 | |
| 218 | static struct fb_ops nouveau_fbcon_sw_ops = { |
| 219 | .owner = THIS_MODULE, |
Ben Skeggs | f231976 | 2015-10-02 14:03:19 +1000 | [diff] [blame^] | 220 | .fb_open = nouveau_fbcon_open, |
| 221 | .fb_release = nouveau_fbcon_release, |
Ben Skeggs | ceed5f3 | 2010-10-05 16:41:29 +1000 | [diff] [blame] | 222 | .fb_check_var = drm_fb_helper_check_var, |
| 223 | .fb_set_par = drm_fb_helper_set_par, |
Archit Taneja | b166aeb | 2015-07-31 16:21:57 +0530 | [diff] [blame] | 224 | .fb_fillrect = drm_fb_helper_cfb_fillrect, |
| 225 | .fb_copyarea = drm_fb_helper_cfb_copyarea, |
| 226 | .fb_imageblit = drm_fb_helper_cfb_imageblit, |
Marcin Kościelnicki | 126b544 | 2010-01-27 14:03:18 +0000 | [diff] [blame] | 227 | .fb_pan_display = drm_fb_helper_pan_display, |
| 228 | .fb_blank = drm_fb_helper_blank, |
| 229 | .fb_setcmap = drm_fb_helper_setcmap, |
Chris Ball | be64c2bb | 2010-09-26 06:47:24 -0500 | [diff] [blame] | 230 | .fb_debug_enter = drm_fb_helper_debug_enter, |
| 231 | .fb_debug_leave = drm_fb_helper_debug_leave, |
Marcin Kościelnicki | 126b544 | 2010-01-27 14:03:18 +0000 | [diff] [blame] | 232 | }; |
| 233 | |
Ben Skeggs | 4b5098f | 2014-06-28 20:44:07 +1000 | [diff] [blame] | 234 | void |
| 235 | nouveau_fbcon_accel_save_disable(struct drm_device *dev) |
| 236 | { |
| 237 | struct nouveau_drm *drm = nouveau_drm(dev); |
| 238 | if (drm->fbcon) { |
| 239 | drm->fbcon->saved_flags = drm->fbcon->helper.fbdev->flags; |
| 240 | drm->fbcon->helper.fbdev->flags |= FBINFO_HWACCEL_DISABLED; |
| 241 | } |
| 242 | } |
| 243 | |
| 244 | void |
| 245 | nouveau_fbcon_accel_restore(struct drm_device *dev) |
| 246 | { |
| 247 | struct nouveau_drm *drm = nouveau_drm(dev); |
| 248 | if (drm->fbcon) { |
| 249 | drm->fbcon->helper.fbdev->flags = drm->fbcon->saved_flags; |
| 250 | } |
| 251 | } |
| 252 | |
Fengguang Wu | e715396 | 2014-08-10 12:36:26 +1000 | [diff] [blame] | 253 | static void |
Ben Skeggs | 4b5098f | 2014-06-28 20:44:07 +1000 | [diff] [blame] | 254 | nouveau_fbcon_accel_fini(struct drm_device *dev) |
| 255 | { |
| 256 | struct nouveau_drm *drm = nouveau_drm(dev); |
| 257 | struct nouveau_fbdev *fbcon = drm->fbcon; |
| 258 | if (fbcon && drm->channel) { |
| 259 | console_lock(); |
| 260 | fbcon->helper.fbdev->flags |= FBINFO_HWACCEL_DISABLED; |
| 261 | console_unlock(); |
| 262 | nouveau_channel_idle(drm->channel); |
Ben Skeggs | 0ad7286 | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 263 | nvif_object_fini(&fbcon->twod); |
| 264 | nvif_object_fini(&fbcon->blit); |
| 265 | nvif_object_fini(&fbcon->gdi); |
| 266 | nvif_object_fini(&fbcon->patt); |
| 267 | nvif_object_fini(&fbcon->rop); |
| 268 | nvif_object_fini(&fbcon->clip); |
| 269 | nvif_object_fini(&fbcon->surf2d); |
Ben Skeggs | 4b5098f | 2014-06-28 20:44:07 +1000 | [diff] [blame] | 270 | } |
| 271 | } |
| 272 | |
Fengguang Wu | e715396 | 2014-08-10 12:36:26 +1000 | [diff] [blame] | 273 | static void |
Ben Skeggs | 4b5098f | 2014-06-28 20:44:07 +1000 | [diff] [blame] | 274 | nouveau_fbcon_accel_init(struct drm_device *dev) |
| 275 | { |
| 276 | struct nouveau_drm *drm = nouveau_drm(dev); |
| 277 | struct nouveau_fbdev *fbcon = drm->fbcon; |
| 278 | struct fb_info *info = fbcon->helper.fbdev; |
| 279 | int ret; |
| 280 | |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 281 | if (drm->device.info.family < NV_DEVICE_INFO_V0_TESLA) |
Ben Skeggs | 4b5098f | 2014-06-28 20:44:07 +1000 | [diff] [blame] | 282 | ret = nv04_fbcon_accel_init(info); |
| 283 | else |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 284 | if (drm->device.info.family < NV_DEVICE_INFO_V0_FERMI) |
Ben Skeggs | 4b5098f | 2014-06-28 20:44:07 +1000 | [diff] [blame] | 285 | ret = nv50_fbcon_accel_init(info); |
| 286 | else |
| 287 | ret = nvc0_fbcon_accel_init(info); |
| 288 | |
| 289 | if (ret == 0) |
| 290 | info->fbops = &nouveau_fbcon_ops; |
| 291 | } |
| 292 | |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 293 | static void nouveau_fbcon_gamma_set(struct drm_crtc *crtc, u16 red, u16 green, |
| 294 | u16 blue, int regno) |
| 295 | { |
| 296 | struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); |
| 297 | |
| 298 | nv_crtc->lut.r[regno] = red; |
| 299 | nv_crtc->lut.g[regno] = green; |
| 300 | nv_crtc->lut.b[regno] = blue; |
| 301 | } |
| 302 | |
| 303 | static void nouveau_fbcon_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green, |
| 304 | u16 *blue, int regno) |
| 305 | { |
| 306 | struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); |
| 307 | |
| 308 | *red = nv_crtc->lut.r[regno]; |
| 309 | *green = nv_crtc->lut.g[regno]; |
| 310 | *blue = nv_crtc->lut.b[regno]; |
| 311 | } |
| 312 | |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 313 | static void |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 314 | nouveau_fbcon_zfill(struct drm_device *dev, struct nouveau_fbdev *fbcon) |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 315 | { |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 316 | struct fb_info *info = fbcon->helper.fbdev; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 317 | struct fb_fillrect rect; |
| 318 | |
| 319 | /* Clear the entire fbcon. The drm will program every connector |
| 320 | * with it's preferred mode. If the sizes differ, one display will |
| 321 | * quite likely have garbage around the console. |
| 322 | */ |
| 323 | rect.dx = rect.dy = 0; |
| 324 | rect.width = info->var.xres_virtual; |
| 325 | rect.height = info->var.yres_virtual; |
| 326 | rect.color = 0; |
| 327 | rect.rop = ROP_COPY; |
| 328 | info->fbops->fb_fillrect(info, &rect); |
| 329 | } |
| 330 | |
| 331 | static int |
Daniel Vetter | cd5428a | 2013-01-21 23:42:49 +0100 | [diff] [blame] | 332 | nouveau_fbcon_create(struct drm_fb_helper *helper, |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame] | 333 | struct drm_fb_helper_surface_size *sizes) |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 334 | { |
Fabian Frederick | 918b7ed | 2014-09-14 18:40:17 +0200 | [diff] [blame] | 335 | struct nouveau_fbdev *fbcon = |
| 336 | container_of(helper, struct nouveau_fbdev, helper); |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 337 | struct drm_device *dev = fbcon->dev; |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 338 | struct nouveau_drm *drm = nouveau_drm(dev); |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 339 | struct nvif_device *device = &drm->device; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 340 | struct fb_info *info; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 341 | struct drm_framebuffer *fb; |
| 342 | struct nouveau_framebuffer *nouveau_fb; |
Ben Skeggs | 45143cb | 2011-06-07 13:12:44 +1000 | [diff] [blame] | 343 | struct nouveau_channel *chan; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 344 | struct nouveau_bo *nvbo; |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 345 | struct drm_mode_fb_cmd2 mode_cmd; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 346 | int size, ret; |
| 347 | |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 348 | mode_cmd.width = sizes->surface_width; |
| 349 | mode_cmd.height = sizes->surface_height; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 350 | |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 351 | mode_cmd.pitches[0] = mode_cmd.width * (sizes->surface_bpp >> 3); |
| 352 | mode_cmd.pitches[0] = roundup(mode_cmd.pitches[0], 256); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 353 | |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 354 | mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, |
| 355 | sizes->surface_depth); |
| 356 | |
| 357 | size = mode_cmd.pitches[0] * mode_cmd.height; |
Maarten Maathuis | 1c7059e | 2009-12-25 18:51:17 +0100 | [diff] [blame] | 358 | size = roundup(size, PAGE_SIZE); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 359 | |
Ben Skeggs | f6d4e62 | 2011-06-07 12:25:36 +1000 | [diff] [blame] | 360 | ret = nouveau_gem_new(dev, size, 0, NOUVEAU_GEM_DOMAIN_VRAM, |
| 361 | 0, 0x0000, &nvbo); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 362 | if (ret) { |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 363 | NV_ERROR(drm, "failed to allocate framebuffer\n"); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 364 | goto out; |
| 365 | } |
| 366 | |
Ben Skeggs | ad76b3f | 2014-11-10 11:24:27 +1000 | [diff] [blame] | 367 | ret = nouveau_bo_pin(nvbo, TTM_PL_FLAG_VRAM, false); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 368 | if (ret) { |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 369 | NV_ERROR(drm, "failed to pin fb: %d\n", ret); |
Maarten Lankhorst | 1e2bd5f | 2013-06-27 13:38:21 +0200 | [diff] [blame] | 370 | goto out_unref; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 371 | } |
| 372 | |
| 373 | ret = nouveau_bo_map(nvbo); |
| 374 | if (ret) { |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 375 | NV_ERROR(drm, "failed to map fb: %d\n", ret); |
Maarten Lankhorst | 1e2bd5f | 2013-06-27 13:38:21 +0200 | [diff] [blame] | 376 | goto out_unpin; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 377 | } |
| 378 | |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 379 | chan = nouveau_nofbaccel ? NULL : drm->channel; |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 380 | if (chan && device->info.family >= NV_DEVICE_INFO_V0_TESLA) { |
Ben Skeggs | 0ad7286 | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 381 | ret = nouveau_bo_vma_add(nvbo, drm->client.vm, |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 382 | &fbcon->nouveau_fb.vma); |
Ben Skeggs | 45143cb | 2011-06-07 13:12:44 +1000 | [diff] [blame] | 383 | if (ret) { |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 384 | NV_ERROR(drm, "failed to map fb into chan: %d\n", ret); |
Ben Skeggs | 45143cb | 2011-06-07 13:12:44 +1000 | [diff] [blame] | 385 | chan = NULL; |
| 386 | } |
| 387 | } |
| 388 | |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 389 | mutex_lock(&dev->struct_mutex); |
| 390 | |
Archit Taneja | b166aeb | 2015-07-31 16:21:57 +0530 | [diff] [blame] | 391 | info = drm_fb_helper_alloc_fbi(helper); |
| 392 | if (IS_ERR(info)) { |
| 393 | ret = PTR_ERR(info); |
Maarten Lankhorst | 1e2bd5f | 2013-06-27 13:38:21 +0200 | [diff] [blame] | 394 | goto out_unlock; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 395 | } |
Maarten Lankhorst | 4dc6393 | 2015-01-13 09:18:49 +0100 | [diff] [blame] | 396 | info->skip_vt_switch = 1; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 397 | |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 398 | info->par = fbcon; |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 399 | |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 400 | nouveau_framebuffer_init(dev, &fbcon->nouveau_fb, &mode_cmd, nvbo); |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame] | 401 | |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 402 | nouveau_fb = &fbcon->nouveau_fb; |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame] | 403 | fb = &nouveau_fb->base; |
| 404 | |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 405 | /* setup helper */ |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 406 | fbcon->helper.fb = fb; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 407 | |
| 408 | strcpy(info->fix.id, "nouveaufb"); |
Maarten Lankhorst | 1e2bd5f | 2013-06-27 13:38:21 +0200 | [diff] [blame] | 409 | if (!chan) |
Marcin Kościelnicki | a32ed69 | 2010-01-26 14:00:42 +0000 | [diff] [blame] | 410 | info->flags = FBINFO_DEFAULT | FBINFO_HWACCEL_DISABLED; |
| 411 | else |
| 412 | info->flags = FBINFO_DEFAULT | FBINFO_HWACCEL_COPYAREA | |
| 413 | FBINFO_HWACCEL_FILLRECT | |
| 414 | FBINFO_HWACCEL_IMAGEBLIT; |
Jesse Barnes | 8fd4bd2 | 2010-06-23 12:56:12 -0700 | [diff] [blame] | 415 | info->flags |= FBINFO_CAN_FORCE_OUTPUT; |
Ben Skeggs | ceed5f3 | 2010-10-05 16:41:29 +1000 | [diff] [blame] | 416 | info->fbops = &nouveau_fbcon_sw_ops; |
Ben Skeggs | f01a972 | 2011-01-17 11:22:38 +1000 | [diff] [blame] | 417 | info->fix.smem_start = nvbo->bo.mem.bus.base + |
| 418 | nvbo->bo.mem.bus.offset; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 419 | info->fix.smem_len = size; |
| 420 | |
| 421 | info->screen_base = nvbo_kmap_obj_iovirtual(nouveau_fb->nvbo); |
| 422 | info->screen_size = size; |
| 423 | |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 424 | drm_fb_helper_fill_fix(info, fb->pitches[0], fb->depth); |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 425 | drm_fb_helper_fill_var(info, &fbcon->helper, sizes->fb_width, sizes->fb_height); |
Marcin Slusarz | 1471ca9 | 2010-05-16 17:27:03 +0200 | [diff] [blame] | 426 | |
Sascha Hauer | fb2a99e | 2012-02-06 10:58:19 +0100 | [diff] [blame] | 427 | /* Use default scratch pixmap (info->pixmap.flags = FB_PIXMAP_SYSTEM) */ |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 428 | |
Ben Skeggs | 6a6b73f | 2010-10-05 16:53:48 +1000 | [diff] [blame] | 429 | mutex_unlock(&dev->struct_mutex); |
| 430 | |
Ben Skeggs | 4b5098f | 2014-06-28 20:44:07 +1000 | [diff] [blame] | 431 | if (chan) |
| 432 | nouveau_fbcon_accel_init(dev); |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 433 | nouveau_fbcon_zfill(dev, fbcon); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 434 | |
| 435 | /* To allow resizeing without swapping buffers */ |
Alex Deucher | 54c4cd6 | 2015-03-04 00:18:38 -0500 | [diff] [blame] | 436 | NV_INFO(drm, "allocated %dx%d fb: 0x%llx, bo %p\n", |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 437 | nouveau_fb->base.width, nouveau_fb->base.height, |
| 438 | nvbo->bo.offset, nvbo); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 439 | |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 440 | vga_switcheroo_client_fb_set(dev->pdev, info); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 441 | return 0; |
| 442 | |
Maarten Lankhorst | 1e2bd5f | 2013-06-27 13:38:21 +0200 | [diff] [blame] | 443 | out_unlock: |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 444 | mutex_unlock(&dev->struct_mutex); |
Maarten Lankhorst | 1e2bd5f | 2013-06-27 13:38:21 +0200 | [diff] [blame] | 445 | if (chan) |
| 446 | nouveau_bo_vma_del(nvbo, &fbcon->nouveau_fb.vma); |
Maarten Lankhorst | fdfb833 | 2013-07-08 14:50:54 +1000 | [diff] [blame] | 447 | nouveau_bo_unmap(nvbo); |
Maarten Lankhorst | 1e2bd5f | 2013-06-27 13:38:21 +0200 | [diff] [blame] | 448 | out_unpin: |
| 449 | nouveau_bo_unpin(nvbo); |
| 450 | out_unref: |
| 451 | nouveau_bo_ref(NULL, &nvbo); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 452 | out: |
| 453 | return ret; |
| 454 | } |
| 455 | |
Dave Airlie | eb1f8e4 | 2010-05-07 06:42:51 +0000 | [diff] [blame] | 456 | void |
| 457 | nouveau_fbcon_output_poll_changed(struct drm_device *dev) |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 458 | { |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 459 | struct nouveau_drm *drm = nouveau_drm(dev); |
Maarten Lankhorst | 8a25835 | 2013-07-23 15:45:11 +0200 | [diff] [blame] | 460 | if (drm->fbcon) |
| 461 | drm_fb_helper_hotplug_event(&drm->fbcon->helper); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 462 | } |
| 463 | |
Francisco Jerez | 6e86e04 | 2010-07-03 18:36:39 +0200 | [diff] [blame] | 464 | static int |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 465 | nouveau_fbcon_destroy(struct drm_device *dev, struct nouveau_fbdev *fbcon) |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 466 | { |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 467 | struct nouveau_framebuffer *nouveau_fb = &fbcon->nouveau_fb; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 468 | |
Archit Taneja | b166aeb | 2015-07-31 16:21:57 +0530 | [diff] [blame] | 469 | drm_fb_helper_unregister_fbi(&fbcon->helper); |
| 470 | drm_fb_helper_release_fbi(&fbcon->helper); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 471 | |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame] | 472 | if (nouveau_fb->nvbo) { |
| 473 | nouveau_bo_unmap(nouveau_fb->nvbo); |
Ben Skeggs | 45143cb | 2011-06-07 13:12:44 +1000 | [diff] [blame] | 474 | nouveau_bo_vma_del(nouveau_fb->nvbo, &nouveau_fb->vma); |
Maarten Lankhorst | 1e2bd5f | 2013-06-27 13:38:21 +0200 | [diff] [blame] | 475 | nouveau_bo_unpin(nouveau_fb->nvbo); |
David Herrmann | 55fb74a | 2013-10-02 10:15:17 +0200 | [diff] [blame] | 476 | drm_gem_object_unreference_unlocked(&nouveau_fb->nvbo->gem); |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame] | 477 | nouveau_fb->nvbo = NULL; |
| 478 | } |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 479 | drm_fb_helper_fini(&fbcon->helper); |
Daniel Vetter | 3620636 | 2012-12-10 20:42:17 +0100 | [diff] [blame] | 480 | drm_framebuffer_unregister_private(&nouveau_fb->base); |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 481 | drm_framebuffer_cleanup(&nouveau_fb->base); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 482 | return 0; |
| 483 | } |
Marcin Slusarz | 846975a | 2010-01-04 19:25:09 +0100 | [diff] [blame] | 484 | |
| 485 | void nouveau_fbcon_gpu_lockup(struct fb_info *info) |
| 486 | { |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 487 | struct nouveau_fbdev *fbcon = info->par; |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 488 | struct nouveau_drm *drm = nouveau_drm(fbcon->dev); |
Marcin Slusarz | 846975a | 2010-01-04 19:25:09 +0100 | [diff] [blame] | 489 | |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 490 | NV_ERROR(drm, "GPU lockup - switching to software fbcon\n"); |
Marcin Slusarz | 846975a | 2010-01-04 19:25:09 +0100 | [diff] [blame] | 491 | info->flags |= FBINFO_HWACCEL_DISABLED; |
| 492 | } |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 493 | |
Thierry Reding | 3a49387 | 2014-06-27 17:19:23 +0200 | [diff] [blame] | 494 | static const struct drm_fb_helper_funcs nouveau_fbcon_helper_funcs = { |
Dave Airlie | 4abe352 | 2010-03-30 05:34:18 +0000 | [diff] [blame] | 495 | .gamma_set = nouveau_fbcon_gamma_set, |
| 496 | .gamma_get = nouveau_fbcon_gamma_get, |
Daniel Vetter | cd5428a | 2013-01-21 23:42:49 +0100 | [diff] [blame] | 497 | .fb_probe = nouveau_fbcon_create, |
Dave Airlie | 4abe352 | 2010-03-30 05:34:18 +0000 | [diff] [blame] | 498 | }; |
| 499 | |
Ben Skeggs | 7bb6d44 | 2014-10-02 13:31:00 +1000 | [diff] [blame] | 500 | void |
| 501 | nouveau_fbcon_set_suspend(struct drm_device *dev, int state) |
| 502 | { |
| 503 | struct nouveau_drm *drm = nouveau_drm(dev); |
| 504 | if (drm->fbcon) { |
Ben Skeggs | 7bb6d44 | 2014-10-02 13:31:00 +1000 | [diff] [blame] | 505 | console_lock(); |
Maarten Lankhorst | 4dc6393 | 2015-01-13 09:18:49 +0100 | [diff] [blame] | 506 | if (state == FBINFO_STATE_RUNNING) |
| 507 | nouveau_fbcon_accel_restore(dev); |
Archit Taneja | b166aeb | 2015-07-31 16:21:57 +0530 | [diff] [blame] | 508 | drm_fb_helper_set_suspend(&drm->fbcon->helper, state); |
Maarten Lankhorst | 4dc6393 | 2015-01-13 09:18:49 +0100 | [diff] [blame] | 509 | if (state != FBINFO_STATE_RUNNING) |
| 510 | nouveau_fbcon_accel_save_disable(dev); |
Ben Skeggs | 7bb6d44 | 2014-10-02 13:31:00 +1000 | [diff] [blame] | 511 | console_unlock(); |
| 512 | } |
| 513 | } |
| 514 | |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 515 | int |
| 516 | nouveau_fbcon_init(struct drm_device *dev) |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 517 | { |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 518 | struct nouveau_drm *drm = nouveau_drm(dev); |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 519 | struct nouveau_fbdev *fbcon; |
Marcin Slusarz | 1e482f7 | 2011-11-06 20:32:04 +0100 | [diff] [blame] | 520 | int preferred_bpp; |
Chris Wilson | 5a79395 | 2010-06-06 10:50:03 +0100 | [diff] [blame] | 521 | int ret; |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame] | 522 | |
Ben Skeggs | fc16208 | 2013-09-10 13:20:34 +1000 | [diff] [blame] | 523 | if (!dev->mode_config.num_crtc || |
| 524 | (dev->pdev->class >> 8) != PCI_CLASS_DISPLAY_VGA) |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 525 | return 0; |
| 526 | |
| 527 | fbcon = kzalloc(sizeof(struct nouveau_fbdev), GFP_KERNEL); |
| 528 | if (!fbcon) |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame] | 529 | return -ENOMEM; |
| 530 | |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 531 | fbcon->dev = dev; |
| 532 | drm->fbcon = fbcon; |
Thierry Reding | 10a2310 | 2014-06-27 17:19:24 +0200 | [diff] [blame] | 533 | |
| 534 | drm_fb_helper_prepare(dev, &fbcon->helper, &nouveau_fbcon_helper_funcs); |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame] | 535 | |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 536 | ret = drm_fb_helper_init(dev, &fbcon->helper, |
Ben Skeggs | 9bd0c15 | 2012-06-26 12:12:30 +1000 | [diff] [blame] | 537 | dev->mode_config.num_crtc, 4); |
Thierry Reding | 01934c2 | 2014-12-19 11:21:32 +0100 | [diff] [blame] | 538 | if (ret) |
| 539 | goto free; |
Chris Wilson | 5a79395 | 2010-06-06 10:50:03 +0100 | [diff] [blame] | 540 | |
Thierry Reding | 01934c2 | 2014-12-19 11:21:32 +0100 | [diff] [blame] | 541 | ret = drm_fb_helper_single_add_all_connectors(&fbcon->helper); |
| 542 | if (ret) |
| 543 | goto fini; |
Marcin Slusarz | 1e482f7 | 2011-11-06 20:32:04 +0100 | [diff] [blame] | 544 | |
Ben Skeggs | f392ec4 | 2014-08-10 04:10:28 +1000 | [diff] [blame] | 545 | if (drm->device.info.ram_size <= 32 * 1024 * 1024) |
Marcin Slusarz | 1e482f7 | 2011-11-06 20:32:04 +0100 | [diff] [blame] | 546 | preferred_bpp = 8; |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 547 | else |
Ben Skeggs | f392ec4 | 2014-08-10 04:10:28 +1000 | [diff] [blame] | 548 | if (drm->device.info.ram_size <= 64 * 1024 * 1024) |
Marcin Slusarz | 1e482f7 | 2011-11-06 20:32:04 +0100 | [diff] [blame] | 549 | preferred_bpp = 16; |
| 550 | else |
| 551 | preferred_bpp = 32; |
| 552 | |
Daniel Vetter | 76a39db | 2013-01-20 23:12:54 +0100 | [diff] [blame] | 553 | /* disable all the possible outputs/crtcs before entering KMS mode */ |
| 554 | drm_helper_disable_unused_functions(dev); |
| 555 | |
Thierry Reding | 01934c2 | 2014-12-19 11:21:32 +0100 | [diff] [blame] | 556 | ret = drm_fb_helper_initial_config(&fbcon->helper, preferred_bpp); |
| 557 | if (ret) |
| 558 | goto fini; |
| 559 | |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 560 | return 0; |
Thierry Reding | 01934c2 | 2014-12-19 11:21:32 +0100 | [diff] [blame] | 561 | |
| 562 | fini: |
| 563 | drm_fb_helper_fini(&fbcon->helper); |
| 564 | free: |
| 565 | kfree(fbcon); |
| 566 | return ret; |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 567 | } |
| 568 | |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 569 | void |
| 570 | nouveau_fbcon_fini(struct drm_device *dev) |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 571 | { |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 572 | struct nouveau_drm *drm = nouveau_drm(dev); |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame] | 573 | |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 574 | if (!drm->fbcon) |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame] | 575 | return; |
| 576 | |
Ben Skeggs | 4b5098f | 2014-06-28 20:44:07 +1000 | [diff] [blame] | 577 | nouveau_fbcon_accel_fini(dev); |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 578 | nouveau_fbcon_destroy(dev, drm->fbcon); |
| 579 | kfree(drm->fbcon); |
| 580 | drm->fbcon = NULL; |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 581 | } |