blob: b03bb6d5b987668444fba47770759b7124525f02 [file] [log] [blame]
Ben Skeggs6ee73862009-12-11 19:24:15 +10001/*
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
Francisco Jerezde5899b2010-09-08 02:28:23 +020038MODULE_PARM_DESC(agpmode, "AGP mode (0 to disable AGP)");
39int nouveau_agpmode = -1;
40module_param_named(agpmode, nouveau_agpmode, int, 0400);
Ben Skeggs6ee73862009-12-11 19:24:15 +100041
42MODULE_PARM_DESC(modeset, "Enable kernel modesetting");
43static int nouveau_modeset = -1; /* kms */
44module_param_named(modeset, nouveau_modeset, int, 0400);
45
46MODULE_PARM_DESC(vbios, "Override default VBIOS location");
47char *nouveau_vbios;
48module_param_named(vbios, nouveau_vbios, charp, 0400);
49
50MODULE_PARM_DESC(vram_pushbuf, "Force DMA push buffers to be in VRAM");
51int nouveau_vram_pushbuf;
52module_param_named(vram_pushbuf, nouveau_vram_pushbuf, int, 0400);
53
54MODULE_PARM_DESC(vram_notify, "Force DMA notifiers to be in VRAM");
Ben Skeggs2dfe36b2010-06-01 09:47:43 +100055int nouveau_vram_notify = 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +100056module_param_named(vram_notify, nouveau_vram_notify, int, 0400);
57
58MODULE_PARM_DESC(duallink, "Allow dual-link TMDS (>=GeForce 8)");
59int nouveau_duallink = 1;
60module_param_named(duallink, nouveau_duallink, int, 0400);
61
62MODULE_PARM_DESC(uscript_lvds, "LVDS output script table ID (>=GeForce 8)");
63int nouveau_uscript_lvds = -1;
64module_param_named(uscript_lvds, nouveau_uscript_lvds, int, 0400);
65
66MODULE_PARM_DESC(uscript_tmds, "TMDS output script table ID (>=GeForce 8)");
67int nouveau_uscript_tmds = -1;
68module_param_named(uscript_tmds, nouveau_uscript_tmds, int, 0400);
69
Ben Skeggsa1470892010-01-18 11:42:37 +100070MODULE_PARM_DESC(ignorelid, "Ignore ACPI lid status");
71int nouveau_ignorelid = 0;
72module_param_named(ignorelid, nouveau_ignorelid, int, 0400);
73
Marcin Kościelnicki81e2d422010-02-25 00:54:04 +000074MODULE_PARM_DESC(noaccel, "Disable all acceleration");
Marcin Kościelnickia32ed692010-01-26 14:00:42 +000075int nouveau_noaccel = 0;
76module_param_named(noaccel, nouveau_noaccel, int, 0400);
77
Marcin Kościelnicki81e2d422010-02-25 00:54:04 +000078MODULE_PARM_DESC(nofbaccel, "Disable fbcon acceleration");
Marcin Kościelnickia32ed692010-01-26 14:00:42 +000079int nouveau_nofbaccel = 0;
80module_param_named(nofbaccel, nouveau_nofbaccel, int, 0400);
81
Ben Skeggsda647d52010-03-04 12:00:39 +100082MODULE_PARM_DESC(override_conntype, "Ignore DCB connector type");
83int nouveau_override_conntype = 0;
84module_param_named(override_conntype, nouveau_override_conntype, int, 0400);
85
Ben Skeggsf4053502010-03-15 09:43:51 +100086MODULE_PARM_DESC(tv_disable, "Disable TV-out detection\n");
87int nouveau_tv_disable = 0;
88module_param_named(tv_disable, nouveau_tv_disable, int, 0400);
89
Ben Skeggs6ee73862009-12-11 19:24:15 +100090MODULE_PARM_DESC(tv_norm, "Default TV norm.\n"
91 "\t\tSupported: PAL, PAL-M, PAL-N, PAL-Nc, NTSC-M, NTSC-J,\n"
92 "\t\t\thd480i, hd480p, hd576i, hd576p, hd720p, hd1080i.\n"
93 "\t\tDefault: PAL\n"
94 "\t\t*NOTE* Ignored for cards with external TV encoders.");
95char *nouveau_tv_norm;
96module_param_named(tv_norm, nouveau_tv_norm, charp, 0400);
97
98MODULE_PARM_DESC(reg_debug, "Register access debug bitmask:\n"
99 "\t\t0x1 mc, 0x2 video, 0x4 fb, 0x8 extdev,\n"
100 "\t\t0x10 crtc, 0x20 ramdac, 0x40 vgacrtc, 0x80 rmvio,\n"
101 "\t\t0x100 vgaattr, 0x200 EVO (G80+). ");
102int nouveau_reg_debug;
103module_param_named(reg_debug, nouveau_reg_debug, int, 0600);
104
Ben Skeggs6f876982010-09-16 16:47:14 +1000105MODULE_PARM_DESC(perflvl, "Performance level (default: boot)\n");
106char *nouveau_perflvl;
107module_param_named(perflvl, nouveau_perflvl, charp, 0400);
108
109MODULE_PARM_DESC(perflvl_wr, "Allow perflvl changes (warning: dangerous!)\n");
110int nouveau_perflvl_wr;
111module_param_named(perflvl_wr, nouveau_perflvl_wr, int, 0400);
112
Ben Skeggs6ee73862009-12-11 19:24:15 +1000113int nouveau_fbpercrtc;
114#if 0
115module_param_named(fbpercrtc, nouveau_fbpercrtc, int, 0400);
116#endif
117
118static struct pci_device_id pciidlist[] = {
119 {
120 PCI_DEVICE(PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID),
121 .class = PCI_BASE_CLASS_DISPLAY << 16,
122 .class_mask = 0xff << 16,
123 },
124 {
125 PCI_DEVICE(PCI_VENDOR_ID_NVIDIA_SGS, PCI_ANY_ID),
126 .class = PCI_BASE_CLASS_DISPLAY << 16,
127 .class_mask = 0xff << 16,
128 },
129 {}
130};
131
132MODULE_DEVICE_TABLE(pci, pciidlist);
133
134static struct drm_driver driver;
135
136static int __devinit
137nouveau_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
138{
Jordan Crousedcdb1672010-05-27 13:40:25 -0600139 return drm_get_pci_dev(pdev, ent, &driver);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000140}
141
142static void
143nouveau_pci_remove(struct pci_dev *pdev)
144{
145 struct drm_device *dev = pci_get_drvdata(pdev);
146
147 drm_put_dev(dev);
148}
149
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000150int
Ben Skeggs6ee73862009-12-11 19:24:15 +1000151nouveau_pci_suspend(struct pci_dev *pdev, pm_message_t pm_state)
152{
153 struct drm_device *dev = pci_get_drvdata(pdev);
154 struct drm_nouveau_private *dev_priv = dev->dev_private;
155 struct nouveau_instmem_engine *pinstmem = &dev_priv->engine.instmem;
156 struct nouveau_pgraph_engine *pgraph = &dev_priv->engine.graph;
157 struct nouveau_fifo_engine *pfifo = &dev_priv->engine.fifo;
158 struct nouveau_channel *chan;
159 struct drm_crtc *crtc;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000160 int ret, i;
161
Ben Skeggs6ee73862009-12-11 19:24:15 +1000162 if (pm_state.event == PM_EVENT_PRETHAW)
163 return 0;
164
Maarten Maathuis81441572010-02-21 13:28:35 +0100165 NV_INFO(dev, "Disabling fbcon acceleration...\n");
Dave Airlie38651672010-03-30 05:34:13 +0000166 nouveau_fbcon_save_disable_accel(dev);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000167
Maarten Maathuis81441572010-02-21 13:28:35 +0100168 NV_INFO(dev, "Unpinning framebuffer(s)...\n");
Ben Skeggs6ee73862009-12-11 19:24:15 +1000169 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
170 struct nouveau_framebuffer *nouveau_fb;
171
172 nouveau_fb = nouveau_framebuffer(crtc->fb);
173 if (!nouveau_fb || !nouveau_fb->nvbo)
174 continue;
175
176 nouveau_bo_unpin(nouveau_fb->nvbo);
177 }
178
Maarten Maathuisb334f2b2010-05-09 14:49:52 +0200179 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
180 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
181
182 nouveau_bo_unmap(nv_crtc->cursor.nvbo);
183 nouveau_bo_unpin(nv_crtc->cursor.nvbo);
184 }
185
Ben Skeggs6ee73862009-12-11 19:24:15 +1000186 NV_INFO(dev, "Evicting buffers...\n");
187 ttm_bo_evict_mm(&dev_priv->ttm.bdev, TTM_PL_VRAM);
188
189 NV_INFO(dev, "Idling channels...\n");
190 for (i = 0; i < pfifo->channels; i++) {
191 struct nouveau_fence *fence = NULL;
192
193 chan = dev_priv->fifos[i];
194 if (!chan || (dev_priv->card_type >= NV_50 &&
195 chan == dev_priv->fifos[0]))
196 continue;
197
198 ret = nouveau_fence_new(chan, &fence, true);
199 if (ret == 0) {
200 ret = nouveau_fence_wait(fence, NULL, false, false);
201 nouveau_fence_unref((void *)&fence);
202 }
203
204 if (ret) {
205 NV_ERROR(dev, "Failed to idle channel %d for suspend\n",
206 chan->id);
207 }
208 }
209
210 pgraph->fifo_access(dev, false);
211 nouveau_wait_for_idle(dev);
212 pfifo->reassign(dev, false);
213 pfifo->disable(dev);
214 pfifo->unload_context(dev);
215 pgraph->unload_context(dev);
216
217 NV_INFO(dev, "Suspending GPU objects...\n");
218 ret = nouveau_gpuobj_suspend(dev);
219 if (ret) {
220 NV_ERROR(dev, "... failed: %d\n", ret);
221 goto out_abort;
222 }
223
224 ret = pinstmem->suspend(dev);
225 if (ret) {
226 NV_ERROR(dev, "... failed: %d\n", ret);
227 nouveau_gpuobj_suspend_cleanup(dev);
228 goto out_abort;
229 }
230
231 NV_INFO(dev, "And we're gone!\n");
232 pci_save_state(pdev);
233 if (pm_state.event == PM_EVENT_SUSPEND) {
234 pci_disable_device(pdev);
235 pci_set_power_state(pdev, PCI_D3hot);
236 }
237
238 acquire_console_sem();
Dave Airlie38651672010-03-30 05:34:13 +0000239 nouveau_fbcon_set_suspend(dev, 1);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000240 release_console_sem();
Dave Airlie38651672010-03-30 05:34:13 +0000241 nouveau_fbcon_restore_accel(dev);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000242 return 0;
243
244out_abort:
245 NV_INFO(dev, "Re-enabling acceleration..\n");
246 pfifo->enable(dev);
247 pfifo->reassign(dev, true);
248 pgraph->fifo_access(dev, true);
249 return ret;
250}
251
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000252int
Ben Skeggs6ee73862009-12-11 19:24:15 +1000253nouveau_pci_resume(struct pci_dev *pdev)
254{
255 struct drm_device *dev = pci_get_drvdata(pdev);
256 struct drm_nouveau_private *dev_priv = dev->dev_private;
257 struct nouveau_engine *engine = &dev_priv->engine;
258 struct drm_crtc *crtc;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000259 int ret, i;
260
Dave Airlie38651672010-03-30 05:34:13 +0000261 nouveau_fbcon_save_disable_accel(dev);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000262
263 NV_INFO(dev, "We're back, enabling device...\n");
264 pci_set_power_state(pdev, PCI_D0);
265 pci_restore_state(pdev);
266 if (pci_enable_device(pdev))
267 return -1;
268 pci_set_master(dev->pdev);
269
Francisco Jereze04d8e82010-07-23 20:29:13 +0200270 /* Make sure the AGP controller is in a consistent state */
271 if (dev_priv->gart_info.type == NOUVEAU_GART_AGP)
272 nouveau_mem_reset_agp(dev);
273
Francisco Jerezc88c2e02010-07-24 17:37:33 +0200274 /* Make the CRTCs accessible */
275 engine->display.early_init(dev);
276
Ben Skeggs6ee73862009-12-11 19:24:15 +1000277 NV_INFO(dev, "POSTing device...\n");
278 ret = nouveau_run_vbios_init(dev);
279 if (ret)
280 return ret;
281
282 if (dev_priv->gart_info.type == NOUVEAU_GART_AGP) {
283 ret = nouveau_mem_init_agp(dev);
284 if (ret) {
285 NV_ERROR(dev, "error reinitialising AGP: %d\n", ret);
286 return ret;
287 }
288 }
289
290 NV_INFO(dev, "Reinitialising engines...\n");
291 engine->instmem.resume(dev);
292 engine->mc.init(dev);
293 engine->timer.init(dev);
294 engine->fb.init(dev);
295 engine->graph.init(dev);
296 engine->fifo.init(dev);
297
298 NV_INFO(dev, "Restoring GPU objects...\n");
299 nouveau_gpuobj_resume(dev);
300
301 nouveau_irq_postinstall(dev);
302
303 /* Re-write SKIPS, they'll have been lost over the suspend */
304 if (nouveau_vram_pushbuf) {
305 struct nouveau_channel *chan;
306 int j;
307
308 for (i = 0; i < dev_priv->engine.fifo.channels; i++) {
309 chan = dev_priv->fifos[i];
Ben Skeggs3c8868d2009-12-16 14:51:13 +1000310 if (!chan || !chan->pushbuf_bo)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000311 continue;
312
313 for (j = 0; j < NOUVEAU_DMA_SKIPS; j++)
314 nouveau_bo_wr32(chan->pushbuf_bo, i, 0);
315 }
316 }
317
318 NV_INFO(dev, "Restoring mode...\n");
319 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
320 struct nouveau_framebuffer *nouveau_fb;
321
322 nouveau_fb = nouveau_framebuffer(crtc->fb);
323 if (!nouveau_fb || !nouveau_fb->nvbo)
324 continue;
325
326 nouveau_bo_pin(nouveau_fb->nvbo, TTM_PL_FLAG_VRAM);
327 }
328
Maarten Maathuisb334f2b2010-05-09 14:49:52 +0200329 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
330 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
Maarten Maathuisb334f2b2010-05-09 14:49:52 +0200331
332 ret = nouveau_bo_pin(nv_crtc->cursor.nvbo, TTM_PL_FLAG_VRAM);
333 if (!ret)
334 ret = nouveau_bo_map(nv_crtc->cursor.nvbo);
335 if (ret)
336 NV_ERROR(dev, "Could not pin/map cursor.\n");
337 }
338
Francisco Jerezc88c2e02010-07-24 17:37:33 +0200339 engine->display.init(dev);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000340
Maarten Maathuisb334f2b2010-05-09 14:49:52 +0200341 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
342 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
343
344 nv_crtc->cursor.set_offset(nv_crtc,
345 nv_crtc->cursor.nvbo->bo.offset -
346 dev_priv->vm_vram_base);
347
348 nv_crtc->cursor.set_pos(nv_crtc, nv_crtc->cursor_saved_x,
349 nv_crtc->cursor_saved_y);
350 }
351
Ben Skeggs6ee73862009-12-11 19:24:15 +1000352 /* Force CLUT to get re-loaded during modeset */
353 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
354 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
355
356 nv_crtc->lut.depth = 0;
357 }
358
359 acquire_console_sem();
Dave Airlie38651672010-03-30 05:34:13 +0000360 nouveau_fbcon_set_suspend(dev, 0);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000361 release_console_sem();
362
Dave Airlie38651672010-03-30 05:34:13 +0000363 nouveau_fbcon_zfill_all(dev);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000364
365 drm_helper_resume_force_mode(dev);
Dave Airlie38651672010-03-30 05:34:13 +0000366
367 nouveau_fbcon_restore_accel(dev);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000368 return 0;
369}
370
371static struct drm_driver driver = {
372 .driver_features =
373 DRIVER_USE_AGP | DRIVER_PCI_DMA | DRIVER_SG |
Ben Skeggscd0b0722010-06-01 15:56:22 +1000374 DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED | DRIVER_GEM |
375 DRIVER_MODESET,
Ben Skeggs6ee73862009-12-11 19:24:15 +1000376 .load = nouveau_load,
377 .firstopen = nouveau_firstopen,
378 .lastclose = nouveau_lastclose,
379 .unload = nouveau_unload,
380 .preclose = nouveau_preclose,
381#if defined(CONFIG_DRM_NOUVEAU_DEBUG)
382 .debugfs_init = nouveau_debugfs_init,
383 .debugfs_cleanup = nouveau_debugfs_takedown,
384#endif
385 .irq_preinstall = nouveau_irq_preinstall,
386 .irq_postinstall = nouveau_irq_postinstall,
387 .irq_uninstall = nouveau_irq_uninstall,
388 .irq_handler = nouveau_irq_handler,
389 .reclaim_buffers = drm_core_reclaim_buffers,
Ben Skeggs6ee73862009-12-11 19:24:15 +1000390 .ioctls = nouveau_ioctls,
391 .fops = {
392 .owner = THIS_MODULE,
393 .open = drm_open,
394 .release = drm_release,
Arnd Bergmanned8b6702009-12-16 22:17:09 +0000395 .unlocked_ioctl = drm_ioctl,
Ben Skeggs6ee73862009-12-11 19:24:15 +1000396 .mmap = nouveau_ttm_mmap,
397 .poll = drm_poll,
398 .fasync = drm_fasync,
399#if defined(CONFIG_COMPAT)
400 .compat_ioctl = nouveau_compat_ioctl,
401#endif
402 },
403 .pci_driver = {
404 .name = DRIVER_NAME,
405 .id_table = pciidlist,
406 .probe = nouveau_pci_probe,
407 .remove = nouveau_pci_remove,
408 .suspend = nouveau_pci_suspend,
409 .resume = nouveau_pci_resume
410 },
411
412 .gem_init_object = nouveau_gem_object_new,
413 .gem_free_object = nouveau_gem_object_del,
414
415 .name = DRIVER_NAME,
416 .desc = DRIVER_DESC,
417#ifdef GIT_REVISION
418 .date = GIT_REVISION,
419#else
420 .date = DRIVER_DATE,
421#endif
422 .major = DRIVER_MAJOR,
423 .minor = DRIVER_MINOR,
424 .patchlevel = DRIVER_PATCHLEVEL,
425};
426
427static int __init nouveau_init(void)
428{
429 driver.num_ioctls = nouveau_max_ioctl;
430
431 if (nouveau_modeset == -1) {
432#ifdef CONFIG_VGA_CONSOLE
433 if (vgacon_text_force())
434 nouveau_modeset = 0;
435 else
436#endif
437 nouveau_modeset = 1;
438 }
439
Ben Skeggscd0b0722010-06-01 15:56:22 +1000440 if (!nouveau_modeset)
441 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000442
Ben Skeggscd0b0722010-06-01 15:56:22 +1000443 nouveau_register_dsm_handler();
Ben Skeggs6ee73862009-12-11 19:24:15 +1000444 return drm_init(&driver);
445}
446
447static void __exit nouveau_exit(void)
448{
Ben Skeggscd0b0722010-06-01 15:56:22 +1000449 if (!nouveau_modeset)
450 return;
451
Ben Skeggs6ee73862009-12-11 19:24:15 +1000452 drm_exit(&driver);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000453 nouveau_unregister_dsm_handler();
Ben Skeggs6ee73862009-12-11 19:24:15 +1000454}
455
456module_init(nouveau_init);
457module_exit(nouveau_exit);
458
459MODULE_AUTHOR(DRIVER_AUTHOR);
460MODULE_DESCRIPTION(DRIVER_DESC);
461MODULE_LICENSE("GPL and additional rights");