Intel
intel is Article description::the open source graphics driver for Intel GMA on-board graphics cards, starting with the Intel 810.
Hardware detection
To choose the right driver, first detect the graphics card. lspci can be used for this task:
root #
lspci | grep -i VGA
This should show something like this:
root #
lspci | grep -i VGA
00:02.0 VGA compatible controller: Intel Corporation 3rd Gen Core processor Graphics Controller (rev 09)
The lspci output for the graphics controller may refer to CPU generations, whereas the Feature support table below refers to GPU generations. E.g., “3rd Gen” in the example lspci output above corresponds to “Gen7” in the table below.
Feature support
Generation | Chipset | OpenGL | OpenGL ES | OpenCL | VAAPI | Vulkan | VIDEO_CARDS |
---|---|---|---|---|---|---|---|
Gen 1 | 810, 815 | No | No | No | No | No | unsupported |
Gen 2 | i830M, 845G, 855GM, 865G | 1.3 | No | No | No | No | intel i915 |
Gen 3 | 915G/GM, 945G/GM, G/Q33, Q35, Atom D4xx/D5xx/N4xx/N5xx | 1.4 | No | No | No | No | intel i915 |
Gen 4 | 965G/GM/Q, G35, G41, G/Q43, G/GM/Q45 | 2.1 | 2.0 | No | G/GM45: MPEG2 only | No | intel i965 |
Gen 5 | Nehalem (Ironlake) | 2.1 | 2.0 | No | Yes | No | intel i965 |
Gen 6 | Sandy Bridge | 3.3 | 3.0 | No | Yes | No | intel i965 |
Gen 7 | Ivy Bridge, Valley View[table 1] | 3.3 | 3.0 | 1.1[table 2] | Yes | Partial | intel i965 |
Gen 7.5 | Haswell | 4.5 | 3.1 | 1.1[table 2] | Yes | Partial | intel i965 |
Gen 8 | Broadwell, Cherryview[table 3] | 4.5 | 3.1 | 1.1[table 2] | Yes | Yes | intel i965 iris |
Gen 9 | Skylake, Broxton[table 4] | 4.5 | 3.2 | 1.1[table 2] | Yes | Yes | intel i965 iris |
Gen 9.5 | Kaby Lake, Coffee Lake | 4.5 | 3.2 | 2.1[table 2] | Yes | Yes | intel i965 iris |
Gen 11 | Ice Lake | 4.5 | 3.2 | 3.0[table 2] | Yes | Yes | intel i965 iris |
Gen 12 | Tiger Lake | 4.5 | 3.2 | 3.0[table 2] | Yes | Yes | ? |
- ↑ Valley View is the name of the graphics core associated with the Silvermont microarchitecture (Bay Trail platform, among others)
- 1 2 3 4 5 6 7 Used to use the dev-libs/beignet package (Upstream info), but as of Q1/2020 the package is removed from portage in favour of dev-libs/intel-neo
- ↑ Cherryview is the name of the graphics core associated with the Airmont microarchitecture (Braswell, Cherry Trail platforms, among others)
- ↑ Broxton is the name of the graphics core associated with the Goldmont microarchitecture (Apollo Lake platform, among others)
A full list of Intel CPU graphic capabilities can be found here.
Installation
Firmware
Systems using Skylake, Broxton or newer Intel graphics will need to install additional firmware[1] from sys-kernel/linux-firmware package:
root #
emerge --ask sys-kernel/linux-firmware
Otherwise errors such as the following might be visible in dmesg:
kernel: i915 0000:00:02.0: Direct firmware load for i915/skl_dmc_ver1_27.bin failed with error -2 kernel: i915 0000:00:02.0: Failed to load DMC firmware [https://01.org/linuxgraphics/intel-linux-graphics-firmwares], disabling runtime power management.
DMC firmware
To configure to build the DMC firmware into the kernel binary, in this case, i915/skl_dmc_ver1_27.bin
:
Device Drivers ---> Generic Driver Options ---> -*- Userspace firmware loading support [*] Include in-kernel firmware blobs in kernel binary (i915/skl_dmc_ver1_27.bin) External firmware blobs to build into the kernel binary (/lib/firmware) Firmware blobs root directory
Device Drivers ---> Generic Driver Options ---> Firmware loader ---> -*- Firmware loading facility (i915/skl_dmc_ver1_27.bin) Build named firmware blobs into the kernel binary (/lib/firmware) Firmware blobs root directory
Including the firmware in-kernel may cause suspend-to-ram to fail, if this is a concern don't include the blob built into the kernel, instead, add the firmware blob into the initramfs.
GuC/HuC firmware
For Gen11+ GPUs, GuC/HuC firmware are loaded by default since Linux 5.4 (see commit).
For Gen9 and Gen9.5 GPUs, GuC/HuC firmware won't be loaded by default, it is possible to enable loading of the firmware using kernel parameter i915.enable_guc_loading=1
(prior to kernel 4.16) or i915.enable_guc=2
(since kernel 4.16).
HuC firmware (and GuC as a dependent) is needed for AVC/HEVC/VP9 low power encoding bitrate control, including CBR, VBR, etc.. Enabling GuC/HuC firmware loading could cause issues on some systems, disable it if you experience freezing (for example, after resuming from hibernation).
To identify the firmware file name, either by checking /var/log/kern.log
:
kernel: [ 1.294069] [drm] GuC: Failed to fetch firmware i915/kbl_guc_ver9_33.bin (error -2) kernel: [ 1.294079] [drm] HuC: Failed to fetch firmware i915/kbl_huc_ver01_07_1398.bin (error -2)
Or by grepping the MODULE_FIRMWARE in kernel source tree:
user $
grep -rB1 'MODULE_FIRMWARE.*SKL' /usr/src/linux/drivers/gpu/drm/i915
/usr/src/linux/drivers/gpu/drm/i915/intel_guc_fw.c-#define I915_SKL_GUC_UCODE GUC_FW_PATH(skl, SKL_FW_MAJOR, SKL_FW_MINOR) /usr/src/linux/drivers/gpu/drm/i915/intel_guc_fw.c:MODULE_FIRMWARE(I915_SKL_GUC_UCODE); -- /usr/src/linux/drivers/gpu/drm/i915/intel_csr.c-#define I915_CSR_SKL "i915/skl_dmc_ver1_27.bin" /usr/src/linux/drivers/gpu/drm/i915/intel_csr.c:MODULE_FIRMWARE(I915_CSR_SKL); -- /usr/src/linux/drivers/gpu/drm/i915/intel_huc_fw.c- SKL_HUC_FW_MINOR, SKL_BLD_NUM) /usr/src/linux/drivers/gpu/drm/i915/intel_huc_fw.c:MODULE_FIRMWARE(I915_SKL_HUC_UCODE);
Then configure to build the firmware into the kernel as above.
Kernel
The following kernel options need to be activated:
Processor type and features ---> [*] MTRR (Memory Type Range Register) support Device Drivers ---> Graphics support ---> <*> /dev/agpgart (AGP Support) ---> <*> Intel 440LX/BX/GX, I8xx and E7x05 chipset support <*> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) ---> <*> Intel 8xx/9xx/G3x/G4x/HD Graphics [*] Enable modesetting on intel by default [*] Enable legacy fbdev support for the modesetting intel driver
The legacy fbdev support is required since kernel 3.14.14 at least for i915 (CONFIG_DRM_I915_FBDEV=y
).[2][3]
For hybrid Intel/AMD system, follow also the steps of radeon (open source) or fglrx (closed binary) drivers.
Since kernel version 4.4 the driver has been moved and the legacy fbdev support is now CONFIG_DRM_FBDEV_EMULATION=y
.
Device Drivers ---> Graphics support ---> <*> /dev/agpgart (AGP Support) ---> --- /dev/agpgart (AGP Support) -*- Intel 440LX/BX/GX, I8xx and E7x05 chipset support <*> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) ---> --- Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) [*] Enable legacy fbdev support for your modesetting driver <*> Intel 8xx/9xx/G3x/G4x/HD Graphics [ ] Enable alpha quality support for new Intel hardware by default () Force probe driver for selected new Intel hardware [*] Enable capturing GPU state following a hang [*] Compress GPU error state [*] Always enable userptr support [ ] Enable Intel GVT-g graphics virtualization host support
Kernel version 4.19 or later is recommended for Coffee Lake because it will work without enabling alpha support. Kernel 4.14 requires loading module i915 with alpha_support=1 or enabling
CONFIG_DRM_I915_ALPHA_SUPPORT
in kernel config.X drivers
Portage uses the VIDEO_CARDS variable, which expands into the USE_EXPAND variable, for enabling support for various graphics cards. Assuming the x11-base/xorg-drivers package has already been installed, setting the VIDEO_CARDS variable in /etc/portage/make.conf will pull in the correct video driver:
/etc/portage/make.conf
Gen 1<syntaxhighlight lang="bash">VIDEO_CARDS="intel"</syntaxhighlight>
/etc/portage/make.conf
Gen 2 and Gen 3<syntaxhighlight lang="bash">VIDEO_CARDS="intel i915"</syntaxhighlight>
/etc/portage/make.conf
Gen 4 through Gen 7<syntaxhighlight lang="bash">VIDEO_CARDS="intel i965"</syntaxhighlight>
/etc/portage/make.conf
Gen 8 through Gen 9+<syntaxhighlight lang="bash">VIDEO_CARDS="intel i965 iris"</syntaxhighlight>
The intel
value is for x11-base/xorg-drivers. The i915
and i965
and iris
values are for media-libs/mesa.
Beginning with x11-base/xorg-drivers-1.19, the x11-base/xorg-drivers package (in addition to the mesa package) includes support for the
i965
USE flag. This will omit selection of the deprecating x11-drivers/xf86-video-intel driver in favor of the more maintained, generic modesetting DDX driver built into x11-base/xorg-server.After making any make.conf modifications, update the system so the changes take effect by passing the --changed-use --deep
options to emerge:
root #
emerge --ask --changed-use --deep @world
Those wishing to not accept the Intel graphic driver defaults in the main repository can read on into the sub-sections below.
Intel DDX
Before proceeding with the Intel DDX driver, note that this driver has been slowly deprecating for several years. This has caused other major[4][5] Linux distributions to begin to move toward the modesetting DDX driver (detailed in the section below). Although presently faster than modesetting driver, there has been no official package release from Intel upstream for their DDX driver for quite some time[6], and is therefore causing a maintenance burden on Gentoo's X11 package maintainers.
With this being stated, the Intel DDX driver has slight speed advantages over the generic modesetting driver as it is able to more closely interact with hardware acceleration present in chips utilizing SNA and DRI3.
USE flags
Check the USE flags of x11-drivers/xf86-video-intel:
USE flags for x11-drivers/xf86-video-intel X.Org driver for Intel cards
debug
|
Enable extra debug codepaths, like asserts and extra output. If you want to get meaningful backtraces see https://wiki.gentoo.org/wiki/Project:Quality_Assurance/Backtraces |
dri
|
Enable direct rendering: used for accelerated 3D and some 2D, like DMA |
sna
|
Enable SandyBridge's New Acceleration (useful on all chipsets, not just SandyBridge) |
tools
|
Build the intel-virtual-output tool |
udev
|
Enable virtual/udev integration (device discovery, power and storage device support, etc) |
uxa
|
Enable UMA Acceleration Architecture |
xvmc
|
Enables X-Video Motion Compensation support |
Emerge
root #
emerge --ask x11-drivers/xf86-video-intel
xorg.conf
To force Xorg server to use the Intel DDX driver with SNA for hardware acceleration, the following file can be created in /etc/X11/xorg.conf.d/:
/etc/X11/xorg.conf.d/20-intel.conf
Force Intel DDX<syntaxhighlight lang="xorg.conf">Section "Device" Identifier "Intel Graphics" Driver "intel" Option "AccelMethod" "sna" EndSection</syntaxhighlight>
Modesetting DDX
As mentioned above, the modesetting DDX driver is now the default driver on newer Intel graphics chipsets for Gentoo. This driver uses GLAMOR to accelerate 2D graphical over Mesa (the open source OpenGL implementation). As of x11-base/xorg-drivers-1.19
this has become the default for Gentoo.
As of xorg-server/xorg-server-1.20.6
GLAMOR support is enabled unless the minimal
USE flag is enabled. No additional steps or configuration are necessary.
Screen tearing
x11-drivers/xf86-video-intel may be necessary because, as of March 2021, the fix for screen tearing still is not implemented, see bug. After create this file:
/etc/X11/xorg.conf.d/20-intel.conf
<syntaxhighlight lang="xorg.conf">Section "Device" Identifier "Intel Graphics" Driver "intel" Option "TearFree" "true" EndSection</syntaxhighlight>
Other options against screen tearing:
xorg.conf
If it's necessary to force Xorg to load the modesetting driver the following config snippet can be used:
/etc/X11/xorg.conf.d/20-modesetting.conf
Force modesetting DDX<syntaxhighlight lang="xorg.conf">Section "Device" Identifier "Intel Graphics" Driver "modesetting" Option "AccelMethod" "glamor" Option "DRI" "3" EndSection</syntaxhighlight>
If both 20-intel.conf and 20-modesetting.conf files are defined in /etc/X11/xorg.conf.d/, the X server will attempt to load the files in alpha-numeric order.
Enable Early KMS
In order to enable Kernel Mode Setting (KMS) as soon as possible, modesetting either needs to be built into the kernel, or be loaded with initramfs if it is built as a module. Distribution Kernels have the Modesetting DDX built as a module. So, in order to get early KMS, those who use it have to create a .conf file in /etc/dracut.conf.d and do the following:
/etc/dracut.conf.d/......conf
add_drivers+="... i915 ..."
Then run:
root #
dracut
Users of gentoo-kernel can also use savedconfig to change modesetting from module to built-in.
VAAPI
Intel GMA X4500HD / G45 / GM45 and newer supports VAAPI hardware video acceleration.
Vulkan
As of November 15th, 2016[7] Vulkan is supported in the main ebuild repository for Intel Core processors using the i965 mesa driver.
Please note, that this will build a working Vulkan driver, but it will not provide a libvulkan.so.1, but a drivers-specific libvulkan_intel.so. The package media-libs/vulkan-loader provides libvulkan.so.1.
Misc
Various utilities useful for debugging are provided by x11-apps/igt-gpu-tools package.
For example GPU min/max/current frequency can by displayed by:
root #
intel_gpu_frequency
All provided commands can be discovered by listing the provided files with equery:
user $
equery f x11-apps/igt-gpu-tools | grep bin
Configuration
Kernel
Fastboot
The i915 kernel driver includes the ability reduce flickering caused by modesetting operations during boot time. It does so by avoiding unnecessary modesetting operations when they are not needed[8]. Fastboot is enabled by default on Skylake, Valleyview, Cherry Trail, and newer CPUs.
For CPUs older than Skylake, fastboot can be enabled by passing the i915.fastboot=1
parameter to the i915 kernel driver during boot. This can either be set using the built-in kernel command-line or via a bootloader's kernel options. GRUB2 users can see the /etc/default/grub file.
Permissions
If the acl
USE flag is enabled globally and elogind
is being used (default for desktop profiles) permissions to video cards will be handled automatically. It is possible to check the permissions using getfacl:
user $
getfacl /dev/dri/card0 | grep larry
user:larry:rw-
A broader solution is to add the user(s) needing access the video card to the video group:
root #
gpasswd -a larry video
Note that users will be able to run X without permission to the DRI subsystem, but acceleration will be disabled.
xorg.conf
Choose one of the following configuration options:
- Classic Driver -- x11-drivers/xf86-video-intel
- As xorg is not aware of i915 or i965 they will need to be addressed as Driver
intel
.
- FILE
/etc/X11/xorg.conf.d/intel.conf
Explicit intel driver section<syntaxhighlight lang="xorg.conf">Section "Device" Identifier "intel" Driver "intel" EndSection</syntaxhighlight>
- Alternate Driver for Gen 4+ -- Modesetting
- Note
Experiences of this configuration can be found in the Discussion of this page. Add any difficulties there so this section can be improved.
- As of xorg-server-1.17, the modesetting driver was moved into x11-base/xorg-server. This driver has more features than the classic driver, such as the ability to support acceleration via GLAMOR.
- This configuration is the default for
VIDEO_CARDS="intel i965"
beginning with x11-base/xorg-drivers-1.19. If you wish to use the classic driver, you will need to install x11-drivers/xf86-video-intel manually:root #
emerge --ask x11-drivers/xf86-video-intel
- xorg-server is easily configured to prefer
modesetting
over the olderintel
driver.
- FILE
/etc/X11/xorg.conf.d/modesetting.conf
Explicit modesetting driver section<syntaxhighlight lang="xorg.conf">Section "Device" Identifier "modesetting" Driver "modesetting" EndSection</syntaxhighlight>
The X server is designed to work out-of-the-box, with no need to manually edit X.Org's configuration files. It should detect and configure devices such as displays, keyboards, and mice.
However, the main configuration file of the X server is the xorg.conf.
Troubleshooting
- Gentoo bugtracker: known bugs
- Freedesktop.org bugtracker: known bugs
- Freedesktop.org bugtracker: known bugs
- How to file a bug report
- note that the modesetting DDX might cause video out of sync artefacts (when scrolling, or on videos) (see ) if you experience such artefacts, try the DDX driver
HTML5/VAAPI GPU hangs
If the GPU hangs up when watching VAAPI-accelerated video (e.g. on YouTube) try enabling IOMMU:
Device Drivers ---> [*] IOMMU Hardware Support ---> [*] Support for Intel IOMMU using DMA Remapping Devices [*] Enable Intel DMA Remapping Devices by default
Related upstream bug report.
KDM freezes
A workaround is to set TerminateServer=true
in all sections of the file /usr/share/config/kdm/kdmrc, which starts with X-
.
KDE's plasma eating CPU
If /usr/bin/plasmashell is always consuming several percent of CPU, perhaps this is related to a vsync problem. QT Quick Animation seem to loop too fast when vsync is not managed by the driver (Reference).
A way to enable vsync with SNA is to enable the TearFree
option in xorg.conf:
/etc/X11/xorg.conf.d/20-intel.conf
<syntaxhighlight lang="xorg.conf"> Section "Device" Identifier "Device0" Driver "intel" Option "AccelMethod" "SNA" Option "TearFree" "true" EndSection</syntaxhighlight>
See also this Linux Mint tutorial.
Black screen
- According to this Debian wiki, CONFIG_FRAMEBUFFER_CONSOLE must be set to y (aka built-in to the kernel). Otherwise, it is possible to always have a black screen unless
nomodeset
is passed to the kernel, thus disabling kernel mode setting (KMS).acpi_osi="Linux"
can be passed to the kernel command line to try to solve this kind of issue. This is usually done through the bootloader. - Kernel with version 4.2 or newer is needed with some 8th generation chipsets[9].
Brightness does not change with keyboard shortcuts
First, make sure vendor compatibility is on in the kernel configuration. Toshiba for Toshiba, etc.
If it is, or when the brightness buttons are working, the issue is that the kernel can not detect where the brightness control is located.
Luckily, this is easy enough to modify, as long as the kernel version is >= 3.13.x and < 4.2.
Add the following argument to the kernel command-line:
video.use_native_backlight=1
On kernels >= 4.2, the video.use_native_backlight option is no longer available.[10] You should use one of the following instead (experiment to see which works on your system):
acpi_backlight=video
acpi_backlight=native
acpi_backlight=vendor
Do your key bindings map to actions viewable in xev? Can you adjust the screen brightness using xbacklight? You can always do a work around via a keyboard remapping. For LXDE it can be done via:
~/.config/openbox/lxde-rc.xml
<syntaxhighlight lang="xml"><keybind key="XF86MonBrightnessUp"> <action name="Execute"> <command>xbacklight +5</command> </action> </keybind> <keybind key="XF86MonBrightnessDown"> <action name="Execute"> <command>xbacklight -5</command> </action> </keybind></syntaxhighlight>
Using the Modesetting DDX, the x11-apps/xbacklight package will not work[11]. Use sys-power/acpilight for a compatible interface.
White or missing textures in games
This is most likely caused by missing S3TC support. Possible solutions:
- Either set
force_s3tc_enable
environment variable totrue
, or enable this option in ~/.drirc (using x11-misc/driconf):
root #
emerge --ask --oneshot x11-misc/driconf
user $
driconf
- Install media-libs/libtxc_dxtn. On amd64, it might be a good idea to enable 32-bit build of this library since many games might be shipping 32-bit executables:
/etc/portage/package.use
media-libs/libtxc_dxtn abi_x86_32
root #
emerge --ask media-libs/libtxc_dxtn
See also
- Xorg/Guide — explains what Xorg is, how to install it, and the various configuration options.
- Hprofile — an application that can be used to manage multiple profiles be it hardware or software.
External resources
- https://www.x.org/wiki/IntelGraphicsDriver/ - Intel at the X.Org wiki.
- https://keyj.emphy.de/files/linuxgraphics_en.pdf - Linux Graphics Demystified.
References
- ↑ Firmware, Intel. Retrieved on October 27, 2018
- ↑ Gentoo Forums, "Black screen on boot after kernel upgrade - grub2"
- ↑ Gentoo Forums, "Black screen on kernel 3.14.14"
- ↑ https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/thread/AUPYPJMFJZMHPEKN24LBABZKIEOV4NU5/
- ↑ https://tjaalton.wordpress.com/2016/07/23/intel-graphics-gen4-and-newer-now-defaults-to-modesetting-driver-on-x/
- ↑ https://cgit.freedesktop.org/xorg/driver/xf86-video-intel/log/
- ↑ https://bugs.gentoo.org/show_bug.cgi?id=580148#c25
- ↑ [Intel-gfx] [RFC] fastboot, freedesktop.org. Retrieved on February 9, 2019
- ↑ Gentoo Forums, "N3700 8086:22b1 i915 black screen, works in kernel 4.2.6"
- ↑ RedHat Bug 1272633: "video.use_native_backlight=1 doesn't work" (comment 5)
- ↑ Freedesktop Bug 96572: "xbacklight doesn't work with modesetting on intel"