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> |
| 33 | #include <linux/slab.h> |
| 34 | #include <linux/sysrq.h> |
| 35 | #include <linux/delay.h> |
| 36 | #include <linux/fb.h> |
| 37 | #include <linux/init.h> |
| 38 | #include <linux/screen_info.h> |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 39 | #include <linux/vga_switcheroo.h> |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 40 | |
| 41 | #include "drmP.h" |
| 42 | #include "drm.h" |
| 43 | #include "drm_crtc.h" |
| 44 | #include "drm_crtc_helper.h" |
| 45 | #include "drm_fb_helper.h" |
| 46 | #include "nouveau_drv.h" |
| 47 | #include "nouveau_drm.h" |
| 48 | #include "nouveau_crtc.h" |
| 49 | #include "nouveau_fb.h" |
| 50 | #include "nouveau_fbcon.h" |
| 51 | #include "nouveau_dma.h" |
| 52 | |
| 53 | static int |
| 54 | nouveau_fbcon_sync(struct fb_info *info) |
| 55 | { |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame^] | 56 | struct nouveau_fbdev *nfbdev = info->par; |
| 57 | struct drm_device *dev = nfbdev->dev; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 58 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
| 59 | struct nouveau_channel *chan = dev_priv->channel; |
| 60 | int ret, i; |
| 61 | |
Ben Skeggs | 0735f62 | 2009-12-16 14:28:55 +1000 | [diff] [blame] | 62 | if (!chan || !chan->accel_done || |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 63 | info->state != FBINFO_STATE_RUNNING || |
| 64 | info->flags & FBINFO_HWACCEL_DISABLED) |
| 65 | return 0; |
| 66 | |
| 67 | if (RING_SPACE(chan, 4)) { |
Marcin Slusarz | 846975a | 2010-01-04 19:25:09 +0100 | [diff] [blame] | 68 | nouveau_fbcon_gpu_lockup(info); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 69 | return 0; |
| 70 | } |
| 71 | |
| 72 | BEGIN_RING(chan, 0, 0x0104, 1); |
| 73 | OUT_RING(chan, 0); |
| 74 | BEGIN_RING(chan, 0, 0x0100, 1); |
| 75 | OUT_RING(chan, 0); |
| 76 | nouveau_bo_wr32(chan->notifier_bo, chan->m2mf_ntfy + 3, 0xffffffff); |
| 77 | FIRE_RING(chan); |
| 78 | |
| 79 | ret = -EBUSY; |
| 80 | for (i = 0; i < 100000; i++) { |
| 81 | if (!nouveau_bo_rd32(chan->notifier_bo, chan->m2mf_ntfy + 3)) { |
| 82 | ret = 0; |
| 83 | break; |
| 84 | } |
| 85 | DRM_UDELAY(1); |
| 86 | } |
| 87 | |
| 88 | if (ret) { |
Marcin Slusarz | 846975a | 2010-01-04 19:25:09 +0100 | [diff] [blame] | 89 | nouveau_fbcon_gpu_lockup(info); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 90 | return 0; |
| 91 | } |
| 92 | |
| 93 | chan->accel_done = false; |
| 94 | return 0; |
| 95 | } |
| 96 | |
| 97 | static struct fb_ops nouveau_fbcon_ops = { |
| 98 | .owner = THIS_MODULE, |
| 99 | .fb_check_var = drm_fb_helper_check_var, |
| 100 | .fb_set_par = drm_fb_helper_set_par, |
| 101 | .fb_setcolreg = drm_fb_helper_setcolreg, |
| 102 | .fb_fillrect = cfb_fillrect, |
| 103 | .fb_copyarea = cfb_copyarea, |
| 104 | .fb_imageblit = cfb_imageblit, |
| 105 | .fb_sync = nouveau_fbcon_sync, |
| 106 | .fb_pan_display = drm_fb_helper_pan_display, |
| 107 | .fb_blank = drm_fb_helper_blank, |
| 108 | .fb_setcmap = drm_fb_helper_setcmap, |
| 109 | }; |
| 110 | |
Marcin Kościelnicki | 126b544 | 2010-01-27 14:03:18 +0000 | [diff] [blame] | 111 | static struct fb_ops nv04_fbcon_ops = { |
| 112 | .owner = THIS_MODULE, |
| 113 | .fb_check_var = drm_fb_helper_check_var, |
| 114 | .fb_set_par = drm_fb_helper_set_par, |
| 115 | .fb_setcolreg = drm_fb_helper_setcolreg, |
| 116 | .fb_fillrect = nv04_fbcon_fillrect, |
| 117 | .fb_copyarea = nv04_fbcon_copyarea, |
| 118 | .fb_imageblit = nv04_fbcon_imageblit, |
| 119 | .fb_sync = nouveau_fbcon_sync, |
| 120 | .fb_pan_display = drm_fb_helper_pan_display, |
| 121 | .fb_blank = drm_fb_helper_blank, |
| 122 | .fb_setcmap = drm_fb_helper_setcmap, |
| 123 | }; |
| 124 | |
| 125 | static struct fb_ops nv50_fbcon_ops = { |
| 126 | .owner = THIS_MODULE, |
| 127 | .fb_check_var = drm_fb_helper_check_var, |
| 128 | .fb_set_par = drm_fb_helper_set_par, |
| 129 | .fb_setcolreg = drm_fb_helper_setcolreg, |
| 130 | .fb_fillrect = nv50_fbcon_fillrect, |
| 131 | .fb_copyarea = nv50_fbcon_copyarea, |
| 132 | .fb_imageblit = nv50_fbcon_imageblit, |
| 133 | .fb_sync = nouveau_fbcon_sync, |
| 134 | .fb_pan_display = drm_fb_helper_pan_display, |
| 135 | .fb_blank = drm_fb_helper_blank, |
| 136 | .fb_setcmap = drm_fb_helper_setcmap, |
| 137 | }; |
| 138 | |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 139 | static void nouveau_fbcon_gamma_set(struct drm_crtc *crtc, u16 red, u16 green, |
| 140 | u16 blue, int regno) |
| 141 | { |
| 142 | struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); |
| 143 | |
| 144 | nv_crtc->lut.r[regno] = red; |
| 145 | nv_crtc->lut.g[regno] = green; |
| 146 | nv_crtc->lut.b[regno] = blue; |
| 147 | } |
| 148 | |
| 149 | static void nouveau_fbcon_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green, |
| 150 | u16 *blue, int regno) |
| 151 | { |
| 152 | struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); |
| 153 | |
| 154 | *red = nv_crtc->lut.r[regno]; |
| 155 | *green = nv_crtc->lut.g[regno]; |
| 156 | *blue = nv_crtc->lut.b[regno]; |
| 157 | } |
| 158 | |
| 159 | static struct drm_fb_helper_funcs nouveau_fbcon_helper_funcs = { |
| 160 | .gamma_set = nouveau_fbcon_gamma_set, |
| 161 | .gamma_get = nouveau_fbcon_gamma_get |
| 162 | }; |
| 163 | |
| 164 | #if defined(__i386__) || defined(__x86_64__) |
| 165 | static bool |
| 166 | nouveau_fbcon_has_vesafb_or_efifb(struct drm_device *dev) |
| 167 | { |
| 168 | struct pci_dev *pdev = dev->pdev; |
| 169 | int ramin; |
| 170 | |
| 171 | if (screen_info.orig_video_isVGA != VIDEO_TYPE_VLFB && |
| 172 | screen_info.orig_video_isVGA != VIDEO_TYPE_EFI) |
| 173 | return false; |
| 174 | |
| 175 | if (screen_info.lfb_base < pci_resource_start(pdev, 1)) |
| 176 | goto not_fb; |
| 177 | |
| 178 | if (screen_info.lfb_base + screen_info.lfb_size >= |
| 179 | pci_resource_start(pdev, 1) + pci_resource_len(pdev, 1)) |
| 180 | goto not_fb; |
| 181 | |
| 182 | return true; |
| 183 | not_fb: |
| 184 | ramin = 2; |
| 185 | if (pci_resource_len(pdev, ramin) == 0) { |
| 186 | ramin = 3; |
| 187 | if (pci_resource_len(pdev, ramin) == 0) |
| 188 | return false; |
| 189 | } |
| 190 | |
| 191 | if (screen_info.lfb_base < pci_resource_start(pdev, ramin)) |
| 192 | return false; |
| 193 | |
| 194 | if (screen_info.lfb_base + screen_info.lfb_size >= |
| 195 | pci_resource_start(pdev, ramin) + pci_resource_len(pdev, ramin)) |
| 196 | return false; |
| 197 | |
| 198 | return true; |
| 199 | } |
| 200 | #endif |
| 201 | |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 202 | static void |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame^] | 203 | nouveau_fbcon_zfill(struct drm_device *dev, struct nouveau_fbdev *nfbdev) |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 204 | { |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame^] | 205 | struct fb_info *info = nfbdev->helper.fbdev; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 206 | struct fb_fillrect rect; |
| 207 | |
| 208 | /* Clear the entire fbcon. The drm will program every connector |
| 209 | * with it's preferred mode. If the sizes differ, one display will |
| 210 | * quite likely have garbage around the console. |
| 211 | */ |
| 212 | rect.dx = rect.dy = 0; |
| 213 | rect.width = info->var.xres_virtual; |
| 214 | rect.height = info->var.yres_virtual; |
| 215 | rect.color = 0; |
| 216 | rect.rop = ROP_COPY; |
| 217 | info->fbops->fb_fillrect(info, &rect); |
| 218 | } |
| 219 | |
| 220 | static int |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame^] | 221 | nouveau_fbcon_create(struct nouveau_fbdev *nfbdev, |
| 222 | struct drm_fb_helper_surface_size *sizes) |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 223 | { |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame^] | 224 | struct drm_device *dev = nfbdev->dev; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 225 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
| 226 | struct fb_info *info; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 227 | struct drm_framebuffer *fb; |
| 228 | struct nouveau_framebuffer *nouveau_fb; |
| 229 | struct nouveau_bo *nvbo; |
| 230 | struct drm_mode_fb_cmd mode_cmd; |
| 231 | struct device *device = &dev->pdev->dev; |
| 232 | int size, ret; |
| 233 | |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 234 | mode_cmd.width = sizes->surface_width; |
| 235 | mode_cmd.height = sizes->surface_height; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 236 | |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 237 | mode_cmd.bpp = sizes->surface_bpp; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 238 | mode_cmd.pitch = mode_cmd.width * (mode_cmd.bpp >> 3); |
Maarten Maathuis | 1c7059e | 2009-12-25 18:51:17 +0100 | [diff] [blame] | 239 | mode_cmd.pitch = roundup(mode_cmd.pitch, 256); |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 240 | mode_cmd.depth = sizes->surface_depth; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 241 | |
| 242 | size = mode_cmd.pitch * mode_cmd.height; |
Maarten Maathuis | 1c7059e | 2009-12-25 18:51:17 +0100 | [diff] [blame] | 243 | size = roundup(size, PAGE_SIZE); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 244 | |
| 245 | ret = nouveau_gem_new(dev, dev_priv->channel, size, 0, TTM_PL_FLAG_VRAM, |
| 246 | 0, 0x0000, false, true, &nvbo); |
| 247 | if (ret) { |
| 248 | NV_ERROR(dev, "failed to allocate framebuffer\n"); |
| 249 | goto out; |
| 250 | } |
| 251 | |
| 252 | ret = nouveau_bo_pin(nvbo, TTM_PL_FLAG_VRAM); |
| 253 | if (ret) { |
| 254 | NV_ERROR(dev, "failed to pin fb: %d\n", ret); |
| 255 | nouveau_bo_ref(NULL, &nvbo); |
| 256 | goto out; |
| 257 | } |
| 258 | |
| 259 | ret = nouveau_bo_map(nvbo); |
| 260 | if (ret) { |
| 261 | NV_ERROR(dev, "failed to map fb: %d\n", ret); |
| 262 | nouveau_bo_unpin(nvbo); |
| 263 | nouveau_bo_ref(NULL, &nvbo); |
| 264 | goto out; |
| 265 | } |
| 266 | |
| 267 | mutex_lock(&dev->struct_mutex); |
| 268 | |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame^] | 269 | info = framebuffer_alloc(0, device); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 270 | if (!info) { |
| 271 | ret = -ENOMEM; |
| 272 | goto out_unref; |
| 273 | } |
| 274 | |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame^] | 275 | info->par = nfbdev; |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 276 | |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame^] | 277 | nouveau_framebuffer_init(dev, &nfbdev->nouveau_fb, &mode_cmd, nvbo); |
| 278 | |
| 279 | nouveau_fb = &nfbdev->nouveau_fb; |
| 280 | fb = &nouveau_fb->base; |
| 281 | |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 282 | /* setup helper */ |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame^] | 283 | nfbdev->helper.fb = fb; |
| 284 | nfbdev->helper.fbdev = info; |
| 285 | nfbdev->helper.funcs = &nouveau_fbcon_helper_funcs; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 286 | |
| 287 | strcpy(info->fix.id, "nouveaufb"); |
Marcin Kościelnicki | a32ed69 | 2010-01-26 14:00:42 +0000 | [diff] [blame] | 288 | if (nouveau_nofbaccel) |
| 289 | info->flags = FBINFO_DEFAULT | FBINFO_HWACCEL_DISABLED; |
| 290 | else |
| 291 | info->flags = FBINFO_DEFAULT | FBINFO_HWACCEL_COPYAREA | |
| 292 | FBINFO_HWACCEL_FILLRECT | |
| 293 | FBINFO_HWACCEL_IMAGEBLIT; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 294 | info->fbops = &nouveau_fbcon_ops; |
| 295 | info->fix.smem_start = dev->mode_config.fb_base + nvbo->bo.offset - |
| 296 | dev_priv->vm_vram_base; |
| 297 | info->fix.smem_len = size; |
| 298 | |
| 299 | info->screen_base = nvbo_kmap_obj_iovirtual(nouveau_fb->nvbo); |
| 300 | info->screen_size = size; |
| 301 | |
| 302 | drm_fb_helper_fill_fix(info, fb->pitch, fb->depth); |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame^] | 303 | drm_fb_helper_fill_var(info, &nfbdev->helper, sizes->fb_width, sizes->fb_height); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 304 | |
| 305 | /* FIXME: we really shouldn't expose mmio space at all */ |
| 306 | info->fix.mmio_start = pci_resource_start(dev->pdev, 1); |
| 307 | info->fix.mmio_len = pci_resource_len(dev->pdev, 1); |
| 308 | |
| 309 | /* Set aperture base/size for vesafb takeover */ |
| 310 | #if defined(__i386__) || defined(__x86_64__) |
| 311 | if (nouveau_fbcon_has_vesafb_or_efifb(dev)) { |
| 312 | /* Some NVIDIA VBIOS' are stupid and decide to put the |
| 313 | * framebuffer in the middle of the PRAMIN BAR for |
| 314 | * whatever reason. We need to know the exact lfb_base |
| 315 | * to get vesafb kicked off, and the only reliable way |
| 316 | * we have left is to find out lfb_base the same way |
| 317 | * vesafb did. |
| 318 | */ |
| 319 | info->aperture_base = screen_info.lfb_base; |
| 320 | info->aperture_size = screen_info.lfb_size; |
| 321 | if (screen_info.orig_video_isVGA == VIDEO_TYPE_VLFB) |
| 322 | info->aperture_size *= 65536; |
| 323 | } else |
| 324 | #endif |
| 325 | { |
| 326 | info->aperture_base = info->fix.mmio_start; |
| 327 | info->aperture_size = info->fix.mmio_len; |
| 328 | } |
| 329 | |
| 330 | info->pixmap.size = 64*1024; |
| 331 | info->pixmap.buf_align = 8; |
| 332 | info->pixmap.access_align = 32; |
| 333 | info->pixmap.flags = FB_PIXMAP_SYSTEM; |
| 334 | info->pixmap.scan_align = 1; |
| 335 | |
Marcin Kościelnicki | a32ed69 | 2010-01-26 14:00:42 +0000 | [diff] [blame] | 336 | if (dev_priv->channel && !nouveau_nofbaccel) { |
Ben Skeggs | 0735f62 | 2009-12-16 14:28:55 +1000 | [diff] [blame] | 337 | switch (dev_priv->card_type) { |
| 338 | case NV_50: |
| 339 | nv50_fbcon_accel_init(info); |
Marcin Kościelnicki | 126b544 | 2010-01-27 14:03:18 +0000 | [diff] [blame] | 340 | info->fbops = &nv50_fbcon_ops; |
Ben Skeggs | 0735f62 | 2009-12-16 14:28:55 +1000 | [diff] [blame] | 341 | break; |
| 342 | default: |
| 343 | nv04_fbcon_accel_init(info); |
Marcin Kościelnicki | 126b544 | 2010-01-27 14:03:18 +0000 | [diff] [blame] | 344 | info->fbops = &nv04_fbcon_ops; |
Ben Skeggs | 0735f62 | 2009-12-16 14:28:55 +1000 | [diff] [blame] | 345 | break; |
| 346 | }; |
| 347 | } |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 348 | |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame^] | 349 | nouveau_fbcon_zfill(dev, nfbdev); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 350 | |
| 351 | /* To allow resizeing without swapping buffers */ |
| 352 | NV_INFO(dev, "allocated %dx%d fb: 0x%lx, bo %p\n", |
| 353 | nouveau_fb->base.width, |
| 354 | nouveau_fb->base.height, |
| 355 | nvbo->bo.offset, nvbo); |
| 356 | |
| 357 | mutex_unlock(&dev->struct_mutex); |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 358 | vga_switcheroo_client_fb_set(dev->pdev, info); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 359 | return 0; |
| 360 | |
| 361 | out_unref: |
| 362 | mutex_unlock(&dev->struct_mutex); |
| 363 | out: |
| 364 | return ret; |
| 365 | } |
| 366 | |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 367 | static int |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame^] | 368 | nouveau_fbcon_find_or_create_single(struct drm_fb_helper *helper, |
| 369 | struct drm_fb_helper_surface_size *sizes) |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 370 | { |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame^] | 371 | struct nouveau_fbdev *nfbdev = (struct nouveau_fbdev *)helper; |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 372 | int new_fb = 0; |
| 373 | int ret; |
| 374 | |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame^] | 375 | if (!helper->fb) { |
| 376 | ret = nouveau_fbcon_create(nfbdev, sizes); |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 377 | if (ret) |
| 378 | return ret; |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 379 | new_fb = 1; |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 380 | } |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 381 | return new_fb; |
| 382 | } |
| 383 | |
| 384 | static int |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame^] | 385 | nouveau_fbcon_probe(struct nouveau_fbdev *nfbdev) |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 386 | { |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame^] | 387 | NV_DEBUG_KMS(nfbdev->dev, "\n"); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 388 | |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame^] | 389 | return drm_fb_helper_single_fb_probe(&nfbdev->helper, 32); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 390 | } |
| 391 | |
| 392 | int |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame^] | 393 | nouveau_fbcon_destroy(struct drm_device *dev, struct nouveau_fbdev *nfbdev) |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 394 | { |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame^] | 395 | struct nouveau_framebuffer *nouveau_fb = &nfbdev->nouveau_fb; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 396 | struct fb_info *info; |
| 397 | |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame^] | 398 | if (nfbdev->helper.fbdev) { |
| 399 | info = nfbdev->helper.fbdev; |
| 400 | unregister_framebuffer(info); |
| 401 | framebuffer_release(info); |
| 402 | } |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 403 | |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame^] | 404 | if (nouveau_fb->nvbo) { |
| 405 | nouveau_bo_unmap(nouveau_fb->nvbo); |
| 406 | drm_gem_object_unreference_unlocked(nouveau_fb->nvbo->gem); |
| 407 | nouveau_fb->nvbo = NULL; |
| 408 | } |
| 409 | drm_fb_helper_free(&nfbdev->helper); |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 410 | drm_framebuffer_cleanup(&nouveau_fb->base); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 411 | return 0; |
| 412 | } |
Marcin Slusarz | 846975a | 2010-01-04 19:25:09 +0100 | [diff] [blame] | 413 | |
| 414 | void nouveau_fbcon_gpu_lockup(struct fb_info *info) |
| 415 | { |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame^] | 416 | struct nouveau_fbdev *nfbdev = info->par; |
| 417 | struct drm_device *dev = nfbdev->dev; |
Marcin Slusarz | 846975a | 2010-01-04 19:25:09 +0100 | [diff] [blame] | 418 | |
| 419 | NV_ERROR(dev, "GPU lockup - switching to software fbcon\n"); |
| 420 | info->flags |= FBINFO_HWACCEL_DISABLED; |
| 421 | } |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 422 | |
| 423 | int nouveau_fbcon_init(struct drm_device *dev) |
| 424 | { |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame^] | 425 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
| 426 | struct nouveau_fbdev *nfbdev; |
| 427 | |
| 428 | nfbdev = kzalloc(sizeof(struct nouveau_fbdev), GFP_KERNEL); |
| 429 | if (!nfbdev) |
| 430 | return -ENOMEM; |
| 431 | |
| 432 | nfbdev->dev = dev; |
| 433 | dev_priv->nfbdev = nfbdev; |
| 434 | |
| 435 | drm_fb_helper_init_crtc_count(dev, &nfbdev->helper, |
| 436 | 2, 4); |
| 437 | nfbdev->helper.fb_probe = nouveau_fbcon_find_or_create_single; |
| 438 | drm_fb_helper_initial_config(&nfbdev->helper); |
| 439 | nouveau_fbcon_probe(nfbdev); |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 440 | return 0; |
| 441 | } |
| 442 | |
| 443 | void nouveau_fbcon_fini(struct drm_device *dev) |
| 444 | { |
| 445 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame^] | 446 | |
| 447 | if (!dev_priv->nfbdev) |
| 448 | return; |
| 449 | |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 450 | nouveau_fbcon_destroy(dev, dev_priv->nfbdev); |
Dave Airlie | 8be48d9 | 2010-03-30 05:34:14 +0000 | [diff] [blame^] | 451 | kfree(dev_priv->nfbdev); |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 452 | dev_priv->nfbdev = NULL; |
| 453 | } |
| 454 | |
| 455 | void nouveau_fbcon_save_disable_accel(struct drm_device *dev) |
| 456 | { |
| 457 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
| 458 | |
| 459 | dev_priv->nfbdev->saved_flags = dev_priv->nfbdev->helper.fbdev->flags; |
| 460 | dev_priv->nfbdev->helper.fbdev->flags |= FBINFO_HWACCEL_DISABLED; |
| 461 | } |
| 462 | |
| 463 | void nouveau_fbcon_restore_accel(struct drm_device *dev) |
| 464 | { |
| 465 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
| 466 | dev_priv->nfbdev->helper.fbdev->flags = dev_priv->nfbdev->saved_flags; |
| 467 | } |
| 468 | |
| 469 | void nouveau_fbcon_set_suspend(struct drm_device *dev, int state) |
| 470 | { |
| 471 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
| 472 | fb_set_suspend(dev_priv->nfbdev->helper.fbdev, state); |
| 473 | } |
| 474 | |
| 475 | void nouveau_fbcon_zfill_all(struct drm_device *dev) |
| 476 | { |
| 477 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
| 478 | nouveau_fbcon_zfill(dev, dev_priv->nfbdev); |
| 479 | } |