]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/gpu/drm/nouveau/nouveau_drv.c
drm/nvc1/gr: switch on acceleration support
[mirror_ubuntu-bionic-kernel.git] / drivers / gpu / drm / nouveau / nouveau_drv.c
CommitLineData
6ee73861
BS
1/*
2 * Copyright 2005 Stephane Marchesin.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 * OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25#include <linux/console.h>
26
27#include "drmP.h"
28#include "drm.h"
29#include "drm_crtc_helper.h"
30#include "nouveau_drv.h"
31#include "nouveau_hw.h"
32#include "nouveau_fb.h"
33#include "nouveau_fbcon.h"
64f1c11a 34#include "nouveau_pm.h"
6ee73861
BS
35#include "nv50_display.h"
36
37#include "drm_pciids.h"
38
de5899bd
FJ
39MODULE_PARM_DESC(agpmode, "AGP mode (0 to disable AGP)");
40int nouveau_agpmode = -1;
41module_param_named(agpmode, nouveau_agpmode, int, 0400);
6ee73861
BS
42
43MODULE_PARM_DESC(modeset, "Enable kernel modesetting");
44static int nouveau_modeset = -1; /* kms */
45module_param_named(modeset, nouveau_modeset, int, 0400);
46
47MODULE_PARM_DESC(vbios, "Override default VBIOS location");
48char *nouveau_vbios;
49module_param_named(vbios, nouveau_vbios, charp, 0400);
50
51MODULE_PARM_DESC(vram_pushbuf, "Force DMA push buffers to be in VRAM");
52int nouveau_vram_pushbuf;
53module_param_named(vram_pushbuf, nouveau_vram_pushbuf, int, 0400);
54
55MODULE_PARM_DESC(vram_notify, "Force DMA notifiers to be in VRAM");
2dfe36b1 56int nouveau_vram_notify = 0;
6ee73861
BS
57module_param_named(vram_notify, nouveau_vram_notify, int, 0400);
58
59MODULE_PARM_DESC(duallink, "Allow dual-link TMDS (>=GeForce 8)");
60int nouveau_duallink = 1;
61module_param_named(duallink, nouveau_duallink, int, 0400);
62
63MODULE_PARM_DESC(uscript_lvds, "LVDS output script table ID (>=GeForce 8)");
64int nouveau_uscript_lvds = -1;
65module_param_named(uscript_lvds, nouveau_uscript_lvds, int, 0400);
66
67MODULE_PARM_DESC(uscript_tmds, "TMDS output script table ID (>=GeForce 8)");
68int nouveau_uscript_tmds = -1;
69module_param_named(uscript_tmds, nouveau_uscript_tmds, int, 0400);
70
a1470890
BS
71MODULE_PARM_DESC(ignorelid, "Ignore ACPI lid status");
72int nouveau_ignorelid = 0;
73module_param_named(ignorelid, nouveau_ignorelid, int, 0400);
74
81e2d422 75MODULE_PARM_DESC(noaccel, "Disable all acceleration");
a32ed69d
MK
76int nouveau_noaccel = 0;
77module_param_named(noaccel, nouveau_noaccel, int, 0400);
78
81e2d422 79MODULE_PARM_DESC(nofbaccel, "Disable fbcon acceleration");
a32ed69d
MK
80int nouveau_nofbaccel = 0;
81module_param_named(nofbaccel, nouveau_nofbaccel, int, 0400);
82
0cba1b76
MK
83MODULE_PARM_DESC(force_post, "Force POST");
84int nouveau_force_post = 0;
85module_param_named(force_post, nouveau_force_post, int, 0400);
86
da647d5b
BS
87MODULE_PARM_DESC(override_conntype, "Ignore DCB connector type");
88int nouveau_override_conntype = 0;
89module_param_named(override_conntype, nouveau_override_conntype, int, 0400);
90
f4053509
BS
91MODULE_PARM_DESC(tv_disable, "Disable TV-out detection\n");
92int nouveau_tv_disable = 0;
93module_param_named(tv_disable, nouveau_tv_disable, int, 0400);
94
6ee73861
BS
95MODULE_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.");
100char *nouveau_tv_norm;
101module_param_named(tv_norm, nouveau_tv_norm, charp, 0400);
102
103MODULE_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+). ");
107int nouveau_reg_debug;
108module_param_named(reg_debug, nouveau_reg_debug, int, 0600);
109
6f876986
BS
110MODULE_PARM_DESC(perflvl, "Performance level (default: boot)\n");
111char *nouveau_perflvl;
112module_param_named(perflvl, nouveau_perflvl, charp, 0400);
113
114MODULE_PARM_DESC(perflvl_wr, "Allow perflvl changes (warning: dangerous!)\n");
115int nouveau_perflvl_wr;
116module_param_named(perflvl_wr, nouveau_perflvl_wr, int, 0400);
117
35fa2f2a
BS
118MODULE_PARM_DESC(msi, "Enable MSI (default: off)\n");
119int nouveau_msi;
120module_param_named(msi, nouveau_msi, int, 0400);
121
6ee73861
BS
122int nouveau_fbpercrtc;
123#if 0
124module_param_named(fbpercrtc, nouveau_fbpercrtc, int, 0400);
125#endif
126
127static 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
141MODULE_DEVICE_TABLE(pci, pciidlist);
142
143static struct drm_driver driver;
144
145static int __devinit
146nouveau_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
147{
dcdb1674 148 return drm_get_pci_dev(pdev, ent, &driver);
6ee73861
BS
149}
150
151static void
152nouveau_pci_remove(struct pci_dev *pdev)
153{
154 struct drm_device *dev = pci_get_drvdata(pdev);
155
156 drm_put_dev(dev);
157}
158
6a9ee8af 159int
6ee73861
BS
160nouveau_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;
6ee73861
BS
165 struct nouveau_fifo_engine *pfifo = &dev_priv->engine.fifo;
166 struct nouveau_channel *chan;
167 struct drm_crtc *crtc;
92abe749 168 int ret, i, e;
6ee73861 169
6ee73861
BS
170 if (pm_state.event == PM_EVENT_PRETHAW)
171 return 0;
172
5bcf719b
DA
173 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
174 return 0;
175
81441570 176 NV_INFO(dev, "Disabling fbcon acceleration...\n");
38651674 177 nouveau_fbcon_save_disable_accel(dev);
6ee73861 178
81441570 179 NV_INFO(dev, "Unpinning framebuffer(s)...\n");
6ee73861
BS
180 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
181 struct nouveau_framebuffer *nouveau_fb;
182
183 nouveau_fb = nouveau_framebuffer(crtc->fb);
184 if (!nouveau_fb || !nouveau_fb->nvbo)
185 continue;
186
187 nouveau_bo_unpin(nouveau_fb->nvbo);
188 }
189
b334f2b3
MM
190 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
191 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
192
193 nouveau_bo_unmap(nv_crtc->cursor.nvbo);
194 nouveau_bo_unpin(nv_crtc->cursor.nvbo);
195 }
196
6ee73861
BS
197 NV_INFO(dev, "Evicting buffers...\n");
198 ttm_bo_evict_mm(&dev_priv->ttm.bdev, TTM_PL_VRAM);
199
200 NV_INFO(dev, "Idling channels...\n");
201 for (i = 0; i < pfifo->channels; i++) {
cff5c133 202 chan = dev_priv->channels.ptr[i];
6ee73861 203
6dccd311
FJ
204 if (chan && chan->pushbuf_bo)
205 nouveau_channel_idle(chan);
6ee73861
BS
206 }
207
6ee73861
BS
208 pfifo->reassign(dev, false);
209 pfifo->disable(dev);
210 pfifo->unload_context(dev);
92abe749
BS
211
212 for (e = NVOBJ_ENGINE_NR - 1; e >= 0; e--) {
213 if (dev_priv->eng[e]) {
214 ret = dev_priv->eng[e]->fini(dev, e);
215 if (ret)
216 goto out_abort;
217 }
218 }
6ee73861 219
dc1e5c0d 220 ret = pinstmem->suspend(dev);
6ee73861
BS
221 if (ret) {
222 NV_ERROR(dev, "... failed: %d\n", ret);
223 goto out_abort;
224 }
225
dc1e5c0d
BS
226 NV_INFO(dev, "Suspending GPU objects...\n");
227 ret = nouveau_gpuobj_suspend(dev);
6ee73861
BS
228 if (ret) {
229 NV_ERROR(dev, "... failed: %d\n", ret);
dc1e5c0d 230 pinstmem->resume(dev);
6ee73861
BS
231 goto out_abort;
232 }
233
234 NV_INFO(dev, "And we're gone!\n");
235 pci_save_state(pdev);
236 if (pm_state.event == PM_EVENT_SUSPEND) {
237 pci_disable_device(pdev);
238 pci_set_power_state(pdev, PCI_D3hot);
239 }
240
ac751efa 241 console_lock();
38651674 242 nouveau_fbcon_set_suspend(dev, 1);
ac751efa 243 console_unlock();
38651674 244 nouveau_fbcon_restore_accel(dev);
6ee73861
BS
245 return 0;
246
247out_abort:
248 NV_INFO(dev, "Re-enabling acceleration..\n");
92abe749
BS
249 for (e = e + 1; e < NVOBJ_ENGINE_NR; e++) {
250 if (dev_priv->eng[e])
251 dev_priv->eng[e]->init(dev, e);
252 }
6ee73861
BS
253 pfifo->enable(dev);
254 pfifo->reassign(dev, true);
6ee73861
BS
255 return ret;
256}
257
6a9ee8af 258int
6ee73861
BS
259nouveau_pci_resume(struct pci_dev *pdev)
260{
261 struct drm_device *dev = pci_get_drvdata(pdev);
262 struct drm_nouveau_private *dev_priv = dev->dev_private;
263 struct nouveau_engine *engine = &dev_priv->engine;
264 struct drm_crtc *crtc;
6ee73861
BS
265 int ret, i;
266
5bcf719b
DA
267 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
268 return 0;
269
38651674 270 nouveau_fbcon_save_disable_accel(dev);
6ee73861
BS
271
272 NV_INFO(dev, "We're back, enabling device...\n");
273 pci_set_power_state(pdev, PCI_D0);
274 pci_restore_state(pdev);
275 if (pci_enable_device(pdev))
276 return -1;
277 pci_set_master(dev->pdev);
278
e04d8e82
FJ
279 /* Make sure the AGP controller is in a consistent state */
280 if (dev_priv->gart_info.type == NOUVEAU_GART_AGP)
281 nouveau_mem_reset_agp(dev);
282
c88c2e06
FJ
283 /* Make the CRTCs accessible */
284 engine->display.early_init(dev);
285
6ee73861
BS
286 NV_INFO(dev, "POSTing device...\n");
287 ret = nouveau_run_vbios_init(dev);
288 if (ret)
289 return ret;
290
64f1c11a
BS
291 nouveau_pm_resume(dev);
292
6ee73861
BS
293 if (dev_priv->gart_info.type == NOUVEAU_GART_AGP) {
294 ret = nouveau_mem_init_agp(dev);
295 if (ret) {
296 NV_ERROR(dev, "error reinitialising AGP: %d\n", ret);
297 return ret;
298 }
299 }
300
dc1e5c0d
BS
301 NV_INFO(dev, "Restoring GPU objects...\n");
302 nouveau_gpuobj_resume(dev);
303
6ee73861
BS
304 NV_INFO(dev, "Reinitialising engines...\n");
305 engine->instmem.resume(dev);
306 engine->mc.init(dev);
307 engine->timer.init(dev);
308 engine->fb.init(dev);
6dfdd7a6
BS
309 for (i = 0; i < NVOBJ_ENGINE_NR; i++) {
310 if (dev_priv->eng[i])
311 dev_priv->eng[i]->init(dev, i);
312 }
6ee73861
BS
313 engine->fifo.init(dev);
314
6ee73861
BS
315 nouveau_irq_postinstall(dev);
316
317 /* Re-write SKIPS, they'll have been lost over the suspend */
318 if (nouveau_vram_pushbuf) {
319 struct nouveau_channel *chan;
320 int j;
321
322 for (i = 0; i < dev_priv->engine.fifo.channels; i++) {
cff5c133 323 chan = dev_priv->channels.ptr[i];
3c8868d3 324 if (!chan || !chan->pushbuf_bo)
6ee73861
BS
325 continue;
326
327 for (j = 0; j < NOUVEAU_DMA_SKIPS; j++)
328 nouveau_bo_wr32(chan->pushbuf_bo, i, 0);
329 }
330 }
331
332 NV_INFO(dev, "Restoring mode...\n");
333 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
334 struct nouveau_framebuffer *nouveau_fb;
335
336 nouveau_fb = nouveau_framebuffer(crtc->fb);
337 if (!nouveau_fb || !nouveau_fb->nvbo)
338 continue;
339
340 nouveau_bo_pin(nouveau_fb->nvbo, TTM_PL_FLAG_VRAM);
341 }
342
b334f2b3
MM
343 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
344 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
b334f2b3
MM
345
346 ret = nouveau_bo_pin(nv_crtc->cursor.nvbo, TTM_PL_FLAG_VRAM);
347 if (!ret)
348 ret = nouveau_bo_map(nv_crtc->cursor.nvbo);
349 if (ret)
350 NV_ERROR(dev, "Could not pin/map cursor.\n");
351 }
352
c88c2e06 353 engine->display.init(dev);
6ee73861 354
b334f2b3
MM
355 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
356 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
4c136142 357 u32 offset = nv_crtc->cursor.nvbo->bo.mem.start << PAGE_SHIFT;
b334f2b3 358
4c136142 359 nv_crtc->cursor.set_offset(nv_crtc, offset);
b334f2b3 360 nv_crtc->cursor.set_pos(nv_crtc, nv_crtc->cursor_saved_x,
4c136142 361 nv_crtc->cursor_saved_y);
b334f2b3
MM
362 }
363
6ee73861
BS
364 /* Force CLUT to get re-loaded during modeset */
365 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
366 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
367
368 nv_crtc->lut.depth = 0;
369 }
370
ac751efa 371 console_lock();
38651674 372 nouveau_fbcon_set_suspend(dev, 0);
ac751efa 373 console_unlock();
6ee73861 374
38651674 375 nouveau_fbcon_zfill_all(dev);
6ee73861
BS
376
377 drm_helper_resume_force_mode(dev);
38651674
DA
378
379 nouveau_fbcon_restore_accel(dev);
6ee73861
BS
380 return 0;
381}
382
383static struct drm_driver driver = {
384 .driver_features =
385 DRIVER_USE_AGP | DRIVER_PCI_DMA | DRIVER_SG |
cd0b072f
BS
386 DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED | DRIVER_GEM |
387 DRIVER_MODESET,
6ee73861
BS
388 .load = nouveau_load,
389 .firstopen = nouveau_firstopen,
390 .lastclose = nouveau_lastclose,
391 .unload = nouveau_unload,
392 .preclose = nouveau_preclose,
393#if defined(CONFIG_DRM_NOUVEAU_DEBUG)
394 .debugfs_init = nouveau_debugfs_init,
395 .debugfs_cleanup = nouveau_debugfs_takedown,
396#endif
397 .irq_preinstall = nouveau_irq_preinstall,
398 .irq_postinstall = nouveau_irq_postinstall,
399 .irq_uninstall = nouveau_irq_uninstall,
400 .irq_handler = nouveau_irq_handler,
042206c0
FJ
401 .get_vblank_counter = drm_vblank_count,
402 .enable_vblank = nouveau_vblank_enable,
403 .disable_vblank = nouveau_vblank_disable,
6ee73861 404 .reclaim_buffers = drm_core_reclaim_buffers,
6ee73861
BS
405 .ioctls = nouveau_ioctls,
406 .fops = {
407 .owner = THIS_MODULE,
408 .open = drm_open,
409 .release = drm_release,
ed8b6704 410 .unlocked_ioctl = drm_ioctl,
6ee73861
BS
411 .mmap = nouveau_ttm_mmap,
412 .poll = drm_poll,
413 .fasync = drm_fasync,
042206c0 414 .read = drm_read,
6ee73861
BS
415#if defined(CONFIG_COMPAT)
416 .compat_ioctl = nouveau_compat_ioctl,
417#endif
dc880abe 418 .llseek = noop_llseek,
6ee73861 419 },
6ee73861
BS
420
421 .gem_init_object = nouveau_gem_object_new,
422 .gem_free_object = nouveau_gem_object_del,
423
424 .name = DRIVER_NAME,
425 .desc = DRIVER_DESC,
426#ifdef GIT_REVISION
427 .date = GIT_REVISION,
428#else
429 .date = DRIVER_DATE,
430#endif
431 .major = DRIVER_MAJOR,
432 .minor = DRIVER_MINOR,
433 .patchlevel = DRIVER_PATCHLEVEL,
434};
435
8410ea3b
DA
436static struct pci_driver nouveau_pci_driver = {
437 .name = DRIVER_NAME,
438 .id_table = pciidlist,
439 .probe = nouveau_pci_probe,
440 .remove = nouveau_pci_remove,
441 .suspend = nouveau_pci_suspend,
442 .resume = nouveau_pci_resume
443};
444
6ee73861
BS
445static int __init nouveau_init(void)
446{
447 driver.num_ioctls = nouveau_max_ioctl;
448
449 if (nouveau_modeset == -1) {
450#ifdef CONFIG_VGA_CONSOLE
451 if (vgacon_text_force())
452 nouveau_modeset = 0;
453 else
454#endif
455 nouveau_modeset = 1;
456 }
457
cd0b072f
BS
458 if (!nouveau_modeset)
459 return 0;
6ee73861 460
cd0b072f 461 nouveau_register_dsm_handler();
8410ea3b 462 return drm_pci_init(&driver, &nouveau_pci_driver);
6ee73861
BS
463}
464
465static void __exit nouveau_exit(void)
466{
cd0b072f
BS
467 if (!nouveau_modeset)
468 return;
469
8410ea3b 470 drm_pci_exit(&driver, &nouveau_pci_driver);
6a9ee8af 471 nouveau_unregister_dsm_handler();
6ee73861
BS
472}
473
474module_init(nouveau_init);
475module_exit(nouveau_exit);
476
477MODULE_AUTHOR(DRIVER_AUTHOR);
478MODULE_DESCRIPTION(DRIVER_DESC);
479MODULE_LICENSE("GPL and additional rights");