Linux distros don't support newest (May 2021) Rocket Lake GPUs by default. Tested on:
- Fedora 34
- Ubuntu 20.04.2.0
- Ubuntu 21.04
Even if i915
module is loaded (lsmod | grep i915
), the graphics is still running in software mode.
This issue can be checked in the following ways:
- Only X11 could be started as Wayland requires hardware acceleration
- Check "About system" page in Gnome setup (Fedora&newest Ubuntu have Gnome by-default). "Graphics" line will display something like
llvmpipe...
instead of GPU model. - Run
glxinfo | grep -i opengl
andllvmpipe ...
string is shown for "Renderer" instead of GPU name. dmesg
will display error message of thei915
driver
$ dmesg | grep i915 -A4
[ 636.077251] i915 0000:00:02.0: Your graphics device 4c8a is not properly supported by the driver in this
kernel version. To force driver probe anyway, use i915.force_probe=4c8a
module parameter or CONFIG_DRM_I915_FORCE_PROBE=4c8a configuration option,
or (recommended) check for kernel updates.
As it is specified in the error message, a device with PID=4c8a should be added to module parameters.
Open /etc/default/grub
and add the parameter to the kernel command line:
GRUB_CMDLINE_LINUX="... quiet i915.force_probe=4c8a"
Then updat grub (legacy BIOS output file is different):
sudo grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg
- Apparently, Intel devs are not happy about this option: intel/media-driver#980
- UHD 750 - Rocket Lake IGP support – https://forums.unraid.net/topic/105034-uhd-750-rocket-lake-igp-support/
- Intel Core i5 11600K + Core i9 11900K Linux Performance Across ~400 Benchmarks – https://www.phoronix.com/scan.php?page=article&item=intel-rkl-linux&num=2
@Talkless:
I havent tried with Debian bullseye and 5.10 Kernel, but I have just decided to go with the kernel from the bullseye backports, which is right now 5.15 :-) It seemed like it works fine, but a guy on another community told me that, because right now there isnt a backported version of the package "firmware-misc-nonfree" available, it may be better to go with the one from the bookworm repos, because it contains firmware for the same kernel as the backported 5.15.
But he said I shouldnt mess with bookworm in the sources.list, just download the firmware-misc-nonfree from here ( https://ftp.debian.org/debian/pool/non-free/f/firmware-nonfree/ ) and install via "dpkg -i",,, which I did and seemingly solved my firstly appearing firmware error, which was something like "missing firmware i915" and naming a few specific files...
So far that works fine for me! To let u see how my configuration looks right now and how the drivers are implemented etc., maybe it helps to have a look at my latest probe that I submitted to linux-hardware.org:
https://linux-hardware.org/?probe=1f1008ad86
There should be also the logs contained to look up all the stuff u may wanna know?
Im not so deep into that technical details though...
Hopefully this was helpful to you..
best wishes
matt