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