Merge branch 'merge' of git://git.secretlab.ca/git/linux-2.6
[pandora-kernel.git] / drivers / gpu / drm / nouveau / nouveau_drv.c
1 /*
2  * Copyright 2005 Stephane Marchesin.
3  * All Rights Reserved.
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice (including the next
13  * paragraph) shall be included in all copies or substantial portions of the
14  * Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19  * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22  * OTHER DEALINGS IN THE SOFTWARE.
23  */
24
25 #include <linux/console.h>
26
27 #include "drmP.h"
28 #include "drm.h"
29 #include "drm_crtc_helper.h"
30 #include "nouveau_drv.h"
31 #include "nouveau_hw.h"
32 #include "nouveau_fb.h"
33 #include "nouveau_fbcon.h"
34 #include "nv50_display.h"
35
36 #include "drm_pciids.h"
37
38 MODULE_PARM_DESC(ctxfw, "Use external firmware blob for grctx init (NV40)");
39 int nouveau_ctxfw = 0;
40 module_param_named(ctxfw, nouveau_ctxfw, int, 0400);
41
42 MODULE_PARM_DESC(noagp, "Disable AGP");
43 int nouveau_noagp;
44 module_param_named(noagp, nouveau_noagp, int, 0400);
45
46 MODULE_PARM_DESC(modeset, "Enable kernel modesetting");
47 static int nouveau_modeset = -1; /* kms */
48 module_param_named(modeset, nouveau_modeset, int, 0400);
49
50 MODULE_PARM_DESC(vbios, "Override default VBIOS location");
51 char *nouveau_vbios;
52 module_param_named(vbios, nouveau_vbios, charp, 0400);
53
54 MODULE_PARM_DESC(vram_pushbuf, "Force DMA push buffers to be in VRAM");
55 int nouveau_vram_pushbuf;
56 module_param_named(vram_pushbuf, nouveau_vram_pushbuf, int, 0400);
57
58 MODULE_PARM_DESC(vram_notify, "Force DMA notifiers to be in VRAM");
59 int nouveau_vram_notify = 1;
60 module_param_named(vram_notify, nouveau_vram_notify, int, 0400);
61
62 MODULE_PARM_DESC(duallink, "Allow dual-link TMDS (>=GeForce 8)");
63 int nouveau_duallink = 1;
64 module_param_named(duallink, nouveau_duallink, int, 0400);
65
66 MODULE_PARM_DESC(uscript_lvds, "LVDS output script table ID (>=GeForce 8)");
67 int nouveau_uscript_lvds = -1;
68 module_param_named(uscript_lvds, nouveau_uscript_lvds, int, 0400);
69
70 MODULE_PARM_DESC(uscript_tmds, "TMDS output script table ID (>=GeForce 8)");
71 int nouveau_uscript_tmds = -1;
72 module_param_named(uscript_tmds, nouveau_uscript_tmds, int, 0400);
73
74 MODULE_PARM_DESC(ignorelid, "Ignore ACPI lid status");
75 int nouveau_ignorelid = 0;
76 module_param_named(ignorelid, nouveau_ignorelid, int, 0400);
77
78 MODULE_PARM_DESC(noaccel, "Disable all acceleration");
79 int nouveau_noaccel = 0;
80 module_param_named(noaccel, nouveau_noaccel, int, 0400);
81
82 MODULE_PARM_DESC(nofbaccel, "Disable fbcon acceleration");
83 int nouveau_nofbaccel = 0;
84 module_param_named(nofbaccel, nouveau_nofbaccel, int, 0400);
85
86 MODULE_PARM_DESC(override_conntype, "Ignore DCB connector type");
87 int nouveau_override_conntype = 0;
88 module_param_named(override_conntype, nouveau_override_conntype, int, 0400);
89
90 MODULE_PARM_DESC(tv_disable, "Disable TV-out detection\n");
91 int nouveau_tv_disable = 0;
92 module_param_named(tv_disable, nouveau_tv_disable, int, 0400);
93
94 MODULE_PARM_DESC(tv_norm, "Default TV norm.\n"
95                  "\t\tSupported: PAL, PAL-M, PAL-N, PAL-Nc, NTSC-M, NTSC-J,\n"
96                  "\t\t\thd480i, hd480p, hd576i, hd576p, hd720p, hd1080i.\n"
97                  "\t\tDefault: PAL\n"
98                  "\t\t*NOTE* Ignored for cards with external TV encoders.");
99 char *nouveau_tv_norm;
100 module_param_named(tv_norm, nouveau_tv_norm, charp, 0400);
101
102 MODULE_PARM_DESC(reg_debug, "Register access debug bitmask:\n"
103                 "\t\t0x1 mc, 0x2 video, 0x4 fb, 0x8 extdev,\n"
104                 "\t\t0x10 crtc, 0x20 ramdac, 0x40 vgacrtc, 0x80 rmvio,\n"
105                 "\t\t0x100 vgaattr, 0x200 EVO (G80+). ");
106 int nouveau_reg_debug;
107 module_param_named(reg_debug, nouveau_reg_debug, int, 0600);
108
109 int nouveau_fbpercrtc;
110 #if 0
111 module_param_named(fbpercrtc, nouveau_fbpercrtc, int, 0400);
112 #endif
113
114 static struct pci_device_id pciidlist[] = {
115         {
116                 PCI_DEVICE(PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID),
117                 .class = PCI_BASE_CLASS_DISPLAY << 16,
118                 .class_mask  = 0xff << 16,
119         },
120         {
121                 PCI_DEVICE(PCI_VENDOR_ID_NVIDIA_SGS, PCI_ANY_ID),
122                 .class = PCI_BASE_CLASS_DISPLAY << 16,
123                 .class_mask  = 0xff << 16,
124         },
125         {}
126 };
127
128 MODULE_DEVICE_TABLE(pci, pciidlist);
129
130 static struct drm_driver driver;
131
132 static int __devinit
133 nouveau_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
134 {
135         return drm_get_dev(pdev, ent, &driver);
136 }
137
138 static void
139 nouveau_pci_remove(struct pci_dev *pdev)
140 {
141         struct drm_device *dev = pci_get_drvdata(pdev);
142
143         drm_put_dev(dev);
144 }
145
146 int
147 nouveau_pci_suspend(struct pci_dev *pdev, pm_message_t pm_state)
148 {
149         struct drm_device *dev = pci_get_drvdata(pdev);
150         struct drm_nouveau_private *dev_priv = dev->dev_private;
151         struct nouveau_instmem_engine *pinstmem = &dev_priv->engine.instmem;
152         struct nouveau_pgraph_engine *pgraph = &dev_priv->engine.graph;
153         struct nouveau_fifo_engine *pfifo = &dev_priv->engine.fifo;
154         struct nouveau_channel *chan;
155         struct drm_crtc *crtc;
156         int ret, i;
157
158         if (!drm_core_check_feature(dev, DRIVER_MODESET))
159                 return -ENODEV;
160
161         if (pm_state.event == PM_EVENT_PRETHAW)
162                 return 0;
163
164         NV_INFO(dev, "Disabling fbcon acceleration...\n");
165         nouveau_fbcon_save_disable_accel(dev);
166
167         NV_INFO(dev, "Unpinning framebuffer(s)...\n");
168         list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
169                 struct nouveau_framebuffer *nouveau_fb;
170
171                 nouveau_fb = nouveau_framebuffer(crtc->fb);
172                 if (!nouveau_fb || !nouveau_fb->nvbo)
173                         continue;
174
175                 nouveau_bo_unpin(nouveau_fb->nvbo);
176         }
177
178         NV_INFO(dev, "Evicting buffers...\n");
179         ttm_bo_evict_mm(&dev_priv->ttm.bdev, TTM_PL_VRAM);
180
181         NV_INFO(dev, "Idling channels...\n");
182         for (i = 0; i < pfifo->channels; i++) {
183                 struct nouveau_fence *fence = NULL;
184
185                 chan = dev_priv->fifos[i];
186                 if (!chan || (dev_priv->card_type >= NV_50 &&
187                               chan == dev_priv->fifos[0]))
188                         continue;
189
190                 ret = nouveau_fence_new(chan, &fence, true);
191                 if (ret == 0) {
192                         ret = nouveau_fence_wait(fence, NULL, false, false);
193                         nouveau_fence_unref((void *)&fence);
194                 }
195
196                 if (ret) {
197                         NV_ERROR(dev, "Failed to idle channel %d for suspend\n",
198                                  chan->id);
199                 }
200         }
201
202         pgraph->fifo_access(dev, false);
203         nouveau_wait_for_idle(dev);
204         pfifo->reassign(dev, false);
205         pfifo->disable(dev);
206         pfifo->unload_context(dev);
207         pgraph->unload_context(dev);
208
209         NV_INFO(dev, "Suspending GPU objects...\n");
210         ret = nouveau_gpuobj_suspend(dev);
211         if (ret) {
212                 NV_ERROR(dev, "... failed: %d\n", ret);
213                 goto out_abort;
214         }
215
216         ret = pinstmem->suspend(dev);
217         if (ret) {
218                 NV_ERROR(dev, "... failed: %d\n", ret);
219                 nouveau_gpuobj_suspend_cleanup(dev);
220                 goto out_abort;
221         }
222
223         NV_INFO(dev, "And we're gone!\n");
224         pci_save_state(pdev);
225         if (pm_state.event == PM_EVENT_SUSPEND) {
226                 pci_disable_device(pdev);
227                 pci_set_power_state(pdev, PCI_D3hot);
228         }
229
230         acquire_console_sem();
231         nouveau_fbcon_set_suspend(dev, 1);
232         release_console_sem();
233         nouveau_fbcon_restore_accel(dev);
234         return 0;
235
236 out_abort:
237         NV_INFO(dev, "Re-enabling acceleration..\n");
238         pfifo->enable(dev);
239         pfifo->reassign(dev, true);
240         pgraph->fifo_access(dev, true);
241         return ret;
242 }
243
244 int
245 nouveau_pci_resume(struct pci_dev *pdev)
246 {
247         struct drm_device *dev = pci_get_drvdata(pdev);
248         struct drm_nouveau_private *dev_priv = dev->dev_private;
249         struct nouveau_engine *engine = &dev_priv->engine;
250         struct drm_crtc *crtc;
251         int ret, i;
252
253         if (!drm_core_check_feature(dev, DRIVER_MODESET))
254                 return -ENODEV;
255
256         nouveau_fbcon_save_disable_accel(dev);
257
258         NV_INFO(dev, "We're back, enabling device...\n");
259         pci_set_power_state(pdev, PCI_D0);
260         pci_restore_state(pdev);
261         if (pci_enable_device(pdev))
262                 return -1;
263         pci_set_master(dev->pdev);
264
265         NV_INFO(dev, "POSTing device...\n");
266         ret = nouveau_run_vbios_init(dev);
267         if (ret)
268                 return ret;
269
270         if (dev_priv->gart_info.type == NOUVEAU_GART_AGP) {
271                 ret = nouveau_mem_init_agp(dev);
272                 if (ret) {
273                         NV_ERROR(dev, "error reinitialising AGP: %d\n", ret);
274                         return ret;
275                 }
276         }
277
278         NV_INFO(dev, "Reinitialising engines...\n");
279         engine->instmem.resume(dev);
280         engine->mc.init(dev);
281         engine->timer.init(dev);
282         engine->fb.init(dev);
283         engine->graph.init(dev);
284         engine->fifo.init(dev);
285
286         NV_INFO(dev, "Restoring GPU objects...\n");
287         nouveau_gpuobj_resume(dev);
288
289         nouveau_irq_postinstall(dev);
290
291         /* Re-write SKIPS, they'll have been lost over the suspend */
292         if (nouveau_vram_pushbuf) {
293                 struct nouveau_channel *chan;
294                 int j;
295
296                 for (i = 0; i < dev_priv->engine.fifo.channels; i++) {
297                         chan = dev_priv->fifos[i];
298                         if (!chan || !chan->pushbuf_bo)
299                                 continue;
300
301                         for (j = 0; j < NOUVEAU_DMA_SKIPS; j++)
302                                 nouveau_bo_wr32(chan->pushbuf_bo, i, 0);
303                 }
304         }
305
306         NV_INFO(dev, "Restoring mode...\n");
307         list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
308                 struct nouveau_framebuffer *nouveau_fb;
309
310                 nouveau_fb = nouveau_framebuffer(crtc->fb);
311                 if (!nouveau_fb || !nouveau_fb->nvbo)
312                         continue;
313
314                 nouveau_bo_pin(nouveau_fb->nvbo, TTM_PL_FLAG_VRAM);
315         }
316
317         if (dev_priv->card_type < NV_50) {
318                 nv04_display_restore(dev);
319                 NVLockVgaCrtcs(dev, false);
320         } else
321                 nv50_display_init(dev);
322
323         /* Force CLUT to get re-loaded during modeset */
324         list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
325                 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
326
327                 nv_crtc->lut.depth = 0;
328         }
329
330         acquire_console_sem();
331         nouveau_fbcon_set_suspend(dev, 0);
332         release_console_sem();
333
334         nouveau_fbcon_zfill_all(dev);
335
336         drm_helper_resume_force_mode(dev);
337
338         nouveau_fbcon_restore_accel(dev);
339         return 0;
340 }
341
342 static struct drm_driver driver = {
343         .driver_features =
344                 DRIVER_USE_AGP | DRIVER_PCI_DMA | DRIVER_SG |
345                 DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED | DRIVER_GEM,
346         .load = nouveau_load,
347         .firstopen = nouveau_firstopen,
348         .lastclose = nouveau_lastclose,
349         .unload = nouveau_unload,
350         .preclose = nouveau_preclose,
351 #if defined(CONFIG_DRM_NOUVEAU_DEBUG)
352         .debugfs_init = nouveau_debugfs_init,
353         .debugfs_cleanup = nouveau_debugfs_takedown,
354 #endif
355         .irq_preinstall = nouveau_irq_preinstall,
356         .irq_postinstall = nouveau_irq_postinstall,
357         .irq_uninstall = nouveau_irq_uninstall,
358         .irq_handler = nouveau_irq_handler,
359         .reclaim_buffers = drm_core_reclaim_buffers,
360         .get_map_ofs = drm_core_get_map_ofs,
361         .get_reg_ofs = drm_core_get_reg_ofs,
362         .ioctls = nouveau_ioctls,
363         .fops = {
364                 .owner = THIS_MODULE,
365                 .open = drm_open,
366                 .release = drm_release,
367                 .unlocked_ioctl = drm_ioctl,
368                 .mmap = nouveau_ttm_mmap,
369                 .poll = drm_poll,
370                 .fasync = drm_fasync,
371 #if defined(CONFIG_COMPAT)
372                 .compat_ioctl = nouveau_compat_ioctl,
373 #endif
374         },
375         .pci_driver = {
376                 .name = DRIVER_NAME,
377                 .id_table = pciidlist,
378                 .probe = nouveau_pci_probe,
379                 .remove = nouveau_pci_remove,
380                 .suspend = nouveau_pci_suspend,
381                 .resume = nouveau_pci_resume
382         },
383
384         .gem_init_object = nouveau_gem_object_new,
385         .gem_free_object = nouveau_gem_object_del,
386
387         .name = DRIVER_NAME,
388         .desc = DRIVER_DESC,
389 #ifdef GIT_REVISION
390         .date = GIT_REVISION,
391 #else
392         .date = DRIVER_DATE,
393 #endif
394         .major = DRIVER_MAJOR,
395         .minor = DRIVER_MINOR,
396         .patchlevel = DRIVER_PATCHLEVEL,
397 };
398
399 static int __init nouveau_init(void)
400 {
401         driver.num_ioctls = nouveau_max_ioctl;
402
403         if (nouveau_modeset == -1) {
404 #ifdef CONFIG_VGA_CONSOLE
405                 if (vgacon_text_force())
406                         nouveau_modeset = 0;
407                 else
408 #endif
409                         nouveau_modeset = 1;
410         }
411
412         if (nouveau_modeset == 1) {
413                 driver.driver_features |= DRIVER_MODESET;
414                 nouveau_register_dsm_handler();
415         }
416
417         return drm_init(&driver);
418 }
419
420 static void __exit nouveau_exit(void)
421 {
422         drm_exit(&driver);
423         nouveau_unregister_dsm_handler();
424 }
425
426 module_init(nouveau_init);
427 module_exit(nouveau_exit);
428
429 MODULE_AUTHOR(DRIVER_AUTHOR);
430 MODULE_DESCRIPTION(DRIVER_DESC);
431 MODULE_LICENSE("GPL and additional rights");