]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/gpu/drm/nouveau/nouveau_drv.c
drm/nouveau: Reset AGP before running the init scripts.
[net-next-2.6.git] / drivers / gpu / drm / nouveau / nouveau_drv.c
CommitLineData
6ee73861
BS
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
38MODULE_PARM_DESC(noagp, "Disable AGP");
39int nouveau_noagp;
40module_param_named(noagp, nouveau_noagp, int, 0400);
41
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");
2dfe36b1 55int nouveau_vram_notify = 0;
6ee73861
BS
56module_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
a1470890
BS
70MODULE_PARM_DESC(ignorelid, "Ignore ACPI lid status");
71int nouveau_ignorelid = 0;
72module_param_named(ignorelid, nouveau_ignorelid, int, 0400);
73
81e2d422 74MODULE_PARM_DESC(noaccel, "Disable all acceleration");
a32ed69d
MK
75int nouveau_noaccel = 0;
76module_param_named(noaccel, nouveau_noaccel, int, 0400);
77
81e2d422 78MODULE_PARM_DESC(nofbaccel, "Disable fbcon acceleration");
a32ed69d
MK
79int nouveau_nofbaccel = 0;
80module_param_named(nofbaccel, nouveau_nofbaccel, int, 0400);
81
da647d5b
BS
82MODULE_PARM_DESC(override_conntype, "Ignore DCB connector type");
83int nouveau_override_conntype = 0;
84module_param_named(override_conntype, nouveau_override_conntype, int, 0400);
85
f4053509
BS
86MODULE_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
6ee73861
BS
90MODULE_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
105int nouveau_fbpercrtc;
106#if 0
107module_param_named(fbpercrtc, nouveau_fbpercrtc, int, 0400);
108#endif
109
110static struct pci_device_id pciidlist[] = {
111 {
112 PCI_DEVICE(PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID),
113 .class = PCI_BASE_CLASS_DISPLAY << 16,
114 .class_mask = 0xff << 16,
115 },
116 {
117 PCI_DEVICE(PCI_VENDOR_ID_NVIDIA_SGS, PCI_ANY_ID),
118 .class = PCI_BASE_CLASS_DISPLAY << 16,
119 .class_mask = 0xff << 16,
120 },
121 {}
122};
123
124MODULE_DEVICE_TABLE(pci, pciidlist);
125
126static struct drm_driver driver;
127
128static int __devinit
129nouveau_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
130{
dcdb1674 131 return drm_get_pci_dev(pdev, ent, &driver);
6ee73861
BS
132}
133
134static void
135nouveau_pci_remove(struct pci_dev *pdev)
136{
137 struct drm_device *dev = pci_get_drvdata(pdev);
138
139 drm_put_dev(dev);
140}
141
6a9ee8af 142int
6ee73861
BS
143nouveau_pci_suspend(struct pci_dev *pdev, pm_message_t pm_state)
144{
145 struct drm_device *dev = pci_get_drvdata(pdev);
146 struct drm_nouveau_private *dev_priv = dev->dev_private;
147 struct nouveau_instmem_engine *pinstmem = &dev_priv->engine.instmem;
148 struct nouveau_pgraph_engine *pgraph = &dev_priv->engine.graph;
149 struct nouveau_fifo_engine *pfifo = &dev_priv->engine.fifo;
150 struct nouveau_channel *chan;
151 struct drm_crtc *crtc;
6ee73861
BS
152 int ret, i;
153
6ee73861
BS
154 if (pm_state.event == PM_EVENT_PRETHAW)
155 return 0;
156
81441570 157 NV_INFO(dev, "Disabling fbcon acceleration...\n");
38651674 158 nouveau_fbcon_save_disable_accel(dev);
6ee73861 159
81441570 160 NV_INFO(dev, "Unpinning framebuffer(s)...\n");
6ee73861
BS
161 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
162 struct nouveau_framebuffer *nouveau_fb;
163
164 nouveau_fb = nouveau_framebuffer(crtc->fb);
165 if (!nouveau_fb || !nouveau_fb->nvbo)
166 continue;
167
168 nouveau_bo_unpin(nouveau_fb->nvbo);
169 }
170
b334f2b3
MM
171 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
172 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
173
174 nouveau_bo_unmap(nv_crtc->cursor.nvbo);
175 nouveau_bo_unpin(nv_crtc->cursor.nvbo);
176 }
177
6ee73861
BS
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();
38651674 231 nouveau_fbcon_set_suspend(dev, 1);
6ee73861 232 release_console_sem();
38651674 233 nouveau_fbcon_restore_accel(dev);
6ee73861
BS
234 return 0;
235
236out_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
6a9ee8af 244int
6ee73861
BS
245nouveau_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;
6ee73861
BS
251 int ret, i;
252
38651674 253 nouveau_fbcon_save_disable_accel(dev);
6ee73861
BS
254
255 NV_INFO(dev, "We're back, enabling device...\n");
256 pci_set_power_state(pdev, PCI_D0);
257 pci_restore_state(pdev);
258 if (pci_enable_device(pdev))
259 return -1;
260 pci_set_master(dev->pdev);
261
e04d8e82
FJ
262 /* Make sure the AGP controller is in a consistent state */
263 if (dev_priv->gart_info.type == NOUVEAU_GART_AGP)
264 nouveau_mem_reset_agp(dev);
265
6ee73861
BS
266 NV_INFO(dev, "POSTing device...\n");
267 ret = nouveau_run_vbios_init(dev);
268 if (ret)
269 return ret;
270
271 if (dev_priv->gart_info.type == NOUVEAU_GART_AGP) {
272 ret = nouveau_mem_init_agp(dev);
273 if (ret) {
274 NV_ERROR(dev, "error reinitialising AGP: %d\n", ret);
275 return ret;
276 }
277 }
278
279 NV_INFO(dev, "Reinitialising engines...\n");
280 engine->instmem.resume(dev);
281 engine->mc.init(dev);
282 engine->timer.init(dev);
283 engine->fb.init(dev);
284 engine->graph.init(dev);
285 engine->fifo.init(dev);
286
287 NV_INFO(dev, "Restoring GPU objects...\n");
288 nouveau_gpuobj_resume(dev);
289
290 nouveau_irq_postinstall(dev);
291
292 /* Re-write SKIPS, they'll have been lost over the suspend */
293 if (nouveau_vram_pushbuf) {
294 struct nouveau_channel *chan;
295 int j;
296
297 for (i = 0; i < dev_priv->engine.fifo.channels; i++) {
298 chan = dev_priv->fifos[i];
3c8868d3 299 if (!chan || !chan->pushbuf_bo)
6ee73861
BS
300 continue;
301
302 for (j = 0; j < NOUVEAU_DMA_SKIPS; j++)
303 nouveau_bo_wr32(chan->pushbuf_bo, i, 0);
304 }
305 }
306
307 NV_INFO(dev, "Restoring mode...\n");
308 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
309 struct nouveau_framebuffer *nouveau_fb;
310
311 nouveau_fb = nouveau_framebuffer(crtc->fb);
312 if (!nouveau_fb || !nouveau_fb->nvbo)
313 continue;
314
315 nouveau_bo_pin(nouveau_fb->nvbo, TTM_PL_FLAG_VRAM);
316 }
317
b334f2b3
MM
318 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
319 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
b334f2b3
MM
320
321 ret = nouveau_bo_pin(nv_crtc->cursor.nvbo, TTM_PL_FLAG_VRAM);
322 if (!ret)
323 ret = nouveau_bo_map(nv_crtc->cursor.nvbo);
324 if (ret)
325 NV_ERROR(dev, "Could not pin/map cursor.\n");
326 }
327
03cd06ca 328 if (dev_priv->card_type < NV_50)
6ee73861 329 nv04_display_restore(dev);
03cd06ca 330 else
6ee73861
BS
331 nv50_display_init(dev);
332
b334f2b3
MM
333 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
334 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
335
336 nv_crtc->cursor.set_offset(nv_crtc,
337 nv_crtc->cursor.nvbo->bo.offset -
338 dev_priv->vm_vram_base);
339
340 nv_crtc->cursor.set_pos(nv_crtc, nv_crtc->cursor_saved_x,
341 nv_crtc->cursor_saved_y);
342 }
343
6ee73861
BS
344 /* Force CLUT to get re-loaded during modeset */
345 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
346 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
347
348 nv_crtc->lut.depth = 0;
349 }
350
351 acquire_console_sem();
38651674 352 nouveau_fbcon_set_suspend(dev, 0);
6ee73861
BS
353 release_console_sem();
354
38651674 355 nouveau_fbcon_zfill_all(dev);
6ee73861
BS
356
357 drm_helper_resume_force_mode(dev);
38651674
DA
358
359 nouveau_fbcon_restore_accel(dev);
6ee73861
BS
360 return 0;
361}
362
363static struct drm_driver driver = {
364 .driver_features =
365 DRIVER_USE_AGP | DRIVER_PCI_DMA | DRIVER_SG |
cd0b072f
BS
366 DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED | DRIVER_GEM |
367 DRIVER_MODESET,
6ee73861
BS
368 .load = nouveau_load,
369 .firstopen = nouveau_firstopen,
370 .lastclose = nouveau_lastclose,
371 .unload = nouveau_unload,
372 .preclose = nouveau_preclose,
373#if defined(CONFIG_DRM_NOUVEAU_DEBUG)
374 .debugfs_init = nouveau_debugfs_init,
375 .debugfs_cleanup = nouveau_debugfs_takedown,
376#endif
377 .irq_preinstall = nouveau_irq_preinstall,
378 .irq_postinstall = nouveau_irq_postinstall,
379 .irq_uninstall = nouveau_irq_uninstall,
380 .irq_handler = nouveau_irq_handler,
381 .reclaim_buffers = drm_core_reclaim_buffers,
382 .get_map_ofs = drm_core_get_map_ofs,
383 .get_reg_ofs = drm_core_get_reg_ofs,
384 .ioctls = nouveau_ioctls,
385 .fops = {
386 .owner = THIS_MODULE,
387 .open = drm_open,
388 .release = drm_release,
ed8b6704 389 .unlocked_ioctl = drm_ioctl,
6ee73861
BS
390 .mmap = nouveau_ttm_mmap,
391 .poll = drm_poll,
392 .fasync = drm_fasync,
393#if defined(CONFIG_COMPAT)
394 .compat_ioctl = nouveau_compat_ioctl,
395#endif
396 },
397 .pci_driver = {
398 .name = DRIVER_NAME,
399 .id_table = pciidlist,
400 .probe = nouveau_pci_probe,
401 .remove = nouveau_pci_remove,
402 .suspend = nouveau_pci_suspend,
403 .resume = nouveau_pci_resume
404 },
405
406 .gem_init_object = nouveau_gem_object_new,
407 .gem_free_object = nouveau_gem_object_del,
408
409 .name = DRIVER_NAME,
410 .desc = DRIVER_DESC,
411#ifdef GIT_REVISION
412 .date = GIT_REVISION,
413#else
414 .date = DRIVER_DATE,
415#endif
416 .major = DRIVER_MAJOR,
417 .minor = DRIVER_MINOR,
418 .patchlevel = DRIVER_PATCHLEVEL,
419};
420
421static int __init nouveau_init(void)
422{
423 driver.num_ioctls = nouveau_max_ioctl;
424
425 if (nouveau_modeset == -1) {
426#ifdef CONFIG_VGA_CONSOLE
427 if (vgacon_text_force())
428 nouveau_modeset = 0;
429 else
430#endif
431 nouveau_modeset = 1;
432 }
433
cd0b072f
BS
434 if (!nouveau_modeset)
435 return 0;
6ee73861 436
cd0b072f 437 nouveau_register_dsm_handler();
6ee73861
BS
438 return drm_init(&driver);
439}
440
441static void __exit nouveau_exit(void)
442{
cd0b072f
BS
443 if (!nouveau_modeset)
444 return;
445
6ee73861 446 drm_exit(&driver);
6a9ee8af 447 nouveau_unregister_dsm_handler();
6ee73861
BS
448}
449
450module_init(nouveau_init);
451module_exit(nouveau_exit);
452
453MODULE_AUTHOR(DRIVER_AUTHOR);
454MODULE_DESCRIPTION(DRIVER_DESC);
455MODULE_LICENSE("GPL and additional rights");