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

參閱[編輯 | 編輯原始碼]