You are not logged in.

#1 2024-04-16 07:43:57

DyslAuth
Member
Registered: 2024-04-16
Posts: 2

How to switch performance modes on the Lenovo Ideapad Gaming 3 15IAH7

I tried the commands listed under System Performance mode but it doesn't work

Offline

#2 2024-04-16 08:53:09

yataro
Member
Registered: 2024-03-09
Posts: 10

Re: How to switch performance modes on the Lenovo Ideapad Gaming 3 15IAH7

You should be able to use Fn+Q hotkey to change the performance mode, you can see how power button led will change their color. I believe that for 15IAH7 ACPI call should be

\_SB.PC00.LPCB.EC0._Q13

With ACPI call led will not change the color, but you can verify that mode changed by return value. I will ask you to update the wiki entry with this ACPI call if it works for you smile

Offline

#3 2024-04-25 10:31:37

DyslAuth
Member
Registered: 2024-04-16
Posts: 2

Re: How to switch performance modes on the Lenovo Ideapad Gaming 3 15IAH7

Sorry for the late reply, But could you provide me with the exact command to verify mode as I am a noob and not able to figure it out.
Thanks  smile

Last edited by DyslAuth (2024-04-25 10:32:33)

Offline

#4 2024-04-27 11:45:42

yataro
Member
Registered: 2024-03-09
Posts: 10

Re: How to switch performance modes on the Lenovo Ideapad Gaming 3 15IAH7

Can you try this one (should query current mode):

sudo sh -c "echo '\_SB.PC00.LPCB.EC0.SPMO' > /proc/acpi/call && cat /proc/acpi/call"

Last edited by yataro (2024-04-27 11:46:29)

Offline

#5 2024-04-27 12:29:38

yataro
Member
Registered: 2024-03-09
Posts: 10

Re: How to switch performance modes on the Lenovo Ideapad Gaming 3 15IAH7

Also, I've found the way to change the performance mode with ACPI call:

# Battery Saving 
sudo sh -c "echo '\_SB_.GZFD.WMAA 0 0x2C 1' > /proc/acpi/call && cat /proc/acpi/call"
# Intelligent Cooling
sudo sh -c "echo '\_SB_.GZFD.WMAA 0 0x2C 2' > /proc/acpi/call && cat /proc/acpi/call"
# Extreme Performance
sudo sh -c "echo '\_SB_.GZFD.WMAA 0 0x2C 3' > /proc/acpi/call && cat /proc/acpi/call"

Note: I got this from decompiled DSDT table and this may not work for you.

Offline

#6 2024-04-29 16:14:51

Archcan_98
Member
Registered: 2023-09-08
Posts: 36

Re: How to switch performance modes on the Lenovo Ideapad Gaming 3 15IAH7

Take a look at power-profiles-daemon:
 https://linuxconfig.org/how-to-manage-p … n-on-linux

It is not installed in KDE. For setup, look at power and battery after on taskbar (status icon). Edit system tray if you don't see it.

# pacman -S power-profiles-daemon

# systemctl enable --now power-profiles-daemon

$ systemctl status power-profiles-daemon

$ powerprofilesctl list
* performance:
       CpuDriver:   amd_pstate
       Degraded:   no

   balanced:
       CpuDriver:   amd_pstate
       PlatformDriver:         placeholder

   power-saver:
       CpuDriver:   amd_pstate
       PlatformDriver:        placeholder

On our Ideapad, we keep intelligent cooling default in the bios because the fan is noisy on cold boot.

Hope this help,

Offline

Board footer

Powered by FluxBB