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