drm/nouveau/agp: move all agp stuff into its own source file
[linux-2.6-block.git] / drivers / gpu / drm / nouveau / nouveau_drv.c
... / ...
CommitLineData
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#include <linux/module.h>
27
28#include "drmP.h"
29#include "drm.h"
30#include "drm_crtc_helper.h"
31#include "nouveau_drv.h"
32#include "nouveau_agp.h"
33#include "nouveau_abi16.h"
34#include "nouveau_hw.h"
35#include "nouveau_fb.h"
36#include "nouveau_fbcon.h"
37#include "nouveau_pm.h"
38#include <engine/fifo.h>
39#include "nv50_display.h"
40
41#include "drm_pciids.h"
42
43MODULE_PARM_DESC(modeset, "Enable kernel modesetting");
44int nouveau_modeset = -1;
45module_param_named(modeset, nouveau_modeset, int, 0400);
46
47MODULE_PARM_DESC(vbios, "Override default VBIOS location");
48char *nouveau_vbios;
49module_param_named(vbios, nouveau_vbios, charp, 0400);
50
51MODULE_PARM_DESC(vram_pushbuf, "Force DMA push buffers to be in VRAM");
52int nouveau_vram_pushbuf;
53module_param_named(vram_pushbuf, nouveau_vram_pushbuf, int, 0400);
54
55MODULE_PARM_DESC(vram_notify, "Force DMA notifiers to be in VRAM");
56int nouveau_vram_notify = 0;
57module_param_named(vram_notify, nouveau_vram_notify, int, 0400);
58
59MODULE_PARM_DESC(vram_type, "Override detected VRAM type");
60char *nouveau_vram_type;
61module_param_named(vram_type, nouveau_vram_type, charp, 0400);
62
63MODULE_PARM_DESC(duallink, "Allow dual-link TMDS (>=GeForce 8)");
64int nouveau_duallink = 1;
65module_param_named(duallink, nouveau_duallink, int, 0400);
66
67MODULE_PARM_DESC(uscript_lvds, "LVDS output script table ID (>=GeForce 8)");
68int nouveau_uscript_lvds = -1;
69module_param_named(uscript_lvds, nouveau_uscript_lvds, int, 0400);
70
71MODULE_PARM_DESC(uscript_tmds, "TMDS output script table ID (>=GeForce 8)");
72int nouveau_uscript_tmds = -1;
73module_param_named(uscript_tmds, nouveau_uscript_tmds, int, 0400);
74
75MODULE_PARM_DESC(ignorelid, "Ignore ACPI lid status");
76int nouveau_ignorelid = 0;
77module_param_named(ignorelid, nouveau_ignorelid, int, 0400);
78
79MODULE_PARM_DESC(noaccel, "Disable all acceleration");
80int nouveau_noaccel = -1;
81module_param_named(noaccel, nouveau_noaccel, int, 0400);
82
83MODULE_PARM_DESC(nofbaccel, "Disable fbcon acceleration");
84int nouveau_nofbaccel = 0;
85module_param_named(nofbaccel, nouveau_nofbaccel, int, 0400);
86
87MODULE_PARM_DESC(force_post, "Force POST");
88int nouveau_force_post = 0;
89module_param_named(force_post, nouveau_force_post, int, 0400);
90
91MODULE_PARM_DESC(override_conntype, "Ignore DCB connector type");
92int nouveau_override_conntype = 0;
93module_param_named(override_conntype, nouveau_override_conntype, int, 0400);
94
95MODULE_PARM_DESC(tv_disable, "Disable TV-out detection");
96int nouveau_tv_disable = 0;
97module_param_named(tv_disable, nouveau_tv_disable, int, 0400);
98
99MODULE_PARM_DESC(tv_norm, "Default TV norm.\n"
100 "\t\tSupported: PAL, PAL-M, PAL-N, PAL-Nc, NTSC-M, NTSC-J,\n"
101 "\t\t\thd480i, hd480p, hd576i, hd576p, hd720p, hd1080i.\n"
102 "\t\tDefault: PAL\n"
103 "\t\t*NOTE* Ignored for cards with external TV encoders.");
104char *nouveau_tv_norm;
105module_param_named(tv_norm, nouveau_tv_norm, charp, 0400);
106
107MODULE_PARM_DESC(reg_debug, "Register access debug bitmask:\n"
108 "\t\t0x1 mc, 0x2 video, 0x4 fb, 0x8 extdev,\n"
109 "\t\t0x10 crtc, 0x20 ramdac, 0x40 vgacrtc, 0x80 rmvio,\n"
110 "\t\t0x100 vgaattr, 0x200 EVO (G80+)");
111int nouveau_reg_debug;
112module_param_named(reg_debug, nouveau_reg_debug, int, 0600);
113
114MODULE_PARM_DESC(perflvl, "Performance level (default: boot)");
115char *nouveau_perflvl;
116module_param_named(perflvl, nouveau_perflvl, charp, 0400);
117
118MODULE_PARM_DESC(perflvl_wr, "Allow perflvl changes (warning: dangerous!)");
119int nouveau_perflvl_wr;
120module_param_named(perflvl_wr, nouveau_perflvl_wr, int, 0400);
121
122MODULE_PARM_DESC(msi, "Enable MSI (default: off)");
123int nouveau_msi;
124module_param_named(msi, nouveau_msi, int, 0400);
125
126MODULE_PARM_DESC(ctxfw, "Use external HUB/GPC ucode (fermi)");
127int nouveau_ctxfw;
128module_param_named(ctxfw, nouveau_ctxfw, int, 0400);
129
130MODULE_PARM_DESC(mxmdcb, "Santise DCB table according to MXM-SIS");
131int nouveau_mxmdcb = 1;
132module_param_named(mxmdcb, nouveau_mxmdcb, int, 0400);
133
134int nouveau_fbpercrtc;
135#if 0
136module_param_named(fbpercrtc, nouveau_fbpercrtc, int, 0400);
137#endif
138
139static struct pci_device_id pciidlist[] = {
140 {
141 PCI_DEVICE(PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID),
142 .class = PCI_BASE_CLASS_DISPLAY << 16,
143 .class_mask = 0xff << 16,
144 },
145 {
146 PCI_DEVICE(PCI_VENDOR_ID_NVIDIA_SGS, PCI_ANY_ID),
147 .class = PCI_BASE_CLASS_DISPLAY << 16,
148 .class_mask = 0xff << 16,
149 },
150 {}
151};
152
153MODULE_DEVICE_TABLE(pci, pciidlist);
154
155static struct drm_driver driver;
156
157static int __devinit
158nouveau_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
159{
160 return drm_get_pci_dev(pdev, ent, &driver);
161}
162
163static void
164nouveau_pci_remove(struct pci_dev *pdev)
165{
166 struct drm_device *dev = pci_get_drvdata(pdev);
167
168 drm_put_dev(dev);
169}
170
171int
172nouveau_pci_suspend(struct pci_dev *pdev, pm_message_t pm_state)
173{
174 struct drm_device *dev = pci_get_drvdata(pdev);
175 struct drm_nouveau_private *dev_priv = dev->dev_private;
176 struct nouveau_instmem_engine *pinstmem = &dev_priv->engine.instmem;
177 struct nouveau_fifo_priv *pfifo = nv_engine(dev, NVOBJ_ENGINE_FIFO);
178 struct nouveau_channel *chan;
179 struct drm_crtc *crtc;
180 int ret, i, e;
181
182 if (pm_state.event == PM_EVENT_PRETHAW)
183 return 0;
184
185 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
186 return 0;
187
188 NV_INFO(dev, "Disabling display...\n");
189 nouveau_display_fini(dev);
190
191 NV_INFO(dev, "Disabling fbcon...\n");
192 nouveau_fbcon_set_suspend(dev, 1);
193
194 NV_INFO(dev, "Unpinning framebuffer(s)...\n");
195 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
196 struct nouveau_framebuffer *nouveau_fb;
197
198 nouveau_fb = nouveau_framebuffer(crtc->fb);
199 if (!nouveau_fb || !nouveau_fb->nvbo)
200 continue;
201
202 nouveau_bo_unpin(nouveau_fb->nvbo);
203 }
204
205 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
206 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
207
208 nouveau_bo_unmap(nv_crtc->cursor.nvbo);
209 nouveau_bo_unpin(nv_crtc->cursor.nvbo);
210 }
211
212 NV_INFO(dev, "Evicting buffers...\n");
213 ttm_bo_evict_mm(&dev_priv->ttm.bdev, TTM_PL_VRAM);
214
215 NV_INFO(dev, "Idling channels...\n");
216 for (i = 0; i < (pfifo ? pfifo->channels : 0); i++) {
217 chan = dev_priv->channels.ptr[i];
218
219 if (chan && chan->pushbuf_bo)
220 nouveau_channel_idle(chan);
221 }
222
223 for (e = NVOBJ_ENGINE_NR - 1; e >= 0; e--) {
224 if (!dev_priv->eng[e])
225 continue;
226
227 ret = dev_priv->eng[e]->fini(dev, e, true);
228 if (ret) {
229 NV_ERROR(dev, "... engine %d failed: %d\n", e, ret);
230 goto out_abort;
231 }
232 }
233
234 ret = pinstmem->suspend(dev);
235 if (ret) {
236 NV_ERROR(dev, "... failed: %d\n", ret);
237 goto out_abort;
238 }
239
240 NV_INFO(dev, "Suspending GPU objects...\n");
241 ret = nouveau_gpuobj_suspend(dev);
242 if (ret) {
243 NV_ERROR(dev, "... failed: %d\n", ret);
244 pinstmem->resume(dev);
245 goto out_abort;
246 }
247
248 nouveau_agp_fini(dev);
249
250 NV_INFO(dev, "And we're gone!\n");
251 pci_save_state(pdev);
252 if (pm_state.event == PM_EVENT_SUSPEND) {
253 pci_disable_device(pdev);
254 pci_set_power_state(pdev, PCI_D3hot);
255 }
256
257 return 0;
258
259out_abort:
260 NV_INFO(dev, "Re-enabling acceleration..\n");
261 for (e = e + 1; e < NVOBJ_ENGINE_NR; e++) {
262 if (dev_priv->eng[e])
263 dev_priv->eng[e]->init(dev, e);
264 }
265 return ret;
266}
267
268int
269nouveau_pci_resume(struct pci_dev *pdev)
270{
271 struct drm_device *dev = pci_get_drvdata(pdev);
272 struct nouveau_fifo_priv *pfifo = nv_engine(dev, NVOBJ_ENGINE_FIFO);
273 struct drm_nouveau_private *dev_priv = dev->dev_private;
274 struct nouveau_engine *engine = &dev_priv->engine;
275 struct drm_crtc *crtc;
276 int ret, i;
277
278 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
279 return 0;
280
281 NV_INFO(dev, "We're back, enabling device...\n");
282 pci_set_power_state(pdev, PCI_D0);
283 pci_restore_state(pdev);
284 if (pci_enable_device(pdev))
285 return -1;
286 pci_set_master(dev->pdev);
287
288 /* Make sure the AGP controller is in a consistent state */
289 nouveau_agp_reset(dev);
290
291 /* Make the CRTCs accessible */
292 engine->display.early_init(dev);
293
294 NV_INFO(dev, "POSTing device...\n");
295 ret = nouveau_run_vbios_init(dev);
296 if (ret)
297 return ret;
298
299 nouveau_agp_init(dev);
300
301 NV_INFO(dev, "Restoring GPU objects...\n");
302 nouveau_gpuobj_resume(dev);
303
304 NV_INFO(dev, "Reinitialising engines...\n");
305 engine->instmem.resume(dev);
306 engine->mc.init(dev);
307 engine->timer.init(dev);
308 engine->fb.init(dev);
309 for (i = 0; i < NVOBJ_ENGINE_NR; i++) {
310 if (dev_priv->eng[i])
311 dev_priv->eng[i]->init(dev, i);
312 }
313
314 nouveau_irq_postinstall(dev);
315
316 /* Re-write SKIPS, they'll have been lost over the suspend */
317 if (nouveau_vram_pushbuf) {
318 struct nouveau_channel *chan;
319 int j;
320
321 for (i = 0; i < (pfifo ? pfifo->channels : 0); i++) {
322 chan = dev_priv->channels.ptr[i];
323 if (!chan || !chan->pushbuf_bo)
324 continue;
325
326 for (j = 0; j < NOUVEAU_DMA_SKIPS; j++)
327 nouveau_bo_wr32(chan->pushbuf_bo, i, 0);
328 }
329 }
330
331 nouveau_pm_resume(dev);
332
333 NV_INFO(dev, "Restoring mode...\n");
334 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
335 struct nouveau_framebuffer *nouveau_fb;
336
337 nouveau_fb = nouveau_framebuffer(crtc->fb);
338 if (!nouveau_fb || !nouveau_fb->nvbo)
339 continue;
340
341 nouveau_bo_pin(nouveau_fb->nvbo, TTM_PL_FLAG_VRAM);
342 }
343
344 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
345 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
346
347 ret = nouveau_bo_pin(nv_crtc->cursor.nvbo, TTM_PL_FLAG_VRAM);
348 if (!ret)
349 ret = nouveau_bo_map(nv_crtc->cursor.nvbo);
350 if (ret)
351 NV_ERROR(dev, "Could not pin/map cursor.\n");
352 }
353
354 nouveau_fbcon_set_suspend(dev, 0);
355 nouveau_fbcon_zfill_all(dev);
356
357 nouveau_display_init(dev);
358
359 /* Force CLUT to get re-loaded during modeset */
360 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
361 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
362
363 nv_crtc->lut.depth = 0;
364 }
365
366 drm_helper_resume_force_mode(dev);
367
368 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
369 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
370 u32 offset = nv_crtc->cursor.nvbo->bo.offset;
371
372 nv_crtc->cursor.set_offset(nv_crtc, offset);
373 nv_crtc->cursor.set_pos(nv_crtc, nv_crtc->cursor_saved_x,
374 nv_crtc->cursor_saved_y);
375 }
376
377 return 0;
378}
379
380static struct drm_ioctl_desc nouveau_ioctls[] = {
381 DRM_IOCTL_DEF_DRV(NOUVEAU_GETPARAM, nouveau_abi16_ioctl_getparam, DRM_UNLOCKED|DRM_AUTH),
382 DRM_IOCTL_DEF_DRV(NOUVEAU_SETPARAM, nouveau_abi16_ioctl_setparam, DRM_UNLOCKED|DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
383 DRM_IOCTL_DEF_DRV(NOUVEAU_CHANNEL_ALLOC, nouveau_abi16_ioctl_channel_alloc, DRM_UNLOCKED|DRM_AUTH),
384 DRM_IOCTL_DEF_DRV(NOUVEAU_CHANNEL_FREE, nouveau_abi16_ioctl_channel_free, DRM_UNLOCKED|DRM_AUTH),
385 DRM_IOCTL_DEF_DRV(NOUVEAU_GROBJ_ALLOC, nouveau_abi16_ioctl_grobj_alloc, DRM_UNLOCKED|DRM_AUTH),
386 DRM_IOCTL_DEF_DRV(NOUVEAU_NOTIFIEROBJ_ALLOC, nouveau_abi16_ioctl_notifierobj_alloc, DRM_UNLOCKED|DRM_AUTH),
387 DRM_IOCTL_DEF_DRV(NOUVEAU_GPUOBJ_FREE, nouveau_abi16_ioctl_gpuobj_free, DRM_UNLOCKED|DRM_AUTH),
388 DRM_IOCTL_DEF_DRV(NOUVEAU_GEM_NEW, nouveau_gem_ioctl_new, DRM_UNLOCKED|DRM_AUTH),
389 DRM_IOCTL_DEF_DRV(NOUVEAU_GEM_PUSHBUF, nouveau_gem_ioctl_pushbuf, DRM_UNLOCKED|DRM_AUTH),
390 DRM_IOCTL_DEF_DRV(NOUVEAU_GEM_CPU_PREP, nouveau_gem_ioctl_cpu_prep, DRM_UNLOCKED|DRM_AUTH),
391 DRM_IOCTL_DEF_DRV(NOUVEAU_GEM_CPU_FINI, nouveau_gem_ioctl_cpu_fini, DRM_UNLOCKED|DRM_AUTH),
392 DRM_IOCTL_DEF_DRV(NOUVEAU_GEM_INFO, nouveau_gem_ioctl_info, DRM_UNLOCKED|DRM_AUTH),
393};
394
395static const struct file_operations nouveau_driver_fops = {
396 .owner = THIS_MODULE,
397 .open = drm_open,
398 .release = drm_release,
399 .unlocked_ioctl = drm_ioctl,
400 .mmap = nouveau_ttm_mmap,
401 .poll = drm_poll,
402 .fasync = drm_fasync,
403 .read = drm_read,
404#if defined(CONFIG_COMPAT)
405 .compat_ioctl = nouveau_compat_ioctl,
406#endif
407 .llseek = noop_llseek,
408};
409
410static struct drm_driver driver = {
411 .driver_features =
412 DRIVER_USE_AGP | DRIVER_PCI_DMA | DRIVER_SG |
413 DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED | DRIVER_GEM |
414 DRIVER_MODESET | DRIVER_PRIME,
415 .load = nouveau_load,
416 .firstopen = nouveau_firstopen,
417 .lastclose = nouveau_lastclose,
418 .unload = nouveau_unload,
419 .open = nouveau_open,
420 .preclose = nouveau_preclose,
421 .postclose = nouveau_postclose,
422#if defined(CONFIG_DRM_NOUVEAU_DEBUG)
423 .debugfs_init = nouveau_debugfs_init,
424 .debugfs_cleanup = nouveau_debugfs_takedown,
425#endif
426 .irq_preinstall = nouveau_irq_preinstall,
427 .irq_postinstall = nouveau_irq_postinstall,
428 .irq_uninstall = nouveau_irq_uninstall,
429 .irq_handler = nouveau_irq_handler,
430 .get_vblank_counter = drm_vblank_count,
431 .enable_vblank = nouveau_vblank_enable,
432 .disable_vblank = nouveau_vblank_disable,
433 .ioctls = nouveau_ioctls,
434 .fops = &nouveau_driver_fops,
435
436 .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
437 .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
438 .gem_prime_export = nouveau_gem_prime_export,
439 .gem_prime_import = nouveau_gem_prime_import,
440
441 .gem_init_object = nouveau_gem_object_new,
442 .gem_free_object = nouveau_gem_object_del,
443 .gem_open_object = nouveau_gem_object_open,
444 .gem_close_object = nouveau_gem_object_close,
445
446 .dumb_create = nouveau_display_dumb_create,
447 .dumb_map_offset = nouveau_display_dumb_map_offset,
448 .dumb_destroy = nouveau_display_dumb_destroy,
449
450 .name = DRIVER_NAME,
451 .desc = DRIVER_DESC,
452#ifdef GIT_REVISION
453 .date = GIT_REVISION,
454#else
455 .date = DRIVER_DATE,
456#endif
457 .major = DRIVER_MAJOR,
458 .minor = DRIVER_MINOR,
459 .patchlevel = DRIVER_PATCHLEVEL,
460};
461
462static struct pci_driver nouveau_pci_driver = {
463 .name = DRIVER_NAME,
464 .id_table = pciidlist,
465 .probe = nouveau_pci_probe,
466 .remove = nouveau_pci_remove,
467 .suspend = nouveau_pci_suspend,
468 .resume = nouveau_pci_resume
469};
470
471static int __init nouveau_init(void)
472{
473 driver.num_ioctls = ARRAY_SIZE(nouveau_ioctls);
474
475 if (nouveau_modeset == -1) {
476#ifdef CONFIG_VGA_CONSOLE
477 if (vgacon_text_force())
478 nouveau_modeset = 0;
479 else
480#endif
481 nouveau_modeset = 1;
482 }
483
484 if (!nouveau_modeset)
485 return 0;
486
487 nouveau_register_dsm_handler();
488 return drm_pci_init(&driver, &nouveau_pci_driver);
489}
490
491static void __exit nouveau_exit(void)
492{
493 if (!nouveau_modeset)
494 return;
495
496 drm_pci_exit(&driver, &nouveau_pci_driver);
497 nouveau_unregister_dsm_handler();
498}
499
500module_init(nouveau_init);
501module_exit(nouveau_exit);
502
503MODULE_AUTHOR(DRIVER_AUTHOR);
504MODULE_DESCRIPTION(DRIVER_DESC);
505MODULE_LICENSE("GPL and additional rights");