arch-wiki-md-repo
Version:
All arch-wiki articles in markdown format, updated every two days.
80 lines (54 loc) • 2.43 kB
Markdown
Related articles
* [Intel graphics](/index.php/Intel_graphics "Intel graphics")
* [Xorg](/index.php/Xorg "Xorg")
The **Intel GMA 3600** series is a family of integrated video adapters based on the PowerVR SGX 545 graphics core. It is used in [Intel Cedarview](https://ark.intel.com/products/codename/37505/Cedarview) CPUs (Atom D2500, D2550, D2700, N2600 and N2800).
The Linux kernel has support since version 3.5.
* [1 Xorg driver](
* [2 Troubleshooting](
* [2.1 Blank screen after resume](
* [2.2 Playing video](
* [3 See also](
At the moment there is no accelerated driver for Xorg Server, but some support is available using the Xorg modesetting driver provided by package [xorg-server](https://www.archlinux.org/packages/?name=xorg-server).
`/etc/X11/xorg.conf.d/20-gpudriver.conf`
```
Section "Device"
Identifier "Intel GMA3600"
Driver "modesetting"
EndSection
```
The modesetting driver allows disabling/enabling LVDS, VGA, etc. ports and changing resolution using xrandr.
The following can be used to disable LVDS and force enable VGA if needed.
`/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
```
If after resume you got a blank screen try the following
```
```
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
```
* [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](http://ubuntuforums.org/showthread.php?t=1953734)
* [http://communities.intel.com/message/158477](http://communities.intel.com/message/158477)