blob: bc81ec7dc13139b62f21b50e484be2b479d5bad4 [file] [log] [blame]
Ben Skeggs6ee73862009-12-11 19:24:15 +10001/*
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 Airlie6a9ee8a2010-02-01 15:38:10 +100039#include <linux/vga_switcheroo.h>
Ben Skeggs6ee73862009-12-11 19:24:15 +100040
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
53static int
54nouveau_fbcon_sync(struct fb_info *info)
55{
Dave Airlie8be48d92010-03-30 05:34:14 +000056 struct nouveau_fbdev *nfbdev = info->par;
57 struct drm_device *dev = nfbdev->dev;
Ben Skeggs6ee73862009-12-11 19:24:15 +100058 struct drm_nouveau_private *dev_priv = dev->dev_private;
59 struct nouveau_channel *chan = dev_priv->channel;
60 int ret, i;
61
Ben Skeggs0735f622009-12-16 14:28:55 +100062 if (!chan || !chan->accel_done ||
Ben Skeggs6ee73862009-12-11 19:24:15 +100063 info->state != FBINFO_STATE_RUNNING ||
64 info->flags & FBINFO_HWACCEL_DISABLED)
65 return 0;
66
67 if (RING_SPACE(chan, 4)) {
Marcin Slusarz846975a2010-01-04 19:25:09 +010068 nouveau_fbcon_gpu_lockup(info);
Ben Skeggs6ee73862009-12-11 19:24:15 +100069 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 Slusarz846975a2010-01-04 19:25:09 +010089 nouveau_fbcon_gpu_lockup(info);
Ben Skeggs6ee73862009-12-11 19:24:15 +100090 return 0;
91 }
92
93 chan->accel_done = false;
94 return 0;
95}
96
97static 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ścielnicki126b5442010-01-27 14:03:18 +0000111static 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
125static 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 Skeggs6ee73862009-12-11 19:24:15 +1000139static 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
149static 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
Ben Skeggs6ee73862009-12-11 19:24:15 +1000159#if defined(__i386__) || defined(__x86_64__)
160static bool
161nouveau_fbcon_has_vesafb_or_efifb(struct drm_device *dev)
162{
163 struct pci_dev *pdev = dev->pdev;
164 int ramin;
165
166 if (screen_info.orig_video_isVGA != VIDEO_TYPE_VLFB &&
167 screen_info.orig_video_isVGA != VIDEO_TYPE_EFI)
168 return false;
169
170 if (screen_info.lfb_base < pci_resource_start(pdev, 1))
171 goto not_fb;
172
173 if (screen_info.lfb_base + screen_info.lfb_size >=
174 pci_resource_start(pdev, 1) + pci_resource_len(pdev, 1))
175 goto not_fb;
176
177 return true;
178not_fb:
179 ramin = 2;
180 if (pci_resource_len(pdev, ramin) == 0) {
181 ramin = 3;
182 if (pci_resource_len(pdev, ramin) == 0)
183 return false;
184 }
185
186 if (screen_info.lfb_base < pci_resource_start(pdev, ramin))
187 return false;
188
189 if (screen_info.lfb_base + screen_info.lfb_size >=
190 pci_resource_start(pdev, ramin) + pci_resource_len(pdev, ramin))
191 return false;
192
193 return true;
194}
195#endif
196
Dave Airlie38651672010-03-30 05:34:13 +0000197static void
Dave Airlie8be48d92010-03-30 05:34:14 +0000198nouveau_fbcon_zfill(struct drm_device *dev, struct nouveau_fbdev *nfbdev)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000199{
Dave Airlie8be48d92010-03-30 05:34:14 +0000200 struct fb_info *info = nfbdev->helper.fbdev;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000201 struct fb_fillrect rect;
202
203 /* Clear the entire fbcon. The drm will program every connector
204 * with it's preferred mode. If the sizes differ, one display will
205 * quite likely have garbage around the console.
206 */
207 rect.dx = rect.dy = 0;
208 rect.width = info->var.xres_virtual;
209 rect.height = info->var.yres_virtual;
210 rect.color = 0;
211 rect.rop = ROP_COPY;
212 info->fbops->fb_fillrect(info, &rect);
213}
214
215static int
Dave Airlie8be48d92010-03-30 05:34:14 +0000216nouveau_fbcon_create(struct nouveau_fbdev *nfbdev,
217 struct drm_fb_helper_surface_size *sizes)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000218{
Dave Airlie8be48d92010-03-30 05:34:14 +0000219 struct drm_device *dev = nfbdev->dev;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000220 struct drm_nouveau_private *dev_priv = dev->dev_private;
221 struct fb_info *info;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000222 struct drm_framebuffer *fb;
223 struct nouveau_framebuffer *nouveau_fb;
224 struct nouveau_bo *nvbo;
225 struct drm_mode_fb_cmd mode_cmd;
226 struct device *device = &dev->pdev->dev;
227 int size, ret;
228
Dave Airlie38651672010-03-30 05:34:13 +0000229 mode_cmd.width = sizes->surface_width;
230 mode_cmd.height = sizes->surface_height;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000231
Dave Airlie38651672010-03-30 05:34:13 +0000232 mode_cmd.bpp = sizes->surface_bpp;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000233 mode_cmd.pitch = mode_cmd.width * (mode_cmd.bpp >> 3);
Maarten Maathuis1c7059e2009-12-25 18:51:17 +0100234 mode_cmd.pitch = roundup(mode_cmd.pitch, 256);
Dave Airlie38651672010-03-30 05:34:13 +0000235 mode_cmd.depth = sizes->surface_depth;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000236
237 size = mode_cmd.pitch * mode_cmd.height;
Maarten Maathuis1c7059e2009-12-25 18:51:17 +0100238 size = roundup(size, PAGE_SIZE);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000239
240 ret = nouveau_gem_new(dev, dev_priv->channel, size, 0, TTM_PL_FLAG_VRAM,
241 0, 0x0000, false, true, &nvbo);
242 if (ret) {
243 NV_ERROR(dev, "failed to allocate framebuffer\n");
244 goto out;
245 }
246
247 ret = nouveau_bo_pin(nvbo, TTM_PL_FLAG_VRAM);
248 if (ret) {
249 NV_ERROR(dev, "failed to pin fb: %d\n", ret);
250 nouveau_bo_ref(NULL, &nvbo);
251 goto out;
252 }
253
254 ret = nouveau_bo_map(nvbo);
255 if (ret) {
256 NV_ERROR(dev, "failed to map fb: %d\n", ret);
257 nouveau_bo_unpin(nvbo);
258 nouveau_bo_ref(NULL, &nvbo);
259 goto out;
260 }
261
262 mutex_lock(&dev->struct_mutex);
263
Dave Airlie8be48d92010-03-30 05:34:14 +0000264 info = framebuffer_alloc(0, device);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000265 if (!info) {
266 ret = -ENOMEM;
267 goto out_unref;
268 }
269
Dave Airlie4abe3522010-03-30 05:34:18 +0000270 ret = fb_alloc_cmap(&info->cmap, 256, 0);
271 if (ret) {
272 ret = -ENOMEM;
273 goto out_unref;
274 }
275
Dave Airlie8be48d92010-03-30 05:34:14 +0000276 info->par = nfbdev;
Dave Airlie38651672010-03-30 05:34:13 +0000277
Dave Airlie8be48d92010-03-30 05:34:14 +0000278 nouveau_framebuffer_init(dev, &nfbdev->nouveau_fb, &mode_cmd, nvbo);
279
280 nouveau_fb = &nfbdev->nouveau_fb;
281 fb = &nouveau_fb->base;
282
Dave Airlie38651672010-03-30 05:34:13 +0000283 /* setup helper */
Dave Airlie8be48d92010-03-30 05:34:14 +0000284 nfbdev->helper.fb = fb;
285 nfbdev->helper.fbdev = info;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000286
287 strcpy(info->fix.id, "nouveaufb");
Marcin Kościelnickia32ed692010-01-26 14:00:42 +0000288 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 Skeggs6ee73862009-12-11 19:24:15 +1000294 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 Airlie8be48d92010-03-30 05:34:14 +0000303 drm_fb_helper_fill_var(info, &nfbdev->helper, sizes->fb_width, sizes->fb_height);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000304
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ścielnickia32ed692010-01-26 14:00:42 +0000336 if (dev_priv->channel && !nouveau_nofbaccel) {
Ben Skeggs0735f622009-12-16 14:28:55 +1000337 switch (dev_priv->card_type) {
338 case NV_50:
339 nv50_fbcon_accel_init(info);
Marcin Kościelnicki126b5442010-01-27 14:03:18 +0000340 info->fbops = &nv50_fbcon_ops;
Ben Skeggs0735f622009-12-16 14:28:55 +1000341 break;
342 default:
343 nv04_fbcon_accel_init(info);
Marcin Kościelnicki126b5442010-01-27 14:03:18 +0000344 info->fbops = &nv04_fbcon_ops;
Ben Skeggs0735f622009-12-16 14:28:55 +1000345 break;
346 };
347 }
Ben Skeggs6ee73862009-12-11 19:24:15 +1000348
Dave Airlie8be48d92010-03-30 05:34:14 +0000349 nouveau_fbcon_zfill(dev, nfbdev);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000350
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 Airlie6a9ee8a2010-02-01 15:38:10 +1000358 vga_switcheroo_client_fb_set(dev->pdev, info);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000359 return 0;
360
361out_unref:
362 mutex_unlock(&dev->struct_mutex);
363out:
364 return ret;
365}
366
Dave Airlie38651672010-03-30 05:34:13 +0000367static int
Dave Airlie8be48d92010-03-30 05:34:14 +0000368nouveau_fbcon_find_or_create_single(struct drm_fb_helper *helper,
369 struct drm_fb_helper_surface_size *sizes)
Dave Airlie38651672010-03-30 05:34:13 +0000370{
Dave Airlie8be48d92010-03-30 05:34:14 +0000371 struct nouveau_fbdev *nfbdev = (struct nouveau_fbdev *)helper;
Dave Airlie38651672010-03-30 05:34:13 +0000372 int new_fb = 0;
373 int ret;
374
Dave Airlie8be48d92010-03-30 05:34:14 +0000375 if (!helper->fb) {
376 ret = nouveau_fbcon_create(nfbdev, sizes);
Dave Airlie38651672010-03-30 05:34:13 +0000377 if (ret)
378 return ret;
Dave Airlie38651672010-03-30 05:34:13 +0000379 new_fb = 1;
Dave Airlie38651672010-03-30 05:34:13 +0000380 }
Dave Airlie38651672010-03-30 05:34:13 +0000381 return new_fb;
382}
383
Dave Airlie4abe3522010-03-30 05:34:18 +0000384void nouveau_fbcon_hotplug(struct drm_device *dev)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000385{
Dave Airlie4abe3522010-03-30 05:34:18 +0000386 struct drm_nouveau_private *dev_priv = dev->dev_private;
387 drm_helper_fb_hpd_irq_event(&dev_priv->nfbdev->helper);
388}
Ben Skeggs6ee73862009-12-11 19:24:15 +1000389
Dave Airlie4abe3522010-03-30 05:34:18 +0000390static void nouveau_fbcon_output_status_changed(struct drm_fb_helper *fb_helper)
391{
392 drm_helper_fb_hotplug_event(fb_helper, true);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000393}
394
395int
Dave Airlie8be48d92010-03-30 05:34:14 +0000396nouveau_fbcon_destroy(struct drm_device *dev, struct nouveau_fbdev *nfbdev)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000397{
Dave Airlie8be48d92010-03-30 05:34:14 +0000398 struct nouveau_framebuffer *nouveau_fb = &nfbdev->nouveau_fb;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000399 struct fb_info *info;
400
Dave Airlie8be48d92010-03-30 05:34:14 +0000401 if (nfbdev->helper.fbdev) {
402 info = nfbdev->helper.fbdev;
403 unregister_framebuffer(info);
Dave Airlie4abe3522010-03-30 05:34:18 +0000404 if (info->cmap.len)
405 fb_dealloc_cmap(&info->cmap);
Dave Airlie8be48d92010-03-30 05:34:14 +0000406 framebuffer_release(info);
407 }
Ben Skeggs6ee73862009-12-11 19:24:15 +1000408
Dave Airlie8be48d92010-03-30 05:34:14 +0000409 if (nouveau_fb->nvbo) {
410 nouveau_bo_unmap(nouveau_fb->nvbo);
411 drm_gem_object_unreference_unlocked(nouveau_fb->nvbo->gem);
412 nouveau_fb->nvbo = NULL;
413 }
Dave Airlie4abe3522010-03-30 05:34:18 +0000414 drm_fb_helper_fini(&nfbdev->helper);
Dave Airlie38651672010-03-30 05:34:13 +0000415 drm_framebuffer_cleanup(&nouveau_fb->base);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000416 return 0;
417}
Marcin Slusarz846975a2010-01-04 19:25:09 +0100418
419void nouveau_fbcon_gpu_lockup(struct fb_info *info)
420{
Dave Airlie8be48d92010-03-30 05:34:14 +0000421 struct nouveau_fbdev *nfbdev = info->par;
422 struct drm_device *dev = nfbdev->dev;
Marcin Slusarz846975a2010-01-04 19:25:09 +0100423
424 NV_ERROR(dev, "GPU lockup - switching to software fbcon\n");
425 info->flags |= FBINFO_HWACCEL_DISABLED;
426}
Dave Airlie38651672010-03-30 05:34:13 +0000427
Dave Airlie4abe3522010-03-30 05:34:18 +0000428static struct drm_fb_helper_funcs nouveau_fbcon_helper_funcs = {
429 .gamma_set = nouveau_fbcon_gamma_set,
430 .gamma_get = nouveau_fbcon_gamma_get,
431 .fb_probe = nouveau_fbcon_find_or_create_single,
432 .fb_output_status_changed = nouveau_fbcon_output_status_changed,
433};
434
435
Dave Airlie38651672010-03-30 05:34:13 +0000436int nouveau_fbcon_init(struct drm_device *dev)
437{
Dave Airlie8be48d92010-03-30 05:34:14 +0000438 struct drm_nouveau_private *dev_priv = dev->dev_private;
439 struct nouveau_fbdev *nfbdev;
440
441 nfbdev = kzalloc(sizeof(struct nouveau_fbdev), GFP_KERNEL);
442 if (!nfbdev)
443 return -ENOMEM;
444
445 nfbdev->dev = dev;
446 dev_priv->nfbdev = nfbdev;
Dave Airlie4abe3522010-03-30 05:34:18 +0000447 nfbdev->helper.funcs = &nouveau_fbcon_helper_funcs;
Dave Airlie8be48d92010-03-30 05:34:14 +0000448
Dave Airlie4abe3522010-03-30 05:34:18 +0000449 drm_fb_helper_init(dev, &nfbdev->helper,
450 2, 4, true);
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000451 drm_fb_helper_single_add_all_connectors(&nfbdev->helper);
Dave Airlie4abe3522010-03-30 05:34:18 +0000452 drm_fb_helper_initial_config(&nfbdev->helper, 32);
Dave Airlie38651672010-03-30 05:34:13 +0000453 return 0;
454}
455
456void nouveau_fbcon_fini(struct drm_device *dev)
457{
458 struct drm_nouveau_private *dev_priv = dev->dev_private;
Dave Airlie8be48d92010-03-30 05:34:14 +0000459
460 if (!dev_priv->nfbdev)
461 return;
462
Dave Airlie38651672010-03-30 05:34:13 +0000463 nouveau_fbcon_destroy(dev, dev_priv->nfbdev);
Dave Airlie8be48d92010-03-30 05:34:14 +0000464 kfree(dev_priv->nfbdev);
Dave Airlie38651672010-03-30 05:34:13 +0000465 dev_priv->nfbdev = NULL;
466}
467
468void nouveau_fbcon_save_disable_accel(struct drm_device *dev)
469{
470 struct drm_nouveau_private *dev_priv = dev->dev_private;
471
472 dev_priv->nfbdev->saved_flags = dev_priv->nfbdev->helper.fbdev->flags;
473 dev_priv->nfbdev->helper.fbdev->flags |= FBINFO_HWACCEL_DISABLED;
474}
475
476void nouveau_fbcon_restore_accel(struct drm_device *dev)
477{
478 struct drm_nouveau_private *dev_priv = dev->dev_private;
479 dev_priv->nfbdev->helper.fbdev->flags = dev_priv->nfbdev->saved_flags;
480}
481
482void nouveau_fbcon_set_suspend(struct drm_device *dev, int state)
483{
484 struct drm_nouveau_private *dev_priv = dev->dev_private;
485 fb_set_suspend(dev_priv->nfbdev->helper.fbdev, state);
486}
487
488void nouveau_fbcon_zfill_all(struct drm_device *dev)
489{
490 struct drm_nouveau_private *dev_priv = dev->dev_private;
491 nouveau_fbcon_zfill(dev, dev_priv->nfbdev);
492}