Ubuntu 20.04 Lenovo IdeaPad 5 Ryzen 4800u Display Brightness not working

11,616

Solution 1

The issue is related to the Renoir graphics in AMD 4000 series processors. Here is a Phoronix article that gives a short description of it. Starting from Linux kernel 5.5, Renoir support was marked as no longer experimental. Kernel 5.7 is the newest kernel, so updating to that provides support for your processor.

I have a laptop with a 4500U. Upgrading to 5.7 helped fix every issue besides the brightness control.

The following steps to install the kernel comes from this answer which is a general version of an ubuntuforums.org post from user lykwydchykyn. The following steps contain some additions that I found useful when installing the kernel:

  1. Go here (sorted by most recent build): https://kernel.ubuntu.com/~kernel-ppa/mainline/?C=N;O=D

  2. Select the build you want, then navigate to the amd64/ directory.

  3. Download 3 (maybe 4) debs to a folder somewhere:

     linux-headers-VERSION-NUMBER_all.deb
     linux-headers-VERSION-NUMBER_amd64.deb
     linux-image-VERSION-NUMBER_amd64.deb
     linux-image-extra-VERSION-NUMBER_amd64.deb    # if available
    
  4. Install the debs with whatever package manager front-end you use, or use these commands:

     cd /path/to/folder/where/you/put/the/debs
     sudo dpkg -i *.deb
    

An additional resource is the Ubuntu wiki which explains how to install an upstream kernel with generic instructions. This is good for learning that you choose either the generic kernel or the lowlatency kernel and don't download all of them (like I did at first): https://wiki.ubuntu.com/Kernel/MainlineBuilds

Solution 2

As mentioned in answers above, you have to update your kernel version to some newer one. I found very handy and free tool - https://github.com/bkw777/mainline

Solution 3

I also have this problem on a Lenovo ThinkPad T14, AMD Ryzen 5 PRO 4650U and Integrated AMD Radeon Graphics.

The only thing working for me was the Brightness Controller, after trying everything from modifying the GRUB with "acpi_backlight" through updating the BIOS (from 1.05 to 1.09) to some newer kernels (5.8.11 and 5.7.19). Still looking for a proper solution though, since Brightness Controller sort of greys out the screen when dimming (i.e. the contrast is decreasing slightly).

Update 2020_12_04:

Actually, the "5.4.0-54" kernel seems to have this fixed and I don't need Brightness Controller anymore (although it is an awesome little tool for many other purposes). The only problem now was that after a reboot, the brightness level wasn't remembered. To solve that I have two scripts, running as services:

  1. Run just before shutdown - stores the current brightness level into a file: echo $(brightnessctl -c backlight g) > lastBrigh.txt

  2. Run just after the login screen appears:

lastBrigh=$(<"lastBrigh.txt")

for i in {1..200}; do
    if [ $(brightnessctl -c backlight g) = $lastBrigh ]; then
        break
    else
        sudo brightnessctl -c backlight s $lastBrigh
        sleep 0.1
    fi
done

Which keeps trying to set the brightness to the last recorded level for ~20 seconds and then gives up. By the way, the "5.4.0-56" kernel is a doom again (desktop environment won't start), so I'll skip that one.

Solution 4

I use kernel 5.7.1 on this notebook and display brightness is adjustable. Look at https://wiki.ubuntu.com/Kernel/MainlineBuilds for instructions.

Share:
11,616
Der Alex
Author by

Der Alex

Updated on September 18, 2022

Comments

  • Der Alex
    Der Alex over 1 year

    I cannot get changing the display brightness to work. I have a Lenovo IdeaPad 5 with AMD Ryzen 4800u CPU and integrated Vega graphics.

    I tried the following solutions: Grub property acpi_backlight, xbacklight, changing backlight directly in /sys/class/backlight/..., xgamma, xrandr, gdbus and setpci.

    I followed instructions on these answers, but none of them worked:

    I can see, that values for e.g. xrandr or xgamma or backlight are set, but they have no effect on the notebooks display.

    I guess that it has something to do with AMD drivers but I don't know...

    Now I don't know in wich direction to search further. Maybe it's a driver or kernel thingy.

    So, can anyone help? :)

  • Eliah Kagan
    Eliah Kagan almost 4 years
    Welcome to Ask Ubuntu! Although this answer is already potentially valuable, I recommend that you edit it to give details about how to upgrade the kernel to 5.7, and also to say why this is expected to work (even if only to say you did it and found it to work).
  • Der Alex
    Der Alex almost 4 years
    @robot21: Thanks for your reply. I also would like to know, why upgrading to kernel 5.7 would work. If you could explain that in your answer, I will mark that as the correct one. Also I tested it and it worked.
  • Sulliwane
    Sulliwane almost 4 years
    Hi, could you explain how you did the BIOS update under Ubuntu? Only Windows .exe are listed on Lenovo support page > pcsupport.lenovo.com/us/en/products/laptops-and-netbooks/… thanks
  • Sulliwane
    Sulliwane almost 4 years
    For linux users, you can make you voice heard by complaining here > forums.lenovo.com/t5/Ubuntu/…
  • user1095956
    user1095956 almost 4 years
    @Sulliwane I have the machine with dual boot so ...
  • Lionel_Ubuntu
    Lionel_Ubuntu over 3 years
    My config is an acer swift 3 with amd ryzen 7 4700u. It worked after upgrading the kernel of ubuntu 20.4 from 5.4 to 5.8.7 with "mainline" tool. I can now use the keyboard brightness adjust key or brightness software. Thanks !
  • dmi_
    dmi_ over 3 years
    Dell Inspiron 5505, ryzen 4500U, same backlight issue with Ubuntu 20.04. The backlight slider shows but the brightness was not adjustable. Instead of manually upgrading the kernel, I simply upgraded to Ubuntu 20.10 which comes with linux kernel 5.8, and now the brightness settings are working.
  • Maaddy
    Maaddy almost 3 years
    Actually be careful of the build you choose. I have chosen a build that didn't even detect the monitor after booting. solved only by choosing another build.