Files
archived-g-helper/app/AutoTDP/PowerLimiter/ASUSACPIPowerLimiter.cs
2024-03-02 13:29:56 +01:00

90 lines
2.7 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
namespace GHelper.AutoTDP.PowerLimiter
{
internal class ASUSACPIPowerLimiter : IPowerLimiter
{
private int DefaultA0;
private int DefaultA3;
private int DefaultB0 = 0;
private int DefaultC1 = 0;
public ASUSACPIPowerLimiter()
{
}
public static bool IsAvailable()
{
return AppConfig.IsASUS();
}
public void SavePowerLimits()
{
DefaultA0 = Program.acpi.DeviceGet(AsusACPI.PPT_APUA0);
DefaultA3 = Program.acpi.DeviceGet(AsusACPI.PPT_APUA3);
if (Program.acpi.IsAllAmdPPT()) // CPU limit all amd models
{
DefaultB0 = Program.acpi.DeviceGet(AsusACPI.PPT_CPUB0);
}
if (Program.acpi.DeviceGet(AsusACPI.PPT_APUC1) >= 0) // FPPT boost for non all-amd models
{
DefaultC1 = Program.acpi.DeviceGet(AsusACPI.PPT_APUC1);
}
}
public void SetCPUPowerLimit(double watts)
{
if (Program.acpi.DeviceGet(AsusACPI.PPT_APUA0) >= 0)
{
Program.acpi.DeviceSet(AsusACPI.PPT_APUA3, (int)watts, "PowerLimit A3");
Program.acpi.DeviceSet(AsusACPI.PPT_APUA0, (int)watts, "PowerLimit A0");
}
if (Program.acpi.IsAllAmdPPT()) // CPU limit all amd models
{
Program.acpi.DeviceSet(AsusACPI.PPT_CPUB0, (int)watts, "PowerLimit B0");
}
if (Program.acpi.DeviceGet(AsusACPI.PPT_APUC1) >= 0) // FPPT boost for non all-amd models
{
Program.acpi.DeviceSet(AsusACPI.PPT_APUC1, (int)watts, "PowerLimit C1");
}
}
public int GetCPUPowerLimit()
{
return Program.acpi.DeviceGet(AsusACPI.PPT_APUA0);
}
public void Dispose()
{
//Nothing to dispose here
}
public void ResetPowerLimits()
{
//Load limits that were set before the limiter engaged
if (DefaultA3 > 0)
Program.acpi.DeviceSet(AsusACPI.PPT_APUA3, DefaultA3, "PowerLimit A0");
if (DefaultA0 > 0)
Program.acpi.DeviceSet(AsusACPI.PPT_APUA0, DefaultA0, "PowerLimit A3");
if (Program.acpi.IsAllAmdPPT() && DefaultB0 > 0) // CPU limit all amd models
{
Program.acpi.DeviceSet(AsusACPI.PPT_CPUB0, DefaultB0, "PowerLimit B0");
}
if (Program.acpi.DeviceGet(AsusACPI.PPT_APUC1) >= 0) // FPPT boost for non all-amd models
{
Program.acpi.DeviceSet(AsusACPI.PPT_APUC1, DefaultC1, "PowerLimit C1");
}
}
}
}