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