Intel GMA 3600

来自 ArchWiki

Intel GMA 3600 系列是基于 PowerVR SGX 545 图形核心的集成显卡系列。它用于 Intel Cedarview CPU(Atom D2500、D2550、D2700、N2600 和 N2800)。

Linux 内核自 3.5 版本开始提供支持,但自 4.15 版本起,相关的内核驱动 uvesafb 已不再包含在内核中,因此必须使用 DKMS 版本的驱动程序。 请参阅 uvesafb 以获取更多信息。

Xorg 驱动

目前没有适用于 Xorg 的加速驱动程序,但可以使用软件包 xorg-server 提供的 Xorg modesetting 驱动程序获得一些支持。

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

modesetting 驱动程序允许禁用/启用 LVDS、VGA 等端口,并使用 xrandr 更改分辨率。

如果需要,可以使用以下方法禁用 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
$ mpv --vd-lavc-threads=4 -fs myvideo.avi

参见