Intel GMA 3600

来自 Arch Linux 中文维基

本文或本节需要翻译。要贡献翻译,请访问简体中文翻译团队

附注: No updates since 2017, changes have occurred on the English page since. (在 Talk:Intel GMA 3600# 中讨论)

Intel GMA3600 是基于 PowerVR SGX 545 显示核心的集成显卡,搭载于 Atom N2600,N2800,D2550 中。

Linux 内核从 3.5 版本开始支持此设备。

Xorg 驱动[编辑 | 编辑源代码]

目前没有单独的 Xorg 驱动,请使用 xorg-server 提供的 modesetting 驱动:

/etc/X11/xorg.conf.d/20-gpudriver.conf
Section "Device"
    Identifier "Intel GMA3600"
    Driver     "modesetting"
EndSection

modesetting 驱动可以使用 xrandr 禁用/启用 LVDS, VGA 等端口,修改分辨率.

下面设置可以禁用 LVDS 并强制启用 VGA:

/etc/X11/xorg.conf.d/20-gpudriver.conf
Section "Device"
    Identifier "Intel GMA3600"
    Driver     "modesetting"
    Option     "Monitor-LVDS-0" "Ignore"
    Option     "Monitor-VGA-0" "Monitor"
EndSection

Section "Monitor"
    Identifier "Ignore"
    Option     "Ignore"
EndSection

Section "Monitor"
    Identifier "Monitor"
    Option     "Enable"
EndSection

问题解决[编辑 | 编辑源代码]

恢复后黑屏[编辑 | 编辑源代码]

如果恢复系统后黑屏,请执行:

# touch /etc/pm/sleep.d/99video

播放视频[编辑 | 编辑源代码]

目前没有办法使用视频加速,可以用 Atom CPU 用多线程解码:

mplayer -lavdopts threads=4 -fs myvideo.avi

参阅[编辑 | 编辑源代码]