| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright 2005 Stephane Marchesin. | 
					
						
							|  |  |  |  * All Rights Reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Permission is hereby granted, free of charge, to any person obtaining a | 
					
						
							|  |  |  |  * copy of this software and associated documentation files (the "Software"), | 
					
						
							|  |  |  |  * to deal in the Software without restriction, including without limitation | 
					
						
							|  |  |  |  * the rights to use, copy, modify, merge, publish, distribute, sublicense, | 
					
						
							|  |  |  |  * and/or sell copies of the Software, and to permit persons to whom the | 
					
						
							|  |  |  |  * Software is furnished to do so, subject to the following conditions: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The above copyright notice and this permission notice (including the next | 
					
						
							|  |  |  |  * paragraph) shall be included in all copies or substantial portions of the | 
					
						
							|  |  |  |  * Software. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 
					
						
							|  |  |  |  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 
					
						
							|  |  |  |  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL | 
					
						
							|  |  |  |  * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR | 
					
						
							|  |  |  |  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, | 
					
						
							|  |  |  |  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR | 
					
						
							|  |  |  |  * OTHER DEALINGS IN THE SOFTWARE. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/console.h>
 | 
					
						
							| 
									
										
										
										
											2011-08-30 11:04:30 -04:00
										 |  |  | #include <linux/module.h>
 | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "drmP.h"
 | 
					
						
							|  |  |  | #include "drm.h"
 | 
					
						
							|  |  |  | #include "drm_crtc_helper.h"
 | 
					
						
							|  |  |  | #include "nouveau_drv.h"
 | 
					
						
							|  |  |  | #include "nouveau_hw.h"
 | 
					
						
							|  |  |  | #include "nouveau_fb.h"
 | 
					
						
							|  |  |  | #include "nouveau_fbcon.h"
 | 
					
						
							| 
									
										
										
										
											2010-09-17 13:35:25 +10:00
										 |  |  | #include "nouveau_pm.h"
 | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | #include "nv50_display.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "drm_pciids.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-08 02:28:23 +02:00
										 |  |  | MODULE_PARM_DESC(agpmode, "AGP mode (0 to disable AGP)"); | 
					
						
							|  |  |  | int nouveau_agpmode = -1; | 
					
						
							|  |  |  | module_param_named(agpmode, nouveau_agpmode, int, 0400); | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | MODULE_PARM_DESC(modeset, "Enable kernel modesetting"); | 
					
						
							| 
									
										
										
										
											2011-07-04 13:14:05 +10:00
										 |  |  | int nouveau_modeset = -1; | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | module_param_named(modeset, nouveau_modeset, int, 0400); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MODULE_PARM_DESC(vbios, "Override default VBIOS location"); | 
					
						
							|  |  |  | char *nouveau_vbios; | 
					
						
							|  |  |  | module_param_named(vbios, nouveau_vbios, charp, 0400); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MODULE_PARM_DESC(vram_pushbuf, "Force DMA push buffers to be in VRAM"); | 
					
						
							|  |  |  | int nouveau_vram_pushbuf; | 
					
						
							|  |  |  | module_param_named(vram_pushbuf, nouveau_vram_pushbuf, int, 0400); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MODULE_PARM_DESC(vram_notify, "Force DMA notifiers to be in VRAM"); | 
					
						
							| 
									
										
										
										
											2010-06-01 09:47:43 +10:00
										 |  |  | int nouveau_vram_notify = 0; | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | module_param_named(vram_notify, nouveau_vram_notify, int, 0400); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-11 00:30:05 +10:00
										 |  |  | MODULE_PARM_DESC(vram_type, "Override detected VRAM type"); | 
					
						
							|  |  |  | char *nouveau_vram_type; | 
					
						
							|  |  |  | module_param_named(vram_type, nouveau_vram_type, charp, 0400); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | MODULE_PARM_DESC(duallink, "Allow dual-link TMDS (>=GeForce 8)"); | 
					
						
							|  |  |  | int nouveau_duallink = 1; | 
					
						
							|  |  |  | module_param_named(duallink, nouveau_duallink, int, 0400); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MODULE_PARM_DESC(uscript_lvds, "LVDS output script table ID (>=GeForce 8)"); | 
					
						
							|  |  |  | int nouveau_uscript_lvds = -1; | 
					
						
							|  |  |  | module_param_named(uscript_lvds, nouveau_uscript_lvds, int, 0400); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MODULE_PARM_DESC(uscript_tmds, "TMDS output script table ID (>=GeForce 8)"); | 
					
						
							|  |  |  | int nouveau_uscript_tmds = -1; | 
					
						
							|  |  |  | module_param_named(uscript_tmds, nouveau_uscript_tmds, int, 0400); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-18 11:42:37 +10:00
										 |  |  | MODULE_PARM_DESC(ignorelid, "Ignore ACPI lid status"); | 
					
						
							|  |  |  | int nouveau_ignorelid = 0; | 
					
						
							|  |  |  | module_param_named(ignorelid, nouveau_ignorelid, int, 0400); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-25 00:54:04 +00:00
										 |  |  | MODULE_PARM_DESC(noaccel, "Disable all acceleration"); | 
					
						
							| 
									
										
										
										
											2011-05-25 14:48:50 +10:00
										 |  |  | int nouveau_noaccel = -1; | 
					
						
							| 
									
										
										
										
											2010-01-26 14:00:42 +00:00
										 |  |  | module_param_named(noaccel, nouveau_noaccel, int, 0400); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-25 00:54:04 +00:00
										 |  |  | MODULE_PARM_DESC(nofbaccel, "Disable fbcon acceleration"); | 
					
						
							| 
									
										
										
										
											2010-01-26 14:00:42 +00:00
										 |  |  | int nouveau_nofbaccel = 0; | 
					
						
							|  |  |  | module_param_named(nofbaccel, nouveau_nofbaccel, int, 0400); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-29 11:15:01 +00:00
										 |  |  | MODULE_PARM_DESC(force_post, "Force POST"); | 
					
						
							|  |  |  | int nouveau_force_post = 0; | 
					
						
							|  |  |  | module_param_named(force_post, nouveau_force_post, int, 0400); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-04 12:00:39 +10:00
										 |  |  | MODULE_PARM_DESC(override_conntype, "Ignore DCB connector type"); | 
					
						
							|  |  |  | int nouveau_override_conntype = 0; | 
					
						
							|  |  |  | module_param_named(override_conntype, nouveau_override_conntype, int, 0400); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-30 17:23:55 +01:00
										 |  |  | MODULE_PARM_DESC(tv_disable, "Disable TV-out detection"); | 
					
						
							| 
									
										
										
										
											2010-03-15 09:43:51 +10:00
										 |  |  | int nouveau_tv_disable = 0; | 
					
						
							|  |  |  | module_param_named(tv_disable, nouveau_tv_disable, int, 0400); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | MODULE_PARM_DESC(tv_norm, "Default TV norm.\n" | 
					
						
							|  |  |  | 		 "\t\tSupported: PAL, PAL-M, PAL-N, PAL-Nc, NTSC-M, NTSC-J,\n" | 
					
						
							|  |  |  | 		 "\t\t\thd480i, hd480p, hd576i, hd576p, hd720p, hd1080i.\n" | 
					
						
							|  |  |  | 		 "\t\tDefault: PAL\n" | 
					
						
							|  |  |  | 		 "\t\t*NOTE* Ignored for cards with external TV encoders."); | 
					
						
							|  |  |  | char *nouveau_tv_norm; | 
					
						
							|  |  |  | module_param_named(tv_norm, nouveau_tv_norm, charp, 0400); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MODULE_PARM_DESC(reg_debug, "Register access debug bitmask:\n" | 
					
						
							|  |  |  | 		"\t\t0x1 mc, 0x2 video, 0x4 fb, 0x8 extdev,\n" | 
					
						
							|  |  |  | 		"\t\t0x10 crtc, 0x20 ramdac, 0x40 vgacrtc, 0x80 rmvio,\n" | 
					
						
							| 
									
										
										
										
											2011-11-30 17:23:55 +01:00
										 |  |  | 		"\t\t0x100 vgaattr, 0x200 EVO (G80+)"); | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | int nouveau_reg_debug; | 
					
						
							|  |  |  | module_param_named(reg_debug, nouveau_reg_debug, int, 0600); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-30 17:23:55 +01:00
										 |  |  | MODULE_PARM_DESC(perflvl, "Performance level (default: boot)"); | 
					
						
							| 
									
										
										
										
											2010-09-16 16:47:14 +10:00
										 |  |  | char *nouveau_perflvl; | 
					
						
							|  |  |  | module_param_named(perflvl, nouveau_perflvl, charp, 0400); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-30 17:23:55 +01:00
										 |  |  | MODULE_PARM_DESC(perflvl_wr, "Allow perflvl changes (warning: dangerous!)"); | 
					
						
							| 
									
										
										
										
											2010-09-16 16:47:14 +10:00
										 |  |  | int nouveau_perflvl_wr; | 
					
						
							|  |  |  | module_param_named(perflvl_wr, nouveau_perflvl_wr, int, 0400); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-30 17:23:55 +01:00
										 |  |  | MODULE_PARM_DESC(msi, "Enable MSI (default: off)"); | 
					
						
							| 
									
										
										
										
											2010-10-21 14:07:03 +10:00
										 |  |  | int nouveau_msi; | 
					
						
							|  |  |  | module_param_named(msi, nouveau_msi, int, 0400); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-30 17:23:55 +01:00
										 |  |  | MODULE_PARM_DESC(ctxfw, "Use external HUB/GPC ucode (fermi)"); | 
					
						
							| 
									
										
										
										
											2011-05-25 18:32:44 +10:00
										 |  |  | int nouveau_ctxfw; | 
					
						
							|  |  |  | module_param_named(ctxfw, nouveau_ctxfw, int, 0400); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-30 17:23:55 +01:00
										 |  |  | MODULE_PARM_DESC(mxmdcb, "Santise DCB table according to MXM-SIS"); | 
					
						
							| 
									
										
										
										
											2011-10-12 16:36:42 +10:00
										 |  |  | int nouveau_mxmdcb = 1; | 
					
						
							|  |  |  | module_param_named(mxmdcb, nouveau_mxmdcb, int, 0400); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | int nouveau_fbpercrtc; | 
					
						
							|  |  |  | #if 0
 | 
					
						
							|  |  |  | module_param_named(fbpercrtc, nouveau_fbpercrtc, int, 0400); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct pci_device_id pciidlist[] = { | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		PCI_DEVICE(PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID), | 
					
						
							|  |  |  | 		.class = PCI_BASE_CLASS_DISPLAY << 16, | 
					
						
							|  |  |  | 		.class_mask  = 0xff << 16, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		PCI_DEVICE(PCI_VENDOR_ID_NVIDIA_SGS, PCI_ANY_ID), | 
					
						
							|  |  |  | 		.class = PCI_BASE_CLASS_DISPLAY << 16, | 
					
						
							|  |  |  | 		.class_mask  = 0xff << 16, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MODULE_DEVICE_TABLE(pci, pciidlist); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct drm_driver driver; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int __devinit | 
					
						
							|  |  |  | nouveau_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-27 13:40:25 -06:00
										 |  |  | 	return drm_get_pci_dev(pdev, ent, &driver); | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | nouveau_pci_remove(struct pci_dev *pdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct drm_device *dev = pci_get_drvdata(pdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	drm_put_dev(dev); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-01 15:38:10 +10:00
										 |  |  | int | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | nouveau_pci_suspend(struct pci_dev *pdev, pm_message_t pm_state) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct drm_device *dev = pci_get_drvdata(pdev); | 
					
						
							|  |  |  | 	struct drm_nouveau_private *dev_priv = dev->dev_private; | 
					
						
							|  |  |  | 	struct nouveau_instmem_engine *pinstmem = &dev_priv->engine.instmem; | 
					
						
							|  |  |  | 	struct nouveau_fifo_engine *pfifo = &dev_priv->engine.fifo; | 
					
						
							|  |  |  | 	struct nouveau_channel *chan; | 
					
						
							|  |  |  | 	struct drm_crtc *crtc; | 
					
						
							| 
									
										
										
										
											2011-04-01 13:26:35 +10:00
										 |  |  | 	int ret, i, e; | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (pm_state.event == PM_EVENT_PRETHAW) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-07 09:20:40 +10:00
										 |  |  | 	if (dev->switch_power_state == DRM_SWITCH_POWER_OFF) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-09 15:18:47 +10:00
										 |  |  | 	NV_INFO(dev, "Disabling display...\n"); | 
					
						
							|  |  |  | 	nouveau_display_fini(dev); | 
					
						
							| 
									
										
										
										
											2011-10-09 22:58:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-09 14:31:16 +10:00
										 |  |  | 	NV_INFO(dev, "Disabling fbcon...\n"); | 
					
						
							|  |  |  | 	nouveau_fbcon_set_suspend(dev, 1); | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-21 13:28:35 +01:00
										 |  |  | 	NV_INFO(dev, "Unpinning framebuffer(s)...\n"); | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | 	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { | 
					
						
							|  |  |  | 		struct nouveau_framebuffer *nouveau_fb; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		nouveau_fb = nouveau_framebuffer(crtc->fb); | 
					
						
							|  |  |  | 		if (!nouveau_fb || !nouveau_fb->nvbo) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		nouveau_bo_unpin(nouveau_fb->nvbo); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 14:49:52 +02:00
										 |  |  | 	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { | 
					
						
							|  |  |  | 		struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		nouveau_bo_unmap(nv_crtc->cursor.nvbo); | 
					
						
							|  |  |  | 		nouveau_bo_unpin(nv_crtc->cursor.nvbo); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | 	NV_INFO(dev, "Evicting buffers...\n"); | 
					
						
							|  |  |  | 	ttm_bo_evict_mm(&dev_priv->ttm.bdev, TTM_PL_VRAM); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	NV_INFO(dev, "Idling channels...\n"); | 
					
						
							|  |  |  | 	for (i = 0; i < pfifo->channels; i++) { | 
					
						
							| 
									
										
										
										
											2010-10-06 16:16:59 +10:00
										 |  |  | 		chan = dev_priv->channels.ptr[i]; | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-18 23:57:46 +01:00
										 |  |  | 		if (chan && chan->pushbuf_bo) | 
					
						
							|  |  |  | 			nouveau_channel_idle(chan); | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	pfifo->reassign(dev, false); | 
					
						
							|  |  |  | 	pfifo->disable(dev); | 
					
						
							|  |  |  | 	pfifo->unload_context(dev); | 
					
						
							| 
									
										
										
										
											2011-04-01 13:26:35 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for (e = NVOBJ_ENGINE_NR - 1; e >= 0; e--) { | 
					
						
							| 
									
										
										
										
											2011-07-20 11:22:33 +10:00
										 |  |  | 		if (!dev_priv->eng[e]) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		ret = dev_priv->eng[e]->fini(dev, e, true); | 
					
						
							|  |  |  | 		if (ret) { | 
					
						
							| 
									
										
										
										
											2011-11-06 20:32:03 +01:00
										 |  |  | 			NV_ERROR(dev, "... engine %d failed: %d\n", e, ret); | 
					
						
							| 
									
										
										
										
											2011-07-20 11:22:33 +10:00
										 |  |  | 			goto out_abort; | 
					
						
							| 
									
										
										
										
											2011-04-01 13:26:35 +10:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-25 15:23:59 +10:00
										 |  |  | 	ret = pinstmem->suspend(dev); | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | 	if (ret) { | 
					
						
							|  |  |  | 		NV_ERROR(dev, "... failed: %d\n", ret); | 
					
						
							|  |  |  | 		goto out_abort; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-25 15:23:59 +10:00
										 |  |  | 	NV_INFO(dev, "Suspending GPU objects...\n"); | 
					
						
							|  |  |  | 	ret = nouveau_gpuobj_suspend(dev); | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | 	if (ret) { | 
					
						
							|  |  |  | 		NV_ERROR(dev, "... failed: %d\n", ret); | 
					
						
							| 
									
										
										
										
											2010-10-25 15:23:59 +10:00
										 |  |  | 		pinstmem->resume(dev); | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | 		goto out_abort; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	NV_INFO(dev, "And we're gone!\n"); | 
					
						
							|  |  |  | 	pci_save_state(pdev); | 
					
						
							|  |  |  | 	if (pm_state.event == PM_EVENT_SUSPEND) { | 
					
						
							|  |  |  | 		pci_disable_device(pdev); | 
					
						
							|  |  |  | 		pci_set_power_state(pdev, PCI_D3hot); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | out_abort: | 
					
						
							|  |  |  | 	NV_INFO(dev, "Re-enabling acceleration..\n"); | 
					
						
							| 
									
										
										
										
											2011-04-01 13:26:35 +10:00
										 |  |  | 	for (e = e + 1; e < NVOBJ_ENGINE_NR; e++) { | 
					
						
							|  |  |  | 		if (dev_priv->eng[e]) | 
					
						
							|  |  |  | 			dev_priv->eng[e]->init(dev, e); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | 	pfifo->enable(dev); | 
					
						
							|  |  |  | 	pfifo->reassign(dev, true); | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-01 15:38:10 +10:00
										 |  |  | int | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | nouveau_pci_resume(struct pci_dev *pdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct drm_device *dev = pci_get_drvdata(pdev); | 
					
						
							|  |  |  | 	struct drm_nouveau_private *dev_priv = dev->dev_private; | 
					
						
							|  |  |  | 	struct nouveau_engine *engine = &dev_priv->engine; | 
					
						
							|  |  |  | 	struct drm_crtc *crtc; | 
					
						
							|  |  |  | 	int ret, i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-07 09:20:40 +10:00
										 |  |  | 	if (dev->switch_power_state == DRM_SWITCH_POWER_OFF) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | 	NV_INFO(dev, "We're back, enabling device...\n"); | 
					
						
							|  |  |  | 	pci_set_power_state(pdev, PCI_D0); | 
					
						
							|  |  |  | 	pci_restore_state(pdev); | 
					
						
							|  |  |  | 	if (pci_enable_device(pdev)) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	pci_set_master(dev->pdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-23 20:29:13 +02:00
										 |  |  | 	/* Make sure the AGP controller is in a consistent state */ | 
					
						
							|  |  |  | 	if (dev_priv->gart_info.type == NOUVEAU_GART_AGP) | 
					
						
							|  |  |  | 		nouveau_mem_reset_agp(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-24 17:37:33 +02:00
										 |  |  | 	/* Make the CRTCs accessible */ | 
					
						
							|  |  |  | 	engine->display.early_init(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | 	NV_INFO(dev, "POSTing device...\n"); | 
					
						
							|  |  |  | 	ret = nouveau_run_vbios_init(dev); | 
					
						
							|  |  |  | 	if (ret) | 
					
						
							|  |  |  | 		return ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (dev_priv->gart_info.type == NOUVEAU_GART_AGP) { | 
					
						
							|  |  |  | 		ret = nouveau_mem_init_agp(dev); | 
					
						
							|  |  |  | 		if (ret) { | 
					
						
							|  |  |  | 			NV_ERROR(dev, "error reinitialising AGP: %d\n", ret); | 
					
						
							|  |  |  | 			return ret; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-25 15:23:59 +10:00
										 |  |  | 	NV_INFO(dev, "Restoring GPU objects...\n"); | 
					
						
							|  |  |  | 	nouveau_gpuobj_resume(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | 	NV_INFO(dev, "Reinitialising engines...\n"); | 
					
						
							|  |  |  | 	engine->instmem.resume(dev); | 
					
						
							|  |  |  | 	engine->mc.init(dev); | 
					
						
							|  |  |  | 	engine->timer.init(dev); | 
					
						
							|  |  |  | 	engine->fb.init(dev); | 
					
						
							| 
									
										
										
										
											2011-03-31 15:40:43 +10:00
										 |  |  | 	for (i = 0; i < NVOBJ_ENGINE_NR; i++) { | 
					
						
							|  |  |  | 		if (dev_priv->eng[i]) | 
					
						
							|  |  |  | 			dev_priv->eng[i]->init(dev, i); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | 	engine->fifo.init(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	nouveau_irq_postinstall(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Re-write SKIPS, they'll have been lost over the suspend */ | 
					
						
							|  |  |  | 	if (nouveau_vram_pushbuf) { | 
					
						
							|  |  |  | 		struct nouveau_channel *chan; | 
					
						
							|  |  |  | 		int j; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		for (i = 0; i < dev_priv->engine.fifo.channels; i++) { | 
					
						
							| 
									
										
										
										
											2010-10-06 16:16:59 +10:00
										 |  |  | 			chan = dev_priv->channels.ptr[i]; | 
					
						
							| 
									
										
										
										
											2009-12-16 14:51:13 +10:00
										 |  |  | 			if (!chan || !chan->pushbuf_bo) | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | 				continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			for (j = 0; j < NOUVEAU_DMA_SKIPS; j++) | 
					
						
							|  |  |  | 				nouveau_bo_wr32(chan->pushbuf_bo, i, 0); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-09 22:58:35 +02:00
										 |  |  | 	nouveau_pm_resume(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | 	NV_INFO(dev, "Restoring mode...\n"); | 
					
						
							|  |  |  | 	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { | 
					
						
							|  |  |  | 		struct nouveau_framebuffer *nouveau_fb; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		nouveau_fb = nouveau_framebuffer(crtc->fb); | 
					
						
							|  |  |  | 		if (!nouveau_fb || !nouveau_fb->nvbo) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		nouveau_bo_pin(nouveau_fb->nvbo, TTM_PL_FLAG_VRAM); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 14:49:52 +02:00
										 |  |  | 	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { | 
					
						
							|  |  |  | 		struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		ret = nouveau_bo_pin(nv_crtc->cursor.nvbo, TTM_PL_FLAG_VRAM); | 
					
						
							|  |  |  | 		if (!ret) | 
					
						
							|  |  |  | 			ret = nouveau_bo_map(nv_crtc->cursor.nvbo); | 
					
						
							|  |  |  | 		if (ret) | 
					
						
							|  |  |  | 			NV_ERROR(dev, "Could not pin/map cursor.\n"); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-09 14:31:16 +10:00
										 |  |  | 	nouveau_fbcon_set_suspend(dev, 0); | 
					
						
							|  |  |  | 	nouveau_fbcon_zfill_all(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-09 15:18:47 +10:00
										 |  |  | 	nouveau_display_init(dev); | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Force CLUT to get re-loaded during modeset */ | 
					
						
							|  |  |  | 	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { | 
					
						
							|  |  |  | 		struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		nv_crtc->lut.depth = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	drm_helper_resume_force_mode(dev); | 
					
						
							| 
									
										
										
										
											2010-03-30 05:34:13 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-09 22:58:34 +02:00
										 |  |  | 	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { | 
					
						
							|  |  |  | 		struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); | 
					
						
							|  |  |  | 		u32 offset = nv_crtc->cursor.nvbo->bo.offset; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		nv_crtc->cursor.set_offset(nv_crtc, offset); | 
					
						
							|  |  |  | 		nv_crtc->cursor.set_pos(nv_crtc, nv_crtc->cursor_saved_x, | 
					
						
							|  |  |  | 						 nv_crtc->cursor_saved_y); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-31 07:28:57 -07:00
										 |  |  | static const struct file_operations nouveau_driver_fops = { | 
					
						
							|  |  |  | 	.owner = THIS_MODULE, | 
					
						
							|  |  |  | 	.open = drm_open, | 
					
						
							|  |  |  | 	.release = drm_release, | 
					
						
							|  |  |  | 	.unlocked_ioctl = drm_ioctl, | 
					
						
							|  |  |  | 	.mmap = nouveau_ttm_mmap, | 
					
						
							|  |  |  | 	.poll = drm_poll, | 
					
						
							|  |  |  | 	.fasync = drm_fasync, | 
					
						
							|  |  |  | 	.read = drm_read, | 
					
						
							|  |  |  | #if defined(CONFIG_COMPAT)
 | 
					
						
							|  |  |  | 	.compat_ioctl = nouveau_compat_ioctl, | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	.llseek = noop_llseek, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | static struct drm_driver driver = { | 
					
						
							|  |  |  | 	.driver_features = | 
					
						
							|  |  |  | 		DRIVER_USE_AGP | DRIVER_PCI_DMA | DRIVER_SG | | 
					
						
							| 
									
										
										
										
											2010-06-01 15:56:22 +10:00
										 |  |  | 		DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED | DRIVER_GEM | | 
					
						
							|  |  |  | 		DRIVER_MODESET, | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | 	.load = nouveau_load, | 
					
						
							|  |  |  | 	.firstopen = nouveau_firstopen, | 
					
						
							|  |  |  | 	.lastclose = nouveau_lastclose, | 
					
						
							|  |  |  | 	.unload = nouveau_unload, | 
					
						
							| 
									
										
										
										
											2011-05-31 11:11:28 +10:00
										 |  |  | 	.open = nouveau_open, | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | 	.preclose = nouveau_preclose, | 
					
						
							| 
									
										
										
										
											2011-05-31 11:11:28 +10:00
										 |  |  | 	.postclose = nouveau_postclose, | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | #if defined(CONFIG_DRM_NOUVEAU_DEBUG)
 | 
					
						
							|  |  |  | 	.debugfs_init = nouveau_debugfs_init, | 
					
						
							|  |  |  | 	.debugfs_cleanup = nouveau_debugfs_takedown, | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	.irq_preinstall = nouveau_irq_preinstall, | 
					
						
							|  |  |  | 	.irq_postinstall = nouveau_irq_postinstall, | 
					
						
							|  |  |  | 	.irq_uninstall = nouveau_irq_uninstall, | 
					
						
							|  |  |  | 	.irq_handler = nouveau_irq_handler, | 
					
						
							| 
									
										
										
										
											2010-10-21 18:19:29 +02:00
										 |  |  | 	.get_vblank_counter = drm_vblank_count, | 
					
						
							|  |  |  | 	.enable_vblank = nouveau_vblank_enable, | 
					
						
							|  |  |  | 	.disable_vblank = nouveau_vblank_disable, | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | 	.reclaim_buffers = drm_core_reclaim_buffers, | 
					
						
							|  |  |  | 	.ioctls = nouveau_ioctls, | 
					
						
							| 
									
										
										
										
											2011-10-31 07:28:57 -07:00
										 |  |  | 	.fops = &nouveau_driver_fops, | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | 	.gem_init_object = nouveau_gem_object_new, | 
					
						
							|  |  |  | 	.gem_free_object = nouveau_gem_object_del, | 
					
						
							| 
									
										
										
										
											2011-06-03 16:18:26 +10:00
										 |  |  | 	.gem_open_object = nouveau_gem_object_open, | 
					
						
							|  |  |  | 	.gem_close_object = nouveau_gem_object_close, | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-30 08:55:50 +10:00
										 |  |  | 	.dumb_create = nouveau_display_dumb_create, | 
					
						
							|  |  |  | 	.dumb_map_offset = nouveau_display_dumb_map_offset, | 
					
						
							|  |  |  | 	.dumb_destroy = nouveau_display_dumb_destroy, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | 	.name = DRIVER_NAME, | 
					
						
							|  |  |  | 	.desc = DRIVER_DESC, | 
					
						
							|  |  |  | #ifdef GIT_REVISION
 | 
					
						
							|  |  |  | 	.date = GIT_REVISION, | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 	.date = DRIVER_DATE, | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	.major = DRIVER_MAJOR, | 
					
						
							|  |  |  | 	.minor = DRIVER_MINOR, | 
					
						
							|  |  |  | 	.patchlevel = DRIVER_PATCHLEVEL, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-15 03:16:38 +10:00
										 |  |  | static struct pci_driver nouveau_pci_driver = { | 
					
						
							|  |  |  | 		.name = DRIVER_NAME, | 
					
						
							|  |  |  | 		.id_table = pciidlist, | 
					
						
							|  |  |  | 		.probe = nouveau_pci_probe, | 
					
						
							|  |  |  | 		.remove = nouveau_pci_remove, | 
					
						
							|  |  |  | 		.suspend = nouveau_pci_suspend, | 
					
						
							|  |  |  | 		.resume = nouveau_pci_resume | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | static int __init nouveau_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	driver.num_ioctls = nouveau_max_ioctl; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (nouveau_modeset == -1) { | 
					
						
							|  |  |  | #ifdef CONFIG_VGA_CONSOLE
 | 
					
						
							|  |  |  | 		if (vgacon_text_force()) | 
					
						
							|  |  |  | 			nouveau_modeset = 0; | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 			nouveau_modeset = 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-01 15:56:22 +10:00
										 |  |  | 	if (!nouveau_modeset) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-01 15:56:22 +10:00
										 |  |  | 	nouveau_register_dsm_handler(); | 
					
						
							| 
									
										
										
										
											2010-12-15 03:16:38 +10:00
										 |  |  | 	return drm_pci_init(&driver, &nouveau_pci_driver); | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void __exit nouveau_exit(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-06-01 15:56:22 +10:00
										 |  |  | 	if (!nouveau_modeset) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-15 03:16:38 +10:00
										 |  |  | 	drm_pci_exit(&driver, &nouveau_pci_driver); | 
					
						
							| 
									
										
										
										
											2010-02-01 15:38:10 +10:00
										 |  |  | 	nouveau_unregister_dsm_handler(); | 
					
						
							| 
									
										
										
										
											2009-12-11 19:24:15 +10:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module_init(nouveau_init); | 
					
						
							|  |  |  | module_exit(nouveau_exit); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MODULE_AUTHOR(DRIVER_AUTHOR); | 
					
						
							|  |  |  | MODULE_DESCRIPTION(DRIVER_DESC); | 
					
						
							|  |  |  | MODULE_LICENSE("GPL and additional rights"); |