~ubuntu-branches/ubuntu/natty/linux-backports-modules-2.6.32/natty

« back to all changes in this revision

Viewing changes to updates/nouveau/nouveau/nouveau_drv.c

  • Committer: Bazaar Package Importer
  • Author(s): Andy Whitcroft, Andy Whitcroft, Christopher James Halse Rogers, Upstream Kernel Changes
  • Date: 2010-02-26 19:06:43 UTC
  • Revision ID: james.westby@ubuntu.com-20100226190643-t5wuxgcpwkbbo3m6
Tags: 2.6.32-14.4
[ Andy Whitcroft ]

* UPDATE_NOUVEAU -- add support for dropping patches on top
* update Nouveau to v2.6.33

[ Christopher James Halse Rogers ]

* fix legacy paths in UPDATE_NOUVEAU
* pull in ctxprog voodoo from Nouveau upstream
  - LP: #528190
* update Nouveau package description to mention lbm-nouveau metapackage
* update VCS-Git field to point to lucid lbm

[ Upstream Kernel Changes ]

* drm/nv50: Implement ctxprog/state generation.
* drm/nv50: Remove redundant/incorrect ctxvals initialisation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
module_param_named(vram_pushbuf, nouveau_vram_pushbuf, int, 0400);
57
57
 
58
58
MODULE_PARM_DESC(vram_notify, "Force DMA notifiers to be in VRAM");
59
 
int nouveau_vram_notify;
 
59
int nouveau_vram_notify = 1;
60
60
module_param_named(vram_notify, nouveau_vram_notify, int, 0400);
61
61
 
62
62
MODULE_PARM_DESC(duallink, "Allow dual-link TMDS (>=GeForce 8)");
75
75
int nouveau_ignorelid = 0;
76
76
module_param_named(ignorelid, nouveau_ignorelid, int, 0400);
77
77
 
 
78
MODULE_PARM_DESC(noagp, "Disable all acceleration");
 
79
int nouveau_noaccel = 0;
 
80
module_param_named(noaccel, nouveau_noaccel, int, 0400);
 
81
 
 
82
MODULE_PARM_DESC(noagp, "Disable fbcon acceleration");
 
83
int nouveau_nofbaccel = 0;
 
84
module_param_named(nofbaccel, nouveau_nofbaccel, int, 0400);
 
85
 
78
86
MODULE_PARM_DESC(tv_norm, "Default TV norm.\n"
79
87
                 "\t\tSupported: PAL, PAL-M, PAL-N, PAL-Nc, NTSC-M, NTSC-J,\n"
80
88
                 "\t\t\thd480i, hd480p, hd576i, hd576p, hd720p, hd1080i.\n"