Differences between revisions 26 and 27
Revision 26 as of 2010-10-30 14:00:24
Size: 4283
Editor: ?wzab
Comment:
Revision 27 as of 2010-11-15 10:10:20
Size: 4597
Editor: SvenJoachim
Comment: Add nouveau
Deletions are marked like this. Additions are marked like this.
Line 48: Line 48:
== Nvidia ==

=== nouveau ===

KMS is enabled by default on Linux in Debian kernels from Squeeze on, so no hand modification should be necessary.

==== Known bugs ====

 * nv Xorg driver (DebianPkg:xserver-xorg-video-nv) and the proprietary 3D driver (DebianPkg:nvidia-glx) are incompatible with KMS.

Translation(s): none


KernelModesetting

Kernel Mode Setting (KMS) provides faster mode switching for X and console. It also provides native-resolution VTs on some laptops and netbooks which, prior to this, would use some standard mode, e.g. 800×600 on a 1024×600 panel.

To enable, you need:

  • a kernel image ≥ 2.6.29 (in Sid since 2009-04-04)
  • supported graphics card

Intel

i915

From xserver-xorg-video-intel version 2:2.9.1-2, KMS is enabled by default on Linux, by the way of the file /etc/modprobe.d/i915-kms.conf. So from Squeeze on, no hand modification should be necessary anymore.

Known bugs

  • vbetool
    • Running this will cause X to fail to start up (black screen except for a static cursor at the top left, can't switch vt), and may cause other problems. (This is a kernel bug.) To avoid this, set SAVE_VBE_STATE=false in /etc/default/acpi-support.

  • linux-2.6
    • Do not load any framebuffer drivers other than inteldrmfb (which is provided by i915) if you enable KMS, else you will probably see hard lockups when trying to start X.
    • If you launch your kernel with a vga=xxx option on the boot line, it will fail (black screen).
  • 945GM
    • Enabling KMS on this chipset may cause a GPU crash: (link)

  • 945GM and 82865G
    • In my system (HP/Compaq nx7300 with 945GM) enabling of KMS when loading the i915 module caused blank screen (seems not to be related to incorrect mode, rather the system got suspended or hibernated) when booting the system. Problem could be cured by changing of /etc/modprobe.d/i915-kms.conf to options i915 modeset=0. What's interesting, booting with acpi=off also cured the problem. The same problem occured in a desktop system with 82865G (link)

    • After last (ca. 20th October 2010) update of my debian/testing systems, the xserver-xorg-video-intel stopped to work with i915 modeset set to 0. Therefore the workaround mentioned in the previous point was not applicable any more. Setting of i915 modeset to 1 still caused blank screen, as soon as the i915 module is loaded. After more investigations I've found, that the problem is related to framebuffer console. If KMS is switched on, the framebuffer console support must be selected. In my systems (self compiled kernel without initial ramdisk) I had to to set CONFIG_FRAMEBUFFER_CONSOLE=y, CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y . Maybe with initial ramdisk, compiling it as module would be sufficient, but I've not checked it. Unfortunately the kernel "make menuconfig" doesn't check if the framebuffer console support is selected when CONFIG_DRM_I915_KMS is set to "y" (LKML, 601558, 600802).

ATI

radeon

From xserver-xorg-video-radeon version 1:6.12.192-2, KMS is enabled by default on Linux, by the way of the file /etc/modprobe.d/radeon-kms.conf. So from Squeeze on, no hand modification should be necessary anymore.

Known bugs

Nvidia

nouveau

KMS is enabled by default on Linux in Debian kernels from Squeeze on, so no hand modification should be necessary.

Known bugs

Disabling

KMS is disabled at run time in Debian kernel images by default.1 It is enabled via modprobe configuration files provided by the xserver-xorg-video-intel and xserver-xorg-video-radeon packages.

To disable KMS use, either:

  • Boot with the nomodeset kernel command line parameter.

  • Edit /etc/modprobe.d/i915-kms.conf or /etc/modprobe.d/radeon-kms.conf accordingly.

Resources