blob: 292c7ff951057a0ab9896f6925a6f902eaa92146 [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>
Ben Skeggs6ee73862009-12-11 19:24:15 +100033#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 Airlie6a9ee8a2010-02-01 15:38:10 +100038#include <linux/vga_switcheroo.h>
Ben Skeggs6ee73862009-12-11 19:24:15 +100039
40#include "drmP.h"
41#include "drm.h"
42#include "drm_crtc.h"
43#include "drm_crtc_helper.h"
44#include "drm_fb_helper.h"
45#include "nouveau_drv.h"
46#include "nouveau_drm.h"
47#include "nouveau_crtc.h"
48#include "nouveau_fb.h"
49#include "nouveau_fbcon.h"
50#include "nouveau_dma.h"
51
52static int
53nouveau_fbcon_sync(struct fb_info *info)
54{
Dave Airlie8be48d92010-03-30 05:34:14 +000055 struct nouveau_fbdev *nfbdev = info->par;
56 struct drm_device *dev = nfbdev->dev;
Ben Skeggs6ee73862009-12-11 19:24:15 +100057 struct drm_nouveau_private *dev_priv = dev->dev_private;
58 struct nouveau_channel *chan = dev_priv->channel;
59 int ret, i;
60
Ben Skeggs0735f622009-12-16 14:28:55 +100061 if (!chan || !chan->accel_done ||
Ben Skeggs6ee73862009-12-11 19:24:15 +100062 info->state != FBINFO_STATE_RUNNING ||
63 info->flags & FBINFO_HWACCEL_DISABLED)
64 return 0;
65
66 if (RING_SPACE(chan, 4)) {
Marcin Slusarz846975a2010-01-04 19:25:09 +010067 nouveau_fbcon_gpu_lockup(info);
Ben Skeggs6ee73862009-12-11 19:24:15 +100068 return 0;
69 }
70
71 BEGIN_RING(chan, 0, 0x0104, 1);
72 OUT_RING(chan, 0);
73 BEGIN_RING(chan, 0, 0x0100, 1);
74 OUT_RING(chan, 0);
75 nouveau_bo_wr32(chan->notifier_bo, chan->m2mf_ntfy + 3, 0xffffffff);
76 FIRE_RING(chan);
77
78 ret = -EBUSY;
79 for (i = 0; i < 100000; i++) {
80 if (!nouveau_bo_rd32(chan->notifier_bo, chan->m2mf_ntfy + 3)) {
81 ret = 0;
82 break;
83 }
84 DRM_UDELAY(1);
85 }
86
87 if (ret) {
Marcin Slusarz846975a2010-01-04 19:25:09 +010088 nouveau_fbcon_gpu_lockup(info);
Ben Skeggs6ee73862009-12-11 19:24:15 +100089 return 0;
90 }
91
92 chan->accel_done = false;
93 return 0;
94}
95
96static struct fb_ops nouveau_fbcon_ops = {
97 .owner = THIS_MODULE,
98 .fb_check_var = drm_fb_helper_check_var,
99 .fb_set_par = drm_fb_helper_set_par,
Ben Skeggs6ee73862009-12-11 19:24:15 +1000100 .fb_fillrect = cfb_fillrect,
101 .fb_copyarea = cfb_copyarea,
102 .fb_imageblit = cfb_imageblit,
103 .fb_sync = nouveau_fbcon_sync,
104 .fb_pan_display = drm_fb_helper_pan_display,
105 .fb_blank = drm_fb_helper_blank,
106 .fb_setcmap = drm_fb_helper_setcmap,
107};
108
Marcin Kościelnicki126b5442010-01-27 14:03:18 +0000109static struct fb_ops nv04_fbcon_ops = {
110 .owner = THIS_MODULE,
111 .fb_check_var = drm_fb_helper_check_var,
112 .fb_set_par = drm_fb_helper_set_par,
Marcin Kościelnicki126b5442010-01-27 14:03:18 +0000113 .fb_fillrect = nv04_fbcon_fillrect,
114 .fb_copyarea = nv04_fbcon_copyarea,
115 .fb_imageblit = nv04_fbcon_imageblit,
116 .fb_sync = nouveau_fbcon_sync,
117 .fb_pan_display = drm_fb_helper_pan_display,
118 .fb_blank = drm_fb_helper_blank,
119 .fb_setcmap = drm_fb_helper_setcmap,
120};
121
122static struct fb_ops nv50_fbcon_ops = {
123 .owner = THIS_MODULE,
124 .fb_check_var = drm_fb_helper_check_var,
125 .fb_set_par = drm_fb_helper_set_par,
Marcin Kościelnicki126b5442010-01-27 14:03:18 +0000126 .fb_fillrect = nv50_fbcon_fillrect,
127 .fb_copyarea = nv50_fbcon_copyarea,
128 .fb_imageblit = nv50_fbcon_imageblit,
129 .fb_sync = nouveau_fbcon_sync,
130 .fb_pan_display = drm_fb_helper_pan_display,
131 .fb_blank = drm_fb_helper_blank,
132 .fb_setcmap = drm_fb_helper_setcmap,
133};
134
Ben Skeggs6ee73862009-12-11 19:24:15 +1000135static void nouveau_fbcon_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
136 u16 blue, int regno)
137{
138 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
139
140 nv_crtc->lut.r[regno] = red;
141 nv_crtc->lut.g[regno] = green;
142 nv_crtc->lut.b[regno] = blue;
143}
144
145static void nouveau_fbcon_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
146 u16 *blue, int regno)
147{
148 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
149
150 *red = nv_crtc->lut.r[regno];
151 *green = nv_crtc->lut.g[regno];
152 *blue = nv_crtc->lut.b[regno];
153}
154
Dave Airlie38651672010-03-30 05:34:13 +0000155static void
Dave Airlie8be48d92010-03-30 05:34:14 +0000156nouveau_fbcon_zfill(struct drm_device *dev, struct nouveau_fbdev *nfbdev)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000157{
Dave Airlie8be48d92010-03-30 05:34:14 +0000158 struct fb_info *info = nfbdev->helper.fbdev;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000159 struct fb_fillrect rect;
160
161 /* Clear the entire fbcon. The drm will program every connector
162 * with it's preferred mode. If the sizes differ, one display will
163 * quite likely have garbage around the console.
164 */
165 rect.dx = rect.dy = 0;
166 rect.width = info->var.xres_virtual;
167 rect.height = info->var.yres_virtual;
168 rect.color = 0;
169 rect.rop = ROP_COPY;
170 info->fbops->fb_fillrect(info, &rect);
171}
172
173static int
Dave Airlie8be48d92010-03-30 05:34:14 +0000174nouveau_fbcon_create(struct nouveau_fbdev *nfbdev,
175 struct drm_fb_helper_surface_size *sizes)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000176{
Dave Airlie8be48d92010-03-30 05:34:14 +0000177 struct drm_device *dev = nfbdev->dev;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000178 struct drm_nouveau_private *dev_priv = dev->dev_private;
179 struct fb_info *info;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000180 struct drm_framebuffer *fb;
181 struct nouveau_framebuffer *nouveau_fb;
182 struct nouveau_bo *nvbo;
183 struct drm_mode_fb_cmd mode_cmd;
Marcin Slusarz1471ca92010-05-16 17:27:03 +0200184 struct pci_dev *pdev = dev->pdev;
185 struct device *device = &pdev->dev;
186 struct apertures_struct *aper;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000187 int size, ret;
188
Dave Airlie38651672010-03-30 05:34:13 +0000189 mode_cmd.width = sizes->surface_width;
190 mode_cmd.height = sizes->surface_height;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000191
Dave Airlie38651672010-03-30 05:34:13 +0000192 mode_cmd.bpp = sizes->surface_bpp;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000193 mode_cmd.pitch = mode_cmd.width * (mode_cmd.bpp >> 3);
Maarten Maathuis1c7059e2009-12-25 18:51:17 +0100194 mode_cmd.pitch = roundup(mode_cmd.pitch, 256);
Dave Airlie38651672010-03-30 05:34:13 +0000195 mode_cmd.depth = sizes->surface_depth;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000196
197 size = mode_cmd.pitch * mode_cmd.height;
Maarten Maathuis1c7059e2009-12-25 18:51:17 +0100198 size = roundup(size, PAGE_SIZE);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000199
200 ret = nouveau_gem_new(dev, dev_priv->channel, size, 0, TTM_PL_FLAG_VRAM,
201 0, 0x0000, false, true, &nvbo);
202 if (ret) {
203 NV_ERROR(dev, "failed to allocate framebuffer\n");
204 goto out;
205 }
206
207 ret = nouveau_bo_pin(nvbo, TTM_PL_FLAG_VRAM);
208 if (ret) {
209 NV_ERROR(dev, "failed to pin fb: %d\n", ret);
210 nouveau_bo_ref(NULL, &nvbo);
211 goto out;
212 }
213
214 ret = nouveau_bo_map(nvbo);
215 if (ret) {
216 NV_ERROR(dev, "failed to map fb: %d\n", ret);
217 nouveau_bo_unpin(nvbo);
218 nouveau_bo_ref(NULL, &nvbo);
219 goto out;
220 }
221
222 mutex_lock(&dev->struct_mutex);
223
Dave Airlie8be48d92010-03-30 05:34:14 +0000224 info = framebuffer_alloc(0, device);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000225 if (!info) {
226 ret = -ENOMEM;
227 goto out_unref;
228 }
229
Dave Airlie4abe3522010-03-30 05:34:18 +0000230 ret = fb_alloc_cmap(&info->cmap, 256, 0);
231 if (ret) {
232 ret = -ENOMEM;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000233 goto out_unref;
Dave Airlie4abe3522010-03-30 05:34:18 +0000234 }
235
Dave Airlie8be48d92010-03-30 05:34:14 +0000236 info->par = nfbdev;
Dave Airlie38651672010-03-30 05:34:13 +0000237
Dave Airlie8be48d92010-03-30 05:34:14 +0000238 nouveau_framebuffer_init(dev, &nfbdev->nouveau_fb, &mode_cmd, nvbo);
239
240 nouveau_fb = &nfbdev->nouveau_fb;
241 fb = &nouveau_fb->base;
242
Dave Airlie38651672010-03-30 05:34:13 +0000243 /* setup helper */
Dave Airlie8be48d92010-03-30 05:34:14 +0000244 nfbdev->helper.fb = fb;
245 nfbdev->helper.fbdev = info;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000246
247 strcpy(info->fix.id, "nouveaufb");
Marcin Kościelnickia32ed692010-01-26 14:00:42 +0000248 if (nouveau_nofbaccel)
249 info->flags = FBINFO_DEFAULT | FBINFO_HWACCEL_DISABLED;
250 else
251 info->flags = FBINFO_DEFAULT | FBINFO_HWACCEL_COPYAREA |
252 FBINFO_HWACCEL_FILLRECT |
253 FBINFO_HWACCEL_IMAGEBLIT;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000254 info->fbops = &nouveau_fbcon_ops;
255 info->fix.smem_start = dev->mode_config.fb_base + nvbo->bo.offset -
256 dev_priv->vm_vram_base;
257 info->fix.smem_len = size;
258
259 info->screen_base = nvbo_kmap_obj_iovirtual(nouveau_fb->nvbo);
260 info->screen_size = size;
261
262 drm_fb_helper_fill_fix(info, fb->pitch, fb->depth);
Dave Airlie8be48d92010-03-30 05:34:14 +0000263 drm_fb_helper_fill_var(info, &nfbdev->helper, sizes->fb_width, sizes->fb_height);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000264
265 /* FIXME: we really shouldn't expose mmio space at all */
Marcin Slusarz1471ca92010-05-16 17:27:03 +0200266 info->fix.mmio_start = pci_resource_start(pdev, 1);
267 info->fix.mmio_len = pci_resource_len(pdev, 1);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000268
269 /* Set aperture base/size for vesafb takeover */
Marcin Slusarz1471ca92010-05-16 17:27:03 +0200270 aper = info->apertures = alloc_apertures(3);
271 if (!info->apertures) {
272 ret = -ENOMEM;
273 goto out_unref;
274 }
275
276 aper->ranges[0].base = pci_resource_start(pdev, 1);
277 aper->ranges[0].size = pci_resource_len(pdev, 1);
278 aper->count = 1;
279
280 if (pci_resource_len(pdev, 2)) {
281 aper->ranges[aper->count].base = pci_resource_start(pdev, 2);
282 aper->ranges[aper->count].size = pci_resource_len(pdev, 2);
283 aper->count++;
284 }
285
286 if (pci_resource_len(pdev, 3)) {
287 aper->ranges[aper->count].base = pci_resource_start(pdev, 3);
288 aper->ranges[aper->count].size = pci_resource_len(pdev, 3);
289 aper->count++;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000290 }
291
292 info->pixmap.size = 64*1024;
293 info->pixmap.buf_align = 8;
294 info->pixmap.access_align = 32;
295 info->pixmap.flags = FB_PIXMAP_SYSTEM;
296 info->pixmap.scan_align = 1;
297
Marcin Kościelnickia32ed692010-01-26 14:00:42 +0000298 if (dev_priv->channel && !nouveau_nofbaccel) {
Ben Skeggs0735f622009-12-16 14:28:55 +1000299 switch (dev_priv->card_type) {
300 case NV_50:
301 nv50_fbcon_accel_init(info);
Marcin Kościelnicki126b5442010-01-27 14:03:18 +0000302 info->fbops = &nv50_fbcon_ops;
Ben Skeggs0735f622009-12-16 14:28:55 +1000303 break;
304 default:
305 nv04_fbcon_accel_init(info);
Marcin Kościelnicki126b5442010-01-27 14:03:18 +0000306 info->fbops = &nv04_fbcon_ops;
Ben Skeggs0735f622009-12-16 14:28:55 +1000307 break;
308 };
309 }
Ben Skeggs6ee73862009-12-11 19:24:15 +1000310
Dave Airlie8be48d92010-03-30 05:34:14 +0000311 nouveau_fbcon_zfill(dev, nfbdev);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000312
313 /* To allow resizeing without swapping buffers */
314 NV_INFO(dev, "allocated %dx%d fb: 0x%lx, bo %p\n",
315 nouveau_fb->base.width,
316 nouveau_fb->base.height,
317 nvbo->bo.offset, nvbo);
318
319 mutex_unlock(&dev->struct_mutex);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000320 vga_switcheroo_client_fb_set(dev->pdev, info);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000321 return 0;
322
323out_unref:
324 mutex_unlock(&dev->struct_mutex);
325out:
326 return ret;
327}
328
Dave Airlie38651672010-03-30 05:34:13 +0000329static int
Dave Airlie8be48d92010-03-30 05:34:14 +0000330nouveau_fbcon_find_or_create_single(struct drm_fb_helper *helper,
331 struct drm_fb_helper_surface_size *sizes)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000332{
Dave Airlie8be48d92010-03-30 05:34:14 +0000333 struct nouveau_fbdev *nfbdev = (struct nouveau_fbdev *)helper;
Dave Airlie38651672010-03-30 05:34:13 +0000334 int new_fb = 0;
335 int ret;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000336
Dave Airlie8be48d92010-03-30 05:34:14 +0000337 if (!helper->fb) {
338 ret = nouveau_fbcon_create(nfbdev, sizes);
Dave Airlie38651672010-03-30 05:34:13 +0000339 if (ret)
340 return ret;
Dave Airlie38651672010-03-30 05:34:13 +0000341 new_fb = 1;
Dave Airlie38651672010-03-30 05:34:13 +0000342 }
Dave Airlie38651672010-03-30 05:34:13 +0000343 return new_fb;
344}
345
Dave Airlie4abe3522010-03-30 05:34:18 +0000346void nouveau_fbcon_hotplug(struct drm_device *dev)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000347{
Dave Airlie4abe3522010-03-30 05:34:18 +0000348 struct drm_nouveau_private *dev_priv = dev->dev_private;
349 drm_helper_fb_hpd_irq_event(&dev_priv->nfbdev->helper);
350}
Ben Skeggs6ee73862009-12-11 19:24:15 +1000351
Dave Airlie4abe3522010-03-30 05:34:18 +0000352static void nouveau_fbcon_output_status_changed(struct drm_fb_helper *fb_helper)
353{
354 drm_helper_fb_hotplug_event(fb_helper, true);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000355}
356
357int
Dave Airlie8be48d92010-03-30 05:34:14 +0000358nouveau_fbcon_destroy(struct drm_device *dev, struct nouveau_fbdev *nfbdev)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000359{
Dave Airlie8be48d92010-03-30 05:34:14 +0000360 struct nouveau_framebuffer *nouveau_fb = &nfbdev->nouveau_fb;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000361 struct fb_info *info;
362
Dave Airlie8be48d92010-03-30 05:34:14 +0000363 if (nfbdev->helper.fbdev) {
364 info = nfbdev->helper.fbdev;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000365 unregister_framebuffer(info);
Dave Airlie4abe3522010-03-30 05:34:18 +0000366 if (info->cmap.len)
367 fb_dealloc_cmap(&info->cmap);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000368 framebuffer_release(info);
369 }
370
Dave Airlie8be48d92010-03-30 05:34:14 +0000371 if (nouveau_fb->nvbo) {
372 nouveau_bo_unmap(nouveau_fb->nvbo);
373 drm_gem_object_unreference_unlocked(nouveau_fb->nvbo->gem);
374 nouveau_fb->nvbo = NULL;
375 }
Dave Airlie4abe3522010-03-30 05:34:18 +0000376 drm_fb_helper_fini(&nfbdev->helper);
Dave Airlie38651672010-03-30 05:34:13 +0000377 drm_framebuffer_cleanup(&nouveau_fb->base);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000378 return 0;
379}
Marcin Slusarz846975a2010-01-04 19:25:09 +0100380
381void nouveau_fbcon_gpu_lockup(struct fb_info *info)
382{
Dave Airlie8be48d92010-03-30 05:34:14 +0000383 struct nouveau_fbdev *nfbdev = info->par;
384 struct drm_device *dev = nfbdev->dev;
Marcin Slusarz846975a2010-01-04 19:25:09 +0100385
386 NV_ERROR(dev, "GPU lockup - switching to software fbcon\n");
387 info->flags |= FBINFO_HWACCEL_DISABLED;
388}
Dave Airlie38651672010-03-30 05:34:13 +0000389
Dave Airlie4abe3522010-03-30 05:34:18 +0000390static struct drm_fb_helper_funcs nouveau_fbcon_helper_funcs = {
391 .gamma_set = nouveau_fbcon_gamma_set,
392 .gamma_get = nouveau_fbcon_gamma_get,
393 .fb_probe = nouveau_fbcon_find_or_create_single,
394 .fb_output_status_changed = nouveau_fbcon_output_status_changed,
395};
396
397
Dave Airlie38651672010-03-30 05:34:13 +0000398int nouveau_fbcon_init(struct drm_device *dev)
399{
Dave Airlie8be48d92010-03-30 05:34:14 +0000400 struct drm_nouveau_private *dev_priv = dev->dev_private;
401 struct nouveau_fbdev *nfbdev;
402
403 nfbdev = kzalloc(sizeof(struct nouveau_fbdev), GFP_KERNEL);
404 if (!nfbdev)
405 return -ENOMEM;
406
407 nfbdev->dev = dev;
408 dev_priv->nfbdev = nfbdev;
Dave Airlie4abe3522010-03-30 05:34:18 +0000409 nfbdev->helper.funcs = &nouveau_fbcon_helper_funcs;
Dave Airlie8be48d92010-03-30 05:34:14 +0000410
Dave Airlie4abe3522010-03-30 05:34:18 +0000411 drm_fb_helper_init(dev, &nfbdev->helper,
412 2, 4, true);
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000413 drm_fb_helper_single_add_all_connectors(&nfbdev->helper);
Dave Airlie4abe3522010-03-30 05:34:18 +0000414 drm_fb_helper_initial_config(&nfbdev->helper, 32);
Dave Airlie38651672010-03-30 05:34:13 +0000415 return 0;
416}
417
418void nouveau_fbcon_fini(struct drm_device *dev)
419{
420 struct drm_nouveau_private *dev_priv = dev->dev_private;
Dave Airlie8be48d92010-03-30 05:34:14 +0000421
422 if (!dev_priv->nfbdev)
423 return;
424
Dave Airlie38651672010-03-30 05:34:13 +0000425 nouveau_fbcon_destroy(dev, dev_priv->nfbdev);
Dave Airlie8be48d92010-03-30 05:34:14 +0000426 kfree(dev_priv->nfbdev);
Dave Airlie38651672010-03-30 05:34:13 +0000427 dev_priv->nfbdev = NULL;
428}
429
430void nouveau_fbcon_save_disable_accel(struct drm_device *dev)
431{
432 struct drm_nouveau_private *dev_priv = dev->dev_private;
433
434 dev_priv->nfbdev->saved_flags = dev_priv->nfbdev->helper.fbdev->flags;
435 dev_priv->nfbdev->helper.fbdev->flags |= FBINFO_HWACCEL_DISABLED;
436}
437
438void nouveau_fbcon_restore_accel(struct drm_device *dev)
439{
440 struct drm_nouveau_private *dev_priv = dev->dev_private;
441 dev_priv->nfbdev->helper.fbdev->flags = dev_priv->nfbdev->saved_flags;
442}
443
444void nouveau_fbcon_set_suspend(struct drm_device *dev, int state)
445{
446 struct drm_nouveau_private *dev_priv = dev->dev_private;
447 fb_set_suspend(dev_priv->nfbdev->helper.fbdev, state);
448}
449
450void nouveau_fbcon_zfill_all(struct drm_device *dev)
451{
452 struct drm_nouveau_private *dev_priv = dev->dev_private;
453 nouveau_fbcon_zfill(dev, dev_priv->nfbdev);
454}