blob: 22e83adcc930a26b73e9f6abc83d349adf61247e [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
Ben Skeggsceed5f32010-10-05 16:41:29 +100052static void
53nouveau_fbcon_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
54{
55 struct nouveau_fbdev *nfbdev = info->par;
56 struct drm_device *dev = nfbdev->dev;
57 struct drm_nouveau_private *dev_priv = dev->dev_private;
58 int ret;
59
60 if (info->state != FBINFO_STATE_RUNNING)
61 return;
62
63 ret = -ENODEV;
64 if (!in_interrupt() && !(info->flags & FBINFO_HWACCEL_DISABLED)) {
65 if (dev_priv->card_type < NV_50)
66 ret = nv04_fbcon_fillrect(info, rect);
67 else
68 if (dev_priv->card_type < NV_C0)
69 ret = nv50_fbcon_fillrect(info, rect);
70 }
71
72 if (ret == 0)
73 return;
74
75 if (ret != -ENODEV)
76 nouveau_fbcon_gpu_lockup(info);
77 cfb_fillrect(info, rect);
78}
79
80static void
81nouveau_fbcon_copyarea(struct fb_info *info, const struct fb_copyarea *image)
82{
83 struct nouveau_fbdev *nfbdev = info->par;
84 struct drm_device *dev = nfbdev->dev;
85 struct drm_nouveau_private *dev_priv = dev->dev_private;
86 int ret;
87
88 if (info->state != FBINFO_STATE_RUNNING)
89 return;
90
91 ret = -ENODEV;
92 if (!in_interrupt() && !(info->flags & FBINFO_HWACCEL_DISABLED)) {
93 if (dev_priv->card_type < NV_50)
94 ret = nv04_fbcon_copyarea(info, image);
95 else
96 if (dev_priv->card_type < NV_C0)
97 ret = nv50_fbcon_copyarea(info, image);
98 }
99
100 if (ret == 0)
101 return;
102
103 if (ret != -ENODEV)
104 nouveau_fbcon_gpu_lockup(info);
105 cfb_copyarea(info, image);
106}
107
108static void
109nouveau_fbcon_imageblit(struct fb_info *info, const struct fb_image *image)
110{
111 struct nouveau_fbdev *nfbdev = info->par;
112 struct drm_device *dev = nfbdev->dev;
113 struct drm_nouveau_private *dev_priv = dev->dev_private;
114 int ret;
115
116 if (info->state != FBINFO_STATE_RUNNING)
117 return;
118
119 ret = -ENODEV;
120 if (!in_interrupt() && !(info->flags & FBINFO_HWACCEL_DISABLED)) {
121 if (dev_priv->card_type < NV_50)
122 ret = nv04_fbcon_imageblit(info, image);
123 else
124 if (dev_priv->card_type < NV_C0)
125 ret = nv50_fbcon_imageblit(info, image);
126 }
127
128 if (ret == 0)
129 return;
130
131 if (ret != -ENODEV)
132 nouveau_fbcon_gpu_lockup(info);
133 cfb_imageblit(info, image);
134}
135
Ben Skeggs6ee73862009-12-11 19:24:15 +1000136static int
137nouveau_fbcon_sync(struct fb_info *info)
138{
Dave Airlie8be48d92010-03-30 05:34:14 +0000139 struct nouveau_fbdev *nfbdev = info->par;
140 struct drm_device *dev = nfbdev->dev;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000141 struct drm_nouveau_private *dev_priv = dev->dev_private;
142 struct nouveau_channel *chan = dev_priv->channel;
143 int ret, i;
144
Ben Skeggs0735f622009-12-16 14:28:55 +1000145 if (!chan || !chan->accel_done ||
Ben Skeggs6ee73862009-12-11 19:24:15 +1000146 info->state != FBINFO_STATE_RUNNING ||
147 info->flags & FBINFO_HWACCEL_DISABLED)
148 return 0;
149
150 if (RING_SPACE(chan, 4)) {
Marcin Slusarz846975a2010-01-04 19:25:09 +0100151 nouveau_fbcon_gpu_lockup(info);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000152 return 0;
153 }
154
155 BEGIN_RING(chan, 0, 0x0104, 1);
156 OUT_RING(chan, 0);
157 BEGIN_RING(chan, 0, 0x0100, 1);
158 OUT_RING(chan, 0);
159 nouveau_bo_wr32(chan->notifier_bo, chan->m2mf_ntfy + 3, 0xffffffff);
160 FIRE_RING(chan);
161
162 ret = -EBUSY;
163 for (i = 0; i < 100000; i++) {
164 if (!nouveau_bo_rd32(chan->notifier_bo, chan->m2mf_ntfy + 3)) {
165 ret = 0;
166 break;
167 }
168 DRM_UDELAY(1);
169 }
170
171 if (ret) {
Marcin Slusarz846975a2010-01-04 19:25:09 +0100172 nouveau_fbcon_gpu_lockup(info);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000173 return 0;
174 }
175
176 chan->accel_done = false;
177 return 0;
178}
179
180static struct fb_ops nouveau_fbcon_ops = {
181 .owner = THIS_MODULE,
182 .fb_check_var = drm_fb_helper_check_var,
183 .fb_set_par = drm_fb_helper_set_par,
Ben Skeggsceed5f32010-10-05 16:41:29 +1000184 .fb_fillrect = nouveau_fbcon_fillrect,
185 .fb_copyarea = nouveau_fbcon_copyarea,
186 .fb_imageblit = nouveau_fbcon_imageblit,
187 .fb_sync = nouveau_fbcon_sync,
188 .fb_pan_display = drm_fb_helper_pan_display,
189 .fb_blank = drm_fb_helper_blank,
190 .fb_setcmap = drm_fb_helper_setcmap,
191 .fb_debug_enter = drm_fb_helper_debug_enter,
192 .fb_debug_leave = drm_fb_helper_debug_leave,
193};
194
195static struct fb_ops nouveau_fbcon_sw_ops = {
196 .owner = THIS_MODULE,
197 .fb_check_var = drm_fb_helper_check_var,
198 .fb_set_par = drm_fb_helper_set_par,
Ben Skeggs6ee73862009-12-11 19:24:15 +1000199 .fb_fillrect = cfb_fillrect,
200 .fb_copyarea = cfb_copyarea,
201 .fb_imageblit = cfb_imageblit,
Marcin Kościelnicki126b5442010-01-27 14:03:18 +0000202 .fb_pan_display = drm_fb_helper_pan_display,
203 .fb_blank = drm_fb_helper_blank,
204 .fb_setcmap = drm_fb_helper_setcmap,
Chris Ballbe64c2bb2010-09-26 06:47:24 -0500205 .fb_debug_enter = drm_fb_helper_debug_enter,
206 .fb_debug_leave = drm_fb_helper_debug_leave,
Marcin Kościelnicki126b5442010-01-27 14:03:18 +0000207};
208
Ben Skeggs6ee73862009-12-11 19:24:15 +1000209static void nouveau_fbcon_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
210 u16 blue, int regno)
211{
212 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
213
214 nv_crtc->lut.r[regno] = red;
215 nv_crtc->lut.g[regno] = green;
216 nv_crtc->lut.b[regno] = blue;
217}
218
219static void nouveau_fbcon_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
220 u16 *blue, int regno)
221{
222 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
223
224 *red = nv_crtc->lut.r[regno];
225 *green = nv_crtc->lut.g[regno];
226 *blue = nv_crtc->lut.b[regno];
227}
228
Dave Airlie38651672010-03-30 05:34:13 +0000229static void
Dave Airlie8be48d92010-03-30 05:34:14 +0000230nouveau_fbcon_zfill(struct drm_device *dev, struct nouveau_fbdev *nfbdev)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000231{
Dave Airlie8be48d92010-03-30 05:34:14 +0000232 struct fb_info *info = nfbdev->helper.fbdev;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000233 struct fb_fillrect rect;
234
235 /* Clear the entire fbcon. The drm will program every connector
236 * with it's preferred mode. If the sizes differ, one display will
237 * quite likely have garbage around the console.
238 */
239 rect.dx = rect.dy = 0;
240 rect.width = info->var.xres_virtual;
241 rect.height = info->var.yres_virtual;
242 rect.color = 0;
243 rect.rop = ROP_COPY;
244 info->fbops->fb_fillrect(info, &rect);
245}
246
247static int
Dave Airlie8be48d92010-03-30 05:34:14 +0000248nouveau_fbcon_create(struct nouveau_fbdev *nfbdev,
249 struct drm_fb_helper_surface_size *sizes)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000250{
Dave Airlie8be48d92010-03-30 05:34:14 +0000251 struct drm_device *dev = nfbdev->dev;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000252 struct drm_nouveau_private *dev_priv = dev->dev_private;
253 struct fb_info *info;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000254 struct drm_framebuffer *fb;
255 struct nouveau_framebuffer *nouveau_fb;
256 struct nouveau_bo *nvbo;
257 struct drm_mode_fb_cmd mode_cmd;
Marcin Slusarz1471ca92010-05-16 17:27:03 +0200258 struct pci_dev *pdev = dev->pdev;
259 struct device *device = &pdev->dev;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000260 int size, ret;
261
Dave Airlie38651672010-03-30 05:34:13 +0000262 mode_cmd.width = sizes->surface_width;
263 mode_cmd.height = sizes->surface_height;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000264
Dave Airlie38651672010-03-30 05:34:13 +0000265 mode_cmd.bpp = sizes->surface_bpp;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000266 mode_cmd.pitch = mode_cmd.width * (mode_cmd.bpp >> 3);
Maarten Maathuis1c7059e2009-12-25 18:51:17 +0100267 mode_cmd.pitch = roundup(mode_cmd.pitch, 256);
Dave Airlie38651672010-03-30 05:34:13 +0000268 mode_cmd.depth = sizes->surface_depth;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000269
270 size = mode_cmd.pitch * mode_cmd.height;
Maarten Maathuis1c7059e2009-12-25 18:51:17 +0100271 size = roundup(size, PAGE_SIZE);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000272
273 ret = nouveau_gem_new(dev, dev_priv->channel, size, 0, TTM_PL_FLAG_VRAM,
274 0, 0x0000, false, true, &nvbo);
275 if (ret) {
276 NV_ERROR(dev, "failed to allocate framebuffer\n");
277 goto out;
278 }
279
280 ret = nouveau_bo_pin(nvbo, TTM_PL_FLAG_VRAM);
281 if (ret) {
282 NV_ERROR(dev, "failed to pin fb: %d\n", ret);
283 nouveau_bo_ref(NULL, &nvbo);
284 goto out;
285 }
286
287 ret = nouveau_bo_map(nvbo);
288 if (ret) {
289 NV_ERROR(dev, "failed to map fb: %d\n", ret);
290 nouveau_bo_unpin(nvbo);
291 nouveau_bo_ref(NULL, &nvbo);
292 goto out;
293 }
294
295 mutex_lock(&dev->struct_mutex);
296
Dave Airlie8be48d92010-03-30 05:34:14 +0000297 info = framebuffer_alloc(0, device);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000298 if (!info) {
299 ret = -ENOMEM;
300 goto out_unref;
301 }
302
Dave Airlie4abe3522010-03-30 05:34:18 +0000303 ret = fb_alloc_cmap(&info->cmap, 256, 0);
304 if (ret) {
305 ret = -ENOMEM;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000306 goto out_unref;
Dave Airlie4abe3522010-03-30 05:34:18 +0000307 }
308
Dave Airlie8be48d92010-03-30 05:34:14 +0000309 info->par = nfbdev;
Dave Airlie38651672010-03-30 05:34:13 +0000310
Dave Airlie8be48d92010-03-30 05:34:14 +0000311 nouveau_framebuffer_init(dev, &nfbdev->nouveau_fb, &mode_cmd, nvbo);
312
313 nouveau_fb = &nfbdev->nouveau_fb;
314 fb = &nouveau_fb->base;
315
Dave Airlie38651672010-03-30 05:34:13 +0000316 /* setup helper */
Dave Airlie8be48d92010-03-30 05:34:14 +0000317 nfbdev->helper.fb = fb;
318 nfbdev->helper.fbdev = info;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000319
320 strcpy(info->fix.id, "nouveaufb");
Marcin Kościelnickia32ed692010-01-26 14:00:42 +0000321 if (nouveau_nofbaccel)
322 info->flags = FBINFO_DEFAULT | FBINFO_HWACCEL_DISABLED;
323 else
324 info->flags = FBINFO_DEFAULT | FBINFO_HWACCEL_COPYAREA |
325 FBINFO_HWACCEL_FILLRECT |
326 FBINFO_HWACCEL_IMAGEBLIT;
Jesse Barnes8fd4bd22010-06-23 12:56:12 -0700327 info->flags |= FBINFO_CAN_FORCE_OUTPUT;
Ben Skeggsceed5f32010-10-05 16:41:29 +1000328 info->fbops = &nouveau_fbcon_sw_ops;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000329 info->fix.smem_start = dev->mode_config.fb_base + nvbo->bo.offset -
330 dev_priv->vm_vram_base;
331 info->fix.smem_len = size;
332
333 info->screen_base = nvbo_kmap_obj_iovirtual(nouveau_fb->nvbo);
334 info->screen_size = size;
335
336 drm_fb_helper_fill_fix(info, fb->pitch, fb->depth);
Dave Airlie8be48d92010-03-30 05:34:14 +0000337 drm_fb_helper_fill_var(info, &nfbdev->helper, sizes->fb_width, sizes->fb_height);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000338
339 /* FIXME: we really shouldn't expose mmio space at all */
Marcin Slusarz1471ca92010-05-16 17:27:03 +0200340 info->fix.mmio_start = pci_resource_start(pdev, 1);
341 info->fix.mmio_len = pci_resource_len(pdev, 1);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000342
343 /* Set aperture base/size for vesafb takeover */
Marcin Slusarz06415c52010-05-16 17:29:56 +0200344 info->apertures = dev_priv->apertures;
Marcin Slusarz1471ca92010-05-16 17:27:03 +0200345 if (!info->apertures) {
346 ret = -ENOMEM;
347 goto out_unref;
348 }
349
Ben Skeggs6ee73862009-12-11 19:24:15 +1000350 info->pixmap.size = 64*1024;
351 info->pixmap.buf_align = 8;
352 info->pixmap.access_align = 32;
353 info->pixmap.flags = FB_PIXMAP_SYSTEM;
354 info->pixmap.scan_align = 1;
355
Marcin Kościelnickia32ed692010-01-26 14:00:42 +0000356 if (dev_priv->channel && !nouveau_nofbaccel) {
Ben Skeggsceed5f32010-10-05 16:41:29 +1000357 ret = -ENODEV;
358 if (dev_priv->card_type < NV_50)
359 ret = nv04_fbcon_accel_init(info);
360 else
361 if (dev_priv->card_type < NV_C0)
362 ret = nv50_fbcon_accel_init(info);
363
364 if (ret == 0)
365 info->fbops = &nouveau_fbcon_ops;
Ben Skeggs0735f622009-12-16 14:28:55 +1000366 }
Ben Skeggs6ee73862009-12-11 19:24:15 +1000367
Dave Airlie8be48d92010-03-30 05:34:14 +0000368 nouveau_fbcon_zfill(dev, nfbdev);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000369
370 /* To allow resizeing without swapping buffers */
371 NV_INFO(dev, "allocated %dx%d fb: 0x%lx, bo %p\n",
372 nouveau_fb->base.width,
373 nouveau_fb->base.height,
374 nvbo->bo.offset, nvbo);
375
376 mutex_unlock(&dev->struct_mutex);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000377 vga_switcheroo_client_fb_set(dev->pdev, info);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000378 return 0;
379
380out_unref:
381 mutex_unlock(&dev->struct_mutex);
382out:
383 return ret;
384}
385
Dave Airlie38651672010-03-30 05:34:13 +0000386static int
Dave Airlie8be48d92010-03-30 05:34:14 +0000387nouveau_fbcon_find_or_create_single(struct drm_fb_helper *helper,
388 struct drm_fb_helper_surface_size *sizes)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000389{
Dave Airlie8be48d92010-03-30 05:34:14 +0000390 struct nouveau_fbdev *nfbdev = (struct nouveau_fbdev *)helper;
Dave Airlie38651672010-03-30 05:34:13 +0000391 int new_fb = 0;
392 int ret;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000393
Dave Airlie8be48d92010-03-30 05:34:14 +0000394 if (!helper->fb) {
395 ret = nouveau_fbcon_create(nfbdev, sizes);
Dave Airlie38651672010-03-30 05:34:13 +0000396 if (ret)
397 return ret;
Dave Airlie38651672010-03-30 05:34:13 +0000398 new_fb = 1;
Dave Airlie38651672010-03-30 05:34:13 +0000399 }
Dave Airlie38651672010-03-30 05:34:13 +0000400 return new_fb;
401}
402
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000403void
404nouveau_fbcon_output_poll_changed(struct drm_device *dev)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000405{
Dave Airlie4abe3522010-03-30 05:34:18 +0000406 struct drm_nouveau_private *dev_priv = dev->dev_private;
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000407 drm_fb_helper_hotplug_event(&dev_priv->nfbdev->helper);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000408}
409
Francisco Jerez6e86e042010-07-03 18:36:39 +0200410static int
Dave Airlie8be48d92010-03-30 05:34:14 +0000411nouveau_fbcon_destroy(struct drm_device *dev, struct nouveau_fbdev *nfbdev)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000412{
Dave Airlie8be48d92010-03-30 05:34:14 +0000413 struct nouveau_framebuffer *nouveau_fb = &nfbdev->nouveau_fb;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000414 struct fb_info *info;
415
Dave Airlie8be48d92010-03-30 05:34:14 +0000416 if (nfbdev->helper.fbdev) {
417 info = nfbdev->helper.fbdev;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000418 unregister_framebuffer(info);
Dave Airlie4abe3522010-03-30 05:34:18 +0000419 if (info->cmap.len)
420 fb_dealloc_cmap(&info->cmap);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000421 framebuffer_release(info);
422 }
423
Dave Airlie8be48d92010-03-30 05:34:14 +0000424 if (nouveau_fb->nvbo) {
425 nouveau_bo_unmap(nouveau_fb->nvbo);
426 drm_gem_object_unreference_unlocked(nouveau_fb->nvbo->gem);
427 nouveau_fb->nvbo = NULL;
428 }
Dave Airlie4abe3522010-03-30 05:34:18 +0000429 drm_fb_helper_fini(&nfbdev->helper);
Dave Airlie38651672010-03-30 05:34:13 +0000430 drm_framebuffer_cleanup(&nouveau_fb->base);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000431 return 0;
432}
Marcin Slusarz846975a2010-01-04 19:25:09 +0100433
434void nouveau_fbcon_gpu_lockup(struct fb_info *info)
435{
Dave Airlie8be48d92010-03-30 05:34:14 +0000436 struct nouveau_fbdev *nfbdev = info->par;
437 struct drm_device *dev = nfbdev->dev;
Marcin Slusarz846975a2010-01-04 19:25:09 +0100438
439 NV_ERROR(dev, "GPU lockup - switching to software fbcon\n");
440 info->flags |= FBINFO_HWACCEL_DISABLED;
441}
Dave Airlie38651672010-03-30 05:34:13 +0000442
Dave Airlie4abe3522010-03-30 05:34:18 +0000443static struct drm_fb_helper_funcs nouveau_fbcon_helper_funcs = {
444 .gamma_set = nouveau_fbcon_gamma_set,
445 .gamma_get = nouveau_fbcon_gamma_get,
446 .fb_probe = nouveau_fbcon_find_or_create_single,
Dave Airlie4abe3522010-03-30 05:34:18 +0000447};
448
449
Dave Airlie38651672010-03-30 05:34:13 +0000450int nouveau_fbcon_init(struct drm_device *dev)
451{
Dave Airlie8be48d92010-03-30 05:34:14 +0000452 struct drm_nouveau_private *dev_priv = dev->dev_private;
453 struct nouveau_fbdev *nfbdev;
Chris Wilson5a793952010-06-06 10:50:03 +0100454 int ret;
Dave Airlie8be48d92010-03-30 05:34:14 +0000455
456 nfbdev = kzalloc(sizeof(struct nouveau_fbdev), GFP_KERNEL);
457 if (!nfbdev)
458 return -ENOMEM;
459
460 nfbdev->dev = dev;
461 dev_priv->nfbdev = nfbdev;
Dave Airlie4abe3522010-03-30 05:34:18 +0000462 nfbdev->helper.funcs = &nouveau_fbcon_helper_funcs;
Dave Airlie8be48d92010-03-30 05:34:14 +0000463
Francisco Jerez77144552010-07-10 17:37:00 +0200464 ret = drm_fb_helper_init(dev, &nfbdev->helper,
465 nv_two_heads(dev) ? 2 : 1, 4);
Chris Wilson5a793952010-06-06 10:50:03 +0100466 if (ret) {
467 kfree(nfbdev);
468 return ret;
469 }
470
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000471 drm_fb_helper_single_add_all_connectors(&nfbdev->helper);
Dave Airlie4abe3522010-03-30 05:34:18 +0000472 drm_fb_helper_initial_config(&nfbdev->helper, 32);
Dave Airlie38651672010-03-30 05:34:13 +0000473 return 0;
474}
475
476void nouveau_fbcon_fini(struct drm_device *dev)
477{
478 struct drm_nouveau_private *dev_priv = dev->dev_private;
Dave Airlie8be48d92010-03-30 05:34:14 +0000479
480 if (!dev_priv->nfbdev)
481 return;
482
Dave Airlie38651672010-03-30 05:34:13 +0000483 nouveau_fbcon_destroy(dev, dev_priv->nfbdev);
Dave Airlie8be48d92010-03-30 05:34:14 +0000484 kfree(dev_priv->nfbdev);
Dave Airlie38651672010-03-30 05:34:13 +0000485 dev_priv->nfbdev = NULL;
486}
487
488void nouveau_fbcon_save_disable_accel(struct drm_device *dev)
489{
490 struct drm_nouveau_private *dev_priv = dev->dev_private;
491
492 dev_priv->nfbdev->saved_flags = dev_priv->nfbdev->helper.fbdev->flags;
493 dev_priv->nfbdev->helper.fbdev->flags |= FBINFO_HWACCEL_DISABLED;
494}
495
496void nouveau_fbcon_restore_accel(struct drm_device *dev)
497{
498 struct drm_nouveau_private *dev_priv = dev->dev_private;
499 dev_priv->nfbdev->helper.fbdev->flags = dev_priv->nfbdev->saved_flags;
500}
501
502void nouveau_fbcon_set_suspend(struct drm_device *dev, int state)
503{
504 struct drm_nouveau_private *dev_priv = dev->dev_private;
505 fb_set_suspend(dev_priv->nfbdev->helper.fbdev, state);
506}
507
508void nouveau_fbcon_zfill_all(struct drm_device *dev)
509{
510 struct drm_nouveau_private *dev_priv = dev->dev_private;
511 nouveau_fbcon_zfill(dev, dev_priv->nfbdev);
512}