Skip to content

Instantly share code, notes, and snippets.

@antonmry
Last active November 9, 2016 07:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save antonmry/c81ba68d2131bfeb13c784714f876d71 to your computer and use it in GitHub Desktop.
Save antonmry/c81ba68d2131bfeb13c784714f876d71 to your computer and use it in GitHub Desktop.
Fix [drm:intel_pipe_update_start [i915]] *ERROR* Potential atomic update failure on pipe B in Fedora

To solve screen is flickering

sudo -e /etc/default/grub

Add i915.enable_psr=0 to GRUB_CMDLINE_LINUX="...... i915.enable_psr=0"

For BIOS systems:

sudo grub2-mkconfig -o /boot/grub/grub2.cfg
reboot

For UEFI systems:

sudo grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg
reboot

To check if it's working:

for i in /sys/module/i915/parameters/*;do echo ${i}=`sudo cat $i`;done

Also it helps to disconnect and connect the HDMI cable, it works for a while.

More info: https://bugzilla.redhat.com/show_bug.cgi?id=1353008

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment