R9 270x with AMDGPU driver under Ubuntu 16.04 with new 4.9 kernel

5,309

Be sure to have the latest kernel with amdgpu module and the latest AMD firmware (amdgpu-pro) in place, then try to set it for example in:

/etc/X11/xorg.conf.d/20-amdgpu.conf

like this:

Section "Device"
  Identifier "AMD"
  Driver "amdgpu"
EndSection

KMS must be enabled and amdgpu not being blacklisted. This should already do the trick. You could as well blacklist radeon module.

Not sure if your card is a "Southern Islands" or "Sea Islands" if this is the case you might need to compile a kernel on your own if:

CONFIG_DRM_AMDGPU_CIK=Y

or

CONFIG_DRM_AMDGPU_SI=Y

are not set in the kernel config. Which option to choose depends on your gfx card.

When changing gfx settings you're always in near danger that X doesn't start any more. It's a good idea having a 2nd computer for surfing documentation.

Folks I'm sorry I can't verify my answer because I've got no amd card. So please be kind.

This is a summary from:

Share:
5,309

Related videos on Youtube

HyperCube
Author by

HyperCube

Updated on September 18, 2022

Comments

  • HyperCube
    HyperCube over 1 year

    I heard that the newest mainline kernel should be capable of using the AMD-GPU driver for my AMD R9 270x graphics card. However, I could not find any information on how to set it up under Ubuntu 16.04 LTS.

    Would it be sufficient to install the new kernel (from here: http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.9/) and enable "amdgpu" in the xorg.conf? Or what is the correct way to install it?

  • HyperCube
    HyperCube over 7 years
    Thank you for this summary. It should be noted that a more detailed explanation for these steps can be found here: wiki.archlinux.org/index.php/AMDGPU
  • Nathan Osman
    Nathan Osman over 7 years
    Thanks! I'll give this a shot later when I am able. The R9 270X (Pitcairn) is a southern islands card, BTW.