Both recommend putting “options snd_hda_intel power_save=0” in a .conf file under /etc/modprobe.d/.
While this is working after reloading the module, the option is not picked up on reboot. Anyone an idea why?
Some info:
Audio:
Device-1: Intel 100 Series/C230 Series Family HD Audio
driver: snd_hda_intel
Device-2: NVIDIA GP104 High Definition Audio driver: snd_hda_intel
Sound Server-1: ALSA v: k5.15.16-1-MANJARO running: yes
Sound Server-2: PipeWire v: 0.3.43 running: yes
Follow this tutorial and see if it helps. The user is also using Manjaro. Alternatively add options snd-hda-intel power_save=0 power_save_controller=N in /etc/modprobe.d/alsa-base.conf as suggested in the pinned comment.
you could try adding the kernel parameter modules_load="options snd-hda-intel power_save=0"
this will make sure that the module parameter is getting read at boot and not being skipped for some reason
@ishaan2479 : Thanks for the link. Unfortunately, changing parameters in /sys/module/… changes only at runtime. It’s gone after a reboot. I don’t run tlp or any other power saving service. Changing the .conf file to alsa-base.conf did not help either. As far as I’m aware, the name does not matter. Just the file extension has to be .conf.
@person1873 : I tried adding kernel parameters into /etc/default/grub and they were picked up according to this:
you could as a last ditch attempt, write a small script (systemd .service?) that runs on login to set the power state?
make sure there’s no laptop power saving services running that could be re-enabling this without your knowledge.
I had also read in a few places that this flag is compiled into the kernel.
If you’re willing to risk it for the biscuit you could try compiling your own kernel with this option configured correctly for your system.
I have to apologize. I sure run tlp. Just my config file was under /etc/tlp.conf. Changed params in there to
# Enable audio power saving for Intel HDA, AC97 devices (timeout in secs).
# A value of 0 disables, >= 1 enables power saving.
# Note: 1 is recommended for Linux desktop environments with PulseAudio,
# systems without PulseAudio may require 10.
# Default: 1
SOUND_POWER_SAVE_ON_AC=0
SOUND_POWER_SAVE_ON_BAT=0
# Disable controller too (HDA only): Y/N.
# Note: effective only when SOUND_POWER_SAVE_ON_AC/BAT is activated.
# Default: Y
SOUND_POWER_SAVE_CONTROLLER=N