3

In my laptop the sound code is running at 100% even when I am not playing anything. It is causing my palm rest to hit significantly. While I do not face the issue on windows machine where I am using the drivers for IDT. Here is the output of the powertop.

Summary: 0.0 wakeups/second, 0.0 GPU ops/second and 0.0 VFS ops/sec

            Usage       Events/s    Category       Description
        100.0%                      Device         Audio codec hwC0D0: IDT
         52.3 ms/s       0.0        Process        compiz

Is there any solution to decrease the power consumption of the sound device.

rzr
  • 415
Abhijeet
  • 1,629
  • This question appears to be abandoned, if you are experiencing a similar issue please ask a new question with details pertaining to your problem. If you feel this question is not abandoned, please flag the question explaining that. :) – Ringtail Feb 26 '12 at 23:00
  • Hello Guys, I have resolved all of power issues in my Ubuntu system using tlp. If anyone facing similar issue I will suggest to check out that utility. – Abhijeet Sep 28 '12 at 15:52

3 Answers3

6

I added the following to /etc/rc.local

echo 1 | tee /sys/module/snd_hda_intel/parameters/power_save

echo Y | tee /sys/module/snd_hda_intel/parameters/power_save_controller

pkill pulseaudio

pulseaudio --start 

exit 0

And it seems to have done the trick...

penreturns
  • 5,950
1

Either the sound driver doesn't support power management or it's not enabled. I've no idea what IDT is, but you can enable power management, for example, for an Intel sound device. The older versions of PowerTop used to suggest it, but the newer one has a menu you can navigate with left/right arrow key - Tunables is the entry you want. Try navigating to that entry and see if there is anything related to the sound card that powertop can tune.

mikewhatever
  • 32,638
  • Thanks mikewhatever. I have tried that options in powertop but that setting is not persistent on reboots. Even on manually setting the low using powertop, Audio codec is at 100% usage. I just left Ubuntu on laptop becuz all these heating issues. Literally you can fry an egg on my laptop palm rest, while on windows it is super cool. – Abhijeet Oct 17 '11 at 05:40
  • The heating issues are troubling indeed. Have you tried the pcie_aspm=force kernel option? If you want to troubleshoot it further, add some hardware specs to the original question. – mikewhatever Oct 17 '11 at 15:16
0

I am also affected by this issue on debian may those urls help to investigate :

https://bugs.launchpad.net/ubuntu/+source/powertop/+bug/536631

http://rzr.online.fr/q/lenovo

rzr
  • 415