I recommend continue only if you have Intel Gen 7 and higher (Ivy Bridge, Valley View.)
Note: See Gentoo:Intel#Feature support for an overview of Intel processor generations.
Reading Arch Wiki is recommended also: Intel graphics - ArchWiki
Do you know about something called GuC / HuC firmware and Framebuffer compression?
GuC / HuC firmware:
GuC is an engine for workload scheduling of the parallel graphics engines. … HuC appears to be a firmware blob responsible High Efficiency Video Coding (HEVC / H. 265) support.
Framebuffer compression
Making use of Framebuffer compression (FBC) can reduce power consumption while reducing memory bandwidth needed for screen refreshes.
How to enable both?
Install packages
sudo pacman -S mesa lib32-mesa libva libva-intel-driver libva-mesa-driver libva-vdpau-driver libva-utils lib32-libva lib32-libva-intel-driver lib32-libva-mesa-driver lib32-libva-vdpau-driver intel-ucode iucode-tool vulkan-intel lib32-vulkan-intel intel-gmmlib intel-graphics-compiler intel-media-driver intel-media-sdk intel-opencl-clang libmfx
- You need i915 and intel_agp modules.
sudo nano /etc/mkinitcpio.conf
MODULES=(intel_agp i915)
sudo nano /etc/modprobe.d/i915.conf
options i915 enable_guc=2
options i915 enable_fbc=1
If you have 11 gen (tigerlake) and newer CPU (Alder Lake), you can use:
options i915 enable_guc=3
options i915 enable_fbc=1
https://01.org/linuxgraphics/downloads/firmware
sudo mkinitcpio -P
sudo grub-mkconfig -o /boot/grub/grub.cfg
Reboot your system, after boot you should get much better experiences with laptop - videos, battery life, performance, gaming.