Glam Prestige Journal

Bright entertainment trends with youth appeal.

Since one of the recent Ubuntu updates in December 2021, when I awake my laptop by opening the lid OR when I disconnect it from an external monitor, the screen is showing static noise and must be restarted to resolve the issue. Is anyone else seeing this issue. System info is below.

System info here:

Screenshot 1

Fuzzy screen here:

Screenshot 2

2

3 Answers

Upgrading the kernel to 5.13.0-28-generic fixed the issue. Run the following commands to install kernel 5.13:

sudo apt-get update
sudo apt-get upgrade
4

I was having the exact same problem. (roughly same specification as yours).

I finally got mine fixed.

A warning to anyone reading this. There is a high probability there is a newer kernel that is compatible with the drivers. This is a functional fix and probably not a perfect one. Anyone with more intimate knowledge of kernel + amdgpu is welcome to contribute a better answer.

You need to download, extract and install the 20.50 amdgpu driver.

This is the link I used:

extract and run:

tar -xf amdgpu-pro-20.50-1234664-ubuntu-20.04.tar.xz
cd amdgpu-pro-20.50-1234664-ubuntu-20.04
./amdgpu-install

Then you need to deploy a specific kernel: (5.4.0-96-generic is working for me)

sudo apt-get install linux-image-5.4.0-96-generic linux-modules-5.4.0-96-generic linux-modules-extra-5.4.0-96-generic linux-headers-5.4.0-96-generic 

My laptop also has an nvidia GPU. Install these if needed:

sudo apt-get install linux-modules-nvidia-470-5.4.0-96-generic linux-objects-nvidia-470-5.4.0-96-generic linux-signatures-nvidia-5.4.0-96-generic

then reboot

sudo reboot

after reboot, confirm that kernel version was loaded

uname -r

I changed my grub to allow selecting the kernel at boot time. If uname -r returns wrong kernel version, you may need to do the same or change your config to use this specific kernel. I'm not going to include grub config instructions here, but its a simple modification to /etc/default/grub

For reference - this fix is based off information found here:

Hope this helps someone.

2

I was having the same problem in Ubuntu 20.04, Lenovo with AMD hardware (CPU and GPU), and started to happen since a recent (automatic) update in ~December 2021.

For me it was this reported bug #1942419 in ubuntu regarding missing renoir_ta.bin file (different bug as the ones mentioned by other users). It is probably fixed in a future upgrade, but that may take a while to reach you, so here is the fix that worked for me:

  • Search the kernel logs for an amdgpu log describing the error, I got:
$ cat /var/log/kern* | grep 'amdgpu'
Dec 28 21:17:34 XXXXX kernel: [XXXXX] amdgpu 0000:06:00.0: Direct firmware load for amdgpu/renoir_ta.bin failed with error -2
  • AFAIK, error -2 is file missing
  • Download missing file(s) from github:
  • Move missing file(s) to folder /lib/firmware/amdgpu/
  • Restart the computer