diff options
Diffstat (limited to 'src/mainboard/google/peppy/acpi/thermal.asl')
-rw-r--r-- | src/mainboard/google/peppy/acpi/thermal.asl | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/mainboard/google/peppy/acpi/thermal.asl b/src/mainboard/google/peppy/acpi/thermal.asl index 69b6ac9834..67f83ef142 100644 --- a/src/mainboard/google/peppy/acpi/thermal.asl +++ b/src/mainboard/google/peppy/acpi/thermal.asl @@ -126,12 +126,18 @@ Scope (\_TZ) } Method (_ON) { Store (0, \FLVL) - \_SB.PCI0.MCHC.STND () + + /* Enable Power Limit */ + \_SB.PCI0.MCHC.CTLE (\F0PW) + Notify (\_TZ.THRM, 0x81) } Method (_OFF) { Store (1, \FLVL) - \_SB.PCI0.MCHC.STDN () + + /* Disable Power Limit */ + \_SB.PCI0.MCHC.CTLD () + Notify (\_TZ.THRM, 0x81) } } |