public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH] Platform/RaspberryPi4: Correct thermal offset
@ 2020-09-09 23:11 Jeremy Linton
  2020-09-11 18:13 ` Pete Batard
  2020-10-22 13:45 ` Ard Biesheuvel
  0 siblings, 2 replies; 4+ messages in thread
From: Jeremy Linton @ 2020-09-09 23:11 UTC (permalink / raw)
  To: devel; +Cc: leif, pete, awarkentin, ard.biesheuvel, Jeremy Linton

The current mainline DT indicates that the thermal offset
on the rpi is 410040 rather than the 419949 being used.
This means our temp calculation is offset nearly 10C higher
when running in ACPI mode vs DT.

Signed-off-by: Jeremy Linton <jeremy.linton@arm.com>
---
 Platform/RaspberryPi/AcpiTables/Dsdt.asl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Platform/RaspberryPi/AcpiTables/Dsdt.asl b/Platform/RaspberryPi/AcpiTables/Dsdt.asl
index 2b9e8211cf..d116f965e1 100644
--- a/Platform/RaspberryPi/AcpiTables/Dsdt.asl
+++ b/Platform/RaspberryPi/AcpiTables/Dsdt.asl
@@ -269,7 +269,7 @@ DefinitionBlock ("Dsdt.aml", "DSDT", 5, "RPIFDN", "RPI", 2)
           Field (TEMS, DWordAcc, NoLock, Preserve) {
             TMPS, 32
           }
-          return (((419949 - ((TMPS & 0x3ff) * 487)) / 100) + 2732);
+          return (((410040 - ((TMPS & 0x3ff) * 487)) / 100) + 2732);
         }
         Method (_SCP, 3) { }               // receive cooling policy from OS
 
-- 
2.13.7


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-10-22 13:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-09 23:11 [PATCH] Platform/RaspberryPi4: Correct thermal offset Jeremy Linton
2020-09-11 18:13 ` Pete Batard
2020-09-11 19:48   ` Jeremy Linton
2020-10-22 13:45 ` Ard Biesheuvel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox