Difference between revisions of "Intel GMA 3600"
m |
m (→Xorg driver: fix grammar) |
||
(16 intermediate revisions by 7 users not shown) | |||
Line 1: | Line 1: | ||
[[Category:Graphics]][[Category:X Server]] | [[Category:Graphics]][[Category:X Server]] | ||
− | |||
[[fr:Intel]] | [[fr:Intel]] | ||
+ | [[zh-CN:Intel_GMA3600]] | ||
{{Article summary start}} | {{Article summary start}} | ||
− | {{Article summary text| Information on Intel GMA3600 / GMA36500 integrated graphics}} | + | {{Article summary text| Information on Intel GMA3600 / GMA36500 CPU integrated graphics}} |
{{Article summary heading|Related}} | {{Article summary heading|Related}} | ||
− | {{Article summary wiki|Intel | + | {{Article summary wiki|Intel Graphics}} |
− | |||
{{Article summary wiki|Xorg}} | {{Article summary wiki|Xorg}} | ||
{{Article summary end}} | {{Article summary end}} | ||
− | Intel | + | The '''Intel GMA 3600''' series is a family of integrated video adapters based on the PowerVR SGX 545 graphics core. It is used in the Atom N2600 and Atom N2800. |
+ | |||
+ | ==News== | ||
+ | Intel release a graphics driver for PowerVR: | ||
+ | http://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&DwnldID=21938 | ||
+ | |||
+ | Be aware: The current version 1.03 (10/01/2012) has the following dependencies: | ||
+ | |||
+ | Bundle "Ant" | ||
+ | * Kernel: 3.0.0 | ||
+ | * Mesa GL: 7.9 | ||
+ | * Xorg: 1.9 | ||
+ | |||
+ | Bundle "Bee" | ||
+ | * Kernel: 3.1.0 | ||
+ | * Mesa GL: 7.11 | ||
+ | * Xorg: 1.11 | ||
+ | |||
+ | This means, unleass you run a really outdated system this driver is useless for Arch-Linux. | ||
==Kernel module driver== | ==Kernel module driver== | ||
− | Kernel has an experimental support for this adapter since v3.3. Kernel | + | Kernel has an experimental support for this adapter since v3.3. Since Kernel v3.5 the GMA3600 power features are supported. Now suspend/resume should properly work. |
+ | |||
+ | If after resume you got a blank screen try the following | ||
+ | sudo touch /etc/pm/sleep.d/99video | ||
==Xorg driver== | ==Xorg driver== | ||
− | At the moment there is no appropriate driver for Xorg Server, | + | At the moment there is no appropriate driver for Xorg Server, but you can get basic support by VESA or FrameBuffer video driver (fbdev): |
− | by VESA or | + | |
+ | pacman -S xf86-video-fbdev | ||
/etc/X11/xorg.conf: | /etc/X11/xorg.conf: | ||
Line 24: | Line 45: | ||
EndSection | EndSection | ||
+ | ==Playing video== | ||
+ | It is unable to utilize whole chip power and play fullHD movies using graphics acceleration. As workaround you could utilize the maximum power of your Atom CPU to decode video: | ||
+ | |||
+ | mplayer -lavdopts threads=4 -fs myvideo.avi | ||
==See also== | ==See also== | ||
* http://ubuntuforums.org/showthread.php?t=1953734 | * http://ubuntuforums.org/showthread.php?t=1953734 | ||
* http://communities.intel.com/message/158477 | * http://communities.intel.com/message/158477 |
Revision as of 10:03, 4 March 2013
zh-CN:Intel_GMA3600 Template:Article summary start Template:Article summary text Template:Article summary heading Template:Article summary wiki Template:Article summary wiki Template:Article summary end The Intel GMA 3600 series is a family of integrated video adapters based on the PowerVR SGX 545 graphics core. It is used in the Atom N2600 and Atom N2800.
News
Intel release a graphics driver for PowerVR: http://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&DwnldID=21938
Be aware: The current version 1.03 (10/01/2012) has the following dependencies:
Bundle "Ant"
* Kernel: 3.0.0 * Mesa GL: 7.9 * Xorg: 1.9
Bundle "Bee"
* Kernel: 3.1.0 * Mesa GL: 7.11 * Xorg: 1.11
This means, unleass you run a really outdated system this driver is useless for Arch-Linux.
Kernel module driver
Kernel has an experimental support for this adapter since v3.3. Since Kernel v3.5 the GMA3600 power features are supported. Now suspend/resume should properly work.
If after resume you got a blank screen try the following
sudo touch /etc/pm/sleep.d/99video
Xorg driver
At the moment there is no appropriate driver for Xorg Server, but you can get basic support by VESA or FrameBuffer video driver (fbdev):
pacman -S xf86-video-fbdev
/etc/X11/xorg.conf:
Section "Device" Identifier "Intel GMA3600" Driver "fbdev" EndSection
Playing video
It is unable to utilize whole chip power and play fullHD movies using graphics acceleration. As workaround you could utilize the maximum power of your Atom CPU to decode video:
mplayer -lavdopts threads=4 -fs myvideo.avi