Intel GMA 3600
外观
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