「Intel GMA 3600」の版間の差分

提供: ArchWiki
ナビゲーションに移動 検索に移動
(同期)
(文字列「http://ubuntuforums.org/」を「https://ubuntuforums.org/」に置換)
59行目: 59行目:
 
==参照==
 
==参照==
 
* https://www.change.org/en-GB/petitions/intel-listen-to-the-community-and-develop-gma3600-drivers-for-linux
 
* https://www.change.org/en-GB/petitions/intel-listen-to-the-community-and-develop-gma3600-drivers-for-linux
* http://ubuntuforums.org/showthread.php?t=1953734
+
* https://ubuntuforums.org/showthread.php?t=1953734
 
* http://communities.intel.com/message/158477
 
* http://communities.intel.com/message/158477

2018年2月6日 (火) 23:53時点における版

関連記事

Intel GMA 3600 シリーズは PowerVR SGX 545 グラフィックコアがベースの内蔵ビデオアダプタのファミリーです。Atom N2600, N2800, D2550 で使われています。

Linux カーネルはバージョン 3.5 から GMA 3600 をサポートしています。

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

動画の再生

チップの力を使ってグラフィックアクセラレーションでフル HD の動画を再生することはできません。Atom CPU のパワーを最大限使って動画をデコードするには:

$ mplayer -lavdopts threads=4 -fs myvideo.avi

参照