mori_motherboard: Add 5s timeout to ext sensor and thresh to psu0_temp
Add 5s timeout for THERMAL_ZONE0_T external sensor so that its reading
can go to NaN and cause fans to go to fail safe mode if the sensor is
not driven.
An upper non-critical threshold of 105C and upper critical threshold of
120C has been added to the psu0_temp sensor.
Change-Id: Iea3a81200fa7e38d5b19e8d3d9be7505be2a0cf2
Signed-off-by: Jonico Eustaquio <jonico.eustaquio@fii-na.com>
diff --git a/configurations/mori_motherboard.json b/configurations/mori_motherboard.json
index f3ce10b..afe4af2 100644
--- a/configurations/mori_motherboard.json
+++ b/configurations/mori_motherboard.json
@@ -725,6 +725,20 @@
},
{
"Direction": "greater than",
+ "Label": "temp1",
+ "Name": "upper critical",
+ "Severity": 1,
+ "Value": 120
+ },
+ {
+ "Direction": "greater than",
+ "Label": "temp1",
+ "Name": "upper non critical",
+ "Severity": 0,
+ "Value": 105
+ },
+ {
+ "Direction": "greater than",
"Label": "vin",
"Name": "upper critical",
"Severity": 1,
@@ -801,6 +815,7 @@
"MaxValue": 127.0,
"MinValue": -128.0,
"Name": "THERMAL_ZONE0_T",
+ "Timeout": 5,
"Type": "ExternalSensor",
"Units": "DegreesC"
},