Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
awilliam
GitHub Repository: awilliam/linux-vfio
Path: blob/master/drivers/gpu/drm/nouveau/nouveau_drv.c
15112 views
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"
34
#include "nouveau_pm.h"
35
#include "nv50_display.h"
36
37
#include "drm_pciids.h"
38
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);
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");
56
int nouveau_vram_notify = 0;
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
71
MODULE_PARM_DESC(ignorelid, "Ignore ACPI lid status");
72
int nouveau_ignorelid = 0;
73
module_param_named(ignorelid, nouveau_ignorelid, int, 0400);
74
75
MODULE_PARM_DESC(noaccel, "Disable all acceleration");
76
int nouveau_noaccel = 0;
77
module_param_named(noaccel, nouveau_noaccel, int, 0400);
78
79
MODULE_PARM_DESC(nofbaccel, "Disable fbcon acceleration");
80
int nouveau_nofbaccel = 0;
81
module_param_named(nofbaccel, nouveau_nofbaccel, int, 0400);
82
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
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
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
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
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
118
MODULE_PARM_DESC(msi, "Enable MSI (default: off)\n");
119
int nouveau_msi;
120
module_param_named(msi, nouveau_msi, int, 0400);
121
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
{
148
return drm_get_pci_dev(pdev, ent, &driver);
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
159
int
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_fifo_engine *pfifo = &dev_priv->engine.fifo;
166
struct nouveau_channel *chan;
167
struct drm_crtc *crtc;
168
int ret, i, e;
169
170
if (pm_state.event == PM_EVENT_PRETHAW)
171
return 0;
172
173
if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
174
return 0;
175
176
NV_INFO(dev, "Disabling fbcon acceleration...\n");
177
nouveau_fbcon_save_disable_accel(dev);
178
179
NV_INFO(dev, "Unpinning framebuffer(s)...\n");
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
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
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++) {
202
chan = dev_priv->channels.ptr[i];
203
204
if (chan && chan->pushbuf_bo)
205
nouveau_channel_idle(chan);
206
}
207
208
pfifo->reassign(dev, false);
209
pfifo->disable(dev);
210
pfifo->unload_context(dev);
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
}
219
220
ret = pinstmem->suspend(dev);
221
if (ret) {
222
NV_ERROR(dev, "... failed: %d\n", ret);
223
goto out_abort;
224
}
225
226
NV_INFO(dev, "Suspending GPU objects...\n");
227
ret = nouveau_gpuobj_suspend(dev);
228
if (ret) {
229
NV_ERROR(dev, "... failed: %d\n", ret);
230
pinstmem->resume(dev);
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
241
console_lock();
242
nouveau_fbcon_set_suspend(dev, 1);
243
console_unlock();
244
nouveau_fbcon_restore_accel(dev);
245
return 0;
246
247
out_abort:
248
NV_INFO(dev, "Re-enabling acceleration..\n");
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
}
253
pfifo->enable(dev);
254
pfifo->reassign(dev, true);
255
return ret;
256
}
257
258
int
259
nouveau_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;
265
int ret, i;
266
267
if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
268
return 0;
269
270
nouveau_fbcon_save_disable_accel(dev);
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
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
283
/* Make the CRTCs accessible */
284
engine->display.early_init(dev);
285
286
NV_INFO(dev, "POSTing device...\n");
287
ret = nouveau_run_vbios_init(dev);
288
if (ret)
289
return ret;
290
291
nouveau_pm_resume(dev);
292
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
301
NV_INFO(dev, "Restoring GPU objects...\n");
302
nouveau_gpuobj_resume(dev);
303
304
NV_INFO(dev, "Reinitialising engines...\n");
305
engine->instmem.resume(dev);
306
engine->mc.init(dev);
307
engine->timer.init(dev);
308
engine->fb.init(dev);
309
for (i = 0; i < NVOBJ_ENGINE_NR; i++) {
310
if (dev_priv->eng[i])
311
dev_priv->eng[i]->init(dev, i);
312
}
313
engine->fifo.init(dev);
314
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++) {
323
chan = dev_priv->channels.ptr[i];
324
if (!chan || !chan->pushbuf_bo)
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
343
list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
344
struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
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
353
engine->display.init(dev);
354
355
list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
356
struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
357
u32 offset = nv_crtc->cursor.nvbo->bo.mem.start << PAGE_SHIFT;
358
359
nv_crtc->cursor.set_offset(nv_crtc, offset);
360
nv_crtc->cursor.set_pos(nv_crtc, nv_crtc->cursor_saved_x,
361
nv_crtc->cursor_saved_y);
362
}
363
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
371
console_lock();
372
nouveau_fbcon_set_suspend(dev, 0);
373
console_unlock();
374
375
nouveau_fbcon_zfill_all(dev);
376
377
drm_helper_resume_force_mode(dev);
378
379
nouveau_fbcon_restore_accel(dev);
380
return 0;
381
}
382
383
static struct drm_driver driver = {
384
.driver_features =
385
DRIVER_USE_AGP | DRIVER_PCI_DMA | DRIVER_SG |
386
DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED | DRIVER_GEM |
387
DRIVER_MODESET,
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,
401
.get_vblank_counter = drm_vblank_count,
402
.enable_vblank = nouveau_vblank_enable,
403
.disable_vblank = nouveau_vblank_disable,
404
.reclaim_buffers = drm_core_reclaim_buffers,
405
.ioctls = nouveau_ioctls,
406
.fops = {
407
.owner = THIS_MODULE,
408
.open = drm_open,
409
.release = drm_release,
410
.unlocked_ioctl = drm_ioctl,
411
.mmap = nouveau_ttm_mmap,
412
.poll = drm_poll,
413
.fasync = drm_fasync,
414
.read = drm_read,
415
#if defined(CONFIG_COMPAT)
416
.compat_ioctl = nouveau_compat_ioctl,
417
#endif
418
.llseek = noop_llseek,
419
},
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
436
static 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
445
static 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
458
if (!nouveau_modeset)
459
return 0;
460
461
nouveau_register_dsm_handler();
462
return drm_pci_init(&driver, &nouveau_pci_driver);
463
}
464
465
static void __exit nouveau_exit(void)
466
{
467
if (!nouveau_modeset)
468
return;
469
470
drm_pci_exit(&driver, &nouveau_pci_driver);
471
nouveau_unregister_dsm_handler();
472
}
473
474
module_init(nouveau_init);
475
module_exit(nouveau_exit);
476
477
MODULE_AUTHOR(DRIVER_AUTHOR);
478
MODULE_DESCRIPTION(DRIVER_DESC);
479
MODULE_LICENSE("GPL and additional rights");
480
481