this post was submitted on 24 Feb 2024
268 points (98.9% liked)

Linux

47307 readers
652 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

AMD has been on a roll over the past year making significant strides in power management across the Linux stack.

Most of this work is centered around support for p-state.

To take advantage you should run a newer Linux kernel. Here are some of the improvements from each recent release:

Use power-profiles-daemon 0.20+ which sets the appropriate p-state driver based on the selected battery profile.

Upcoming changes:

Kudos to AMD principal engineer Mario Limonciello for driving these changes across the board!

This is one advantage of increased competition (e.g. from the Apple M series); the entire ecosystem is pushed forward.

I am personally benefiting immensely from these improvements on my new Thinkpad t14s with AMD 7840U (battery life going from 4-5 hours to easily 10+ hours).

Finally we don't have to settle anymore for underwhelming battery life on Linux laptops :)

top 14 comments
sorted by: hot top controversial new old
[–] [email protected] 27 points 6 months ago

Agreed! On a Lenovo Yoga Slim 7 X, I also had a big, big boost of battery life. It's really great how far it came in comparison to a few months ago!

[–] [email protected] 22 points 6 months ago

I also noticed the fans spin less often and that the low power profile doesn't make the computer noticeably slower and "stutterier" to use like it used to.

[–] [email protected] 21 points 6 months ago* (last edited 6 months ago)

I have recently bought the P14s Gen 4 and except for some WiFi issues it has been pretty smooth sailing (definitely a loot better then the last notebook I had with nvidia dgpu).

[–] Molecular0079 17 points 6 months ago

I am so happy power-profiles-daemon now sets the CPU driver instead of only setting the platform_driver when it is present. It was a big pain point of mine.

[–] [email protected] 11 points 6 months ago

Also want to appreciate the idle efficiency improvements! My AMD laptop only loses a few % of battery life after idling overnight (with the default s2idle sleep mode). A huge improvement to my older work Intel ThinkPad which loses over 25% overnight...

[–] [email protected] 10 points 6 months ago (1 children)

Would a desktop CPU (Zen3) also benefit from these improvements?

[–] [email protected] 5 points 6 months ago* (last edited 6 months ago) (1 children)

Yes, Zen 2 and above support p-states! You might need to update your bios and enable CPPC if p-state is not showing up.

You can confirm by running $ powerprofilesctl and seeing if CpuDriver is amd_pstate.

[–] [email protected] 4 points 6 months ago

Thx, I will try that. When configuring my kernel I saw it and left it in the default config "active" (I was upgrading to the latest LTS kernel today). I did not check how I can interact with it as a user, yet.

[–] [email protected] 8 points 6 months ago (1 children)

is ppd better for amd than tlp?

[–] [email protected] 5 points 6 months ago

Yes. You should not use tlp anymore on any AMD processor that supports p-states. TLP does not support these and it's own logic may conflict with the CPU. Use PPD and let the processor itself take care of the optimizations!

See: https://community.frame.work/t/tracking-ppd-v-tlp-for-amd-ryzen-7040/39423

[–] [email protected] 3 points 6 months ago* (last edited 6 months ago) (1 children)

Do I have to manually install PPD?

[–] [email protected] 5 points 6 months ago* (last edited 6 months ago) (1 children)

PPD comes default on most distros (I can at least confirm for Debian, Ubuntu and Fedora on the GNOME variant). I am not sure about KDE variants but they should support it too even if it's not pre-installed.

You can check if it's running with the following command:

$ powerprofilesctl

However as the 0.20 release which supports p-state just released recently most fixed point release distros won't have the newer version. In this case you would need to update it manually.

I am running Debian testing and it has the new version while stable does not.

https://packages.debian.org/trixie/power-profiles-daemon

[–] jntesteves 4 points 6 months ago (1 children)

You shouldn't use sudo to run powerprofilesctl

[–] [email protected] 3 points 6 months ago

Good point, edited!