AMDGPU: Difference between revisions

From ArchWiki
m (→‎AMDGPU PRO: reword)
(Move section driver options into Xorg configuration section)
Line 112: Line 112:
}}
}}


Using this section, you can enable features and tweak the driver settings.
Using this section, you can enable features and tweak the driver settings, see {{man|4|amdgpu}} first before setting driver options.


== Performance tuning ==
=== Tear Free Rendering ===
=== Enabling video acceleration ===
''TearFree'' controls tearing prevention using the hardware page flipping mechanism. If this option is set, the default value of the property is 'on' or 'off' accordingly. If this option isn't set, the default value of the property is auto, which means that TearFree is on for rotated outputs, outputs with RandR transforms applied and for RandR 1.4 slave outputs, otherwise off:


See [[Hardware video acceleration]].
Option "TearFree" "true"


=== Driver options ===
=== DRI level ===
The following options apply to {{ic|/etc/X11/xorg.conf.d/'''20-amdgpu.conf'''}}.


Please read {{man|4|amdgpu}} first before setting driver options.
''DRI'' sets  the maximum level of DRI to enable. Valid values are ''2'' for DRI2 or ''3'' for DRI3. The default is ''3'' for DRI3 if the [[Xorg]] version is >=  1.18.3, otherwise DRI2 is used:
 
'''DRI''' sets  the maximum level of DRI to enable. Valid values are ''2'' for DRI2 or ''3'' for DRI3. The default is ''3'' for DRI3 if the Xorg version is >=  1.18.3, otherwise DRI2 is used:


  Option "DRI" "3"  
  Option "DRI" "3"  


'''TearFree''' controls tearing prevention using the hardware page flipping mechanism. If this option is set, the default value of the property is set to ''auto'', which means that TearFree is on for outputs with rotation or other RandR transforms:
== Features ==
=== Video acceleration ===


Option "TearFree" "true"
See [[Hardware video acceleration]].


== Enable GPU display scaling ==
== Enable GPU display scaling ==

Revision as of 09:28, 5 October 2018

amdgpu is the open source graphics driver for the latest AMD Radeon graphics cards.

At the moment there is support for Volcanic Islands (VI) and newer and experimental support for Sea Islands (CI) and Southern Islands (SI) cards. AMD has absolutely no plans for supporting the pre-GCN GPUs.

Owners of unsupported AMD/ATI video cards may use the Radeon open source or AMD's proprietary driver instead.

Selecting the right driver

Depending on the card you have, find the right driver in Xorg#AMD. This page has instructions for AMDGPU and AMDGPU PRO.

Installation

Note: If coming from the proprietary Catalyst driver, see AMD Catalyst#Uninstallation first.

Install the mesa package, which provides the DRI driver for 3D acceleration.

Support for accelerated video decoding is provided by libva-mesa-driver and lib32-libva-mesa-driver or libva-vdpau-driver for VA-API and mesa-vdpau and lib32-mesa-vdpau packages for VDPAU.

Enable Southern Islands (SI) and Sea Islands (CIK) support

The linux package enables AMDGPU support for cards of the Southern Islands (SI) and Sea Islands (CIK). When building or compiling a kernel, CONFIG_DRM_AMDGPU_SI=Y and/or CONFIG_DRM_AMDGPU_CIK=Y should be be set in the config.

Even when AMDGPU support for SI/CIK has been enabled by the kernel, the radeon driver may be used instead of the AMDGPU driver.

To make sure the amdgpu is loaded first use the following Mkinitcpio#MODULES array, e.g. MODULES=(amdgpu radeon).

Set required module parameters

To enable full support for SI/CIK when using the amdgpu, set the following kernel parameters to prevent the radeon module from being used [1]:

$ dmesg
[..] amdgpu 0000:01:00.0: CIK support provided by radeon.
[..] amdgpu 0000:01:00.0: Use radeon.cik_support=0 amdgpu.cik_support=1 to override.

The flags depend on the cards GCN version:

  • Southern Islands (SI): radeon.si_support=0 amdgpu.si_support=1
  • Sea Islands (CIK): radeon.cik_support=0 amdgpu.cik_support=1

AMD DC

AMD DC (display code), introduced in linux 4.15-4.17, is a new display stack that brings support for atomic mode-setting and HDMI/DP audio. For more info about AMDGPU-DC, see this article.

If you are on GCN 1.1 or newer with AMDGPU and want to use DC, set amdgpu.dc=1 as kernel parameter.

AMDGPU PRO

Warning: Arch Linux is officially not supported.
Note:
  • To use the proprietary OpenCL component without AMDGPU PRO, install opencl-amdAUR instead.
  • A downgrade of the linux (4.9) and Xorg (1.18) packages is required to use AMDGPU PRO 17.10.

AMD provides a proprietary, binary userland driver called AMDGPU PRO, which works on top of the open-source AMDGPU kernel driver. The driver provides OpenGL, OpenCL, Vulkan and VDPAU support (although this is also supported by the open-source driver). For some workloads it provides better performance than the open-source driver (example benchmark), while for others the contrary is true (example benchmark).

See the release notes and the announcement at the Phoronix forum for more information.

A patched version of the official AMDGPU PRO driver is available as amdgpu-proAUR in AUR.

Loading

The amdgpu kernel module should load fine automatically on system boot.

If it does not happen, then:

Enable early KMS

Tip: If you have problems with the resolution, Kernel mode setting#Forcing modes and EDID may help.

Kernel mode setting (KMS) is supported by the amdgpu driver, is mandatory and enabled by default.

KMS is typically initialized after the initramfs stage. It is possible, however, to enable KMS during the initramfs stage. To do this, add the amdgpu module to the MODULES line in /etc/mkinitcpio.conf:

MODULES=(amdgpu radeon)

Now, regenerate the initramfs:

# mkinitcpio -p linux

The change takes effect at the next reboot.

Xorg configuration

Xorg will automatically load the driver and it will use your monitor's EDID to set the native resolution. Configuration is only required for tuning the driver.

If you want manual configuration, create /etc/X11/xorg.conf.d/20-amdgpu.conf, and add the following:

/etc/X11/xorg.conf.d/20-amdgpu.conf
Section "Device"
     Identifier "AMD"
     Driver "amdgpu"
 EndSection

Using this section, you can enable features and tweak the driver settings, see amdgpu(4) first before setting driver options.

Tear Free Rendering

TearFree controls tearing prevention using the hardware page flipping mechanism. If this option is set, the default value of the property is 'on' or 'off' accordingly. If this option isn't set, the default value of the property is auto, which means that TearFree is on for rotated outputs, outputs with RandR transforms applied and for RandR 1.4 slave outputs, otherwise off:

Option "TearFree" "true"

DRI level

DRI sets the maximum level of DRI to enable. Valid values are 2 for DRI2 or 3 for DRI3. The default is 3 for DRI3 if the Xorg version is >= 1.18.3, otherwise DRI2 is used:

Option "DRI" "3" 

Features

Video acceleration

See Hardware video acceleration.

Enable GPU display scaling

This article or section is a candidate for moving to xrandr.

Notes: Not specific to AMDGPU. (Discuss in Talk:AMDGPU#Moving "Enable GPU display scaling" to xrandr)

To avoid the usage of the scaler which is built in the display, and use the GPU own scaler instead, when not using the native resolution of the monitor, execute:

$ xrandr --output "<output>" --set "scaling mode" "<scaling mode>"

Possible values for "scaling mode" are: None, Full, Center, Full aspect

  • To show the available outputs and settings, execute:
$ xrandr --prop
  • To set scaling mode = Full aspect for just every available output, execute:
$ for output in $(xrandr --prop | grep -E -o -i "^[A-Z\-]+-[0-9]+"); do xrandr --output "$output" --set "scaling mode" "Full aspect"; done

Troubleshooting

Xorg or applications won't start

  • "(EE) AMDGPU(0): [DRI2] DRI2SwapBuffers: drawable has no back or front?" error after opening glxgears, can open Xorg server but OpenGL apps crash.
  • "(EE) AMDGPU(0): Given depth (32) is not supported by amdgpu driver" error, Xorg won't start.

Setting the screen's depth under Xorg to 16 or 32 will cause problems/crash. To avoid that, you should use a standard screen depth of 24 by adding this to your "screen" section:

/etc/X11/xorg.conf.d/10-screen.conf
Section "Screen"
       Identifier     "Screen"
       DefaultDepth    24
       SubSection      "Display"
               Depth   24
       EndSubSection
EndSection

Screen artifacts and frequency problem

Dynamic power management may cause screen artifacts to appear when displaying to monitors at higher frequencies (120+Hz) due to issues in the way GPU clock speeds are managed[2][3].

A workaround [4] is saving high or low in /sys/class/drm/card0/device/power_dpm_force_performance_level.

There is also a GUI solution [5] where you can manage the "power_dpm" with radeon-profile-gitAUR and radeon-profile-daemon-gitAUR.

Screen flickering

If you experience flickering [6] add amdgpu.dc=0 to your kernel parameters.

R9 390 series Poor Performance and/or Instability

If you experience issues [7] with a AMD R9 390 series graphics card, set radeon.cik_support=0 amdgpu.cik_support=1 amdgpu.dpm=1 amdgpu.dc=1 as kernel parameters to force DPM support.

Freezes with "[drm] IP block:gmc_v8_0 is hung!" kernel error

If you experience freezes and kernel crashes during a GPU intensive task with the kernel error " [drm] IP block:gmc_v8_0 is hung!" [8], a workaround is to set amggpu.vm_update_mode=3 as kernel parameters to force the GPUVM page tables update to be done using the CPU. Downsides are listed here [9].