PEL: Add ambient temp PEL registry entries

Add 3 new PEL message registry entries:
* temp crossed EPOW3 threshold
* temp crossed EPOW4 threshold
* temp under EPOW3 threshold

These error logs will come from the sensor-monitor application that
monitors the HardShutdown (EPOW4) and SoftShutdown (EPOW3) D-Bus
threshod interfaces.  These interfaces will only ever be used on the
ambient virtual sensor in the systems that use PELs.

There is no entry for going below the EPOW4 threshold because, while
ther sensor-monitor code would create an error for that, the interface
will have the hysteresis set so that it will never happen.

Signed-off-by: Matt Spinler <spinler@us.ibm.com>
Change-Id: Ieed5364654a80697e189cf2e7614b0aead1fb218
diff --git a/extensions/openpower-pels/registry/message_registry.json b/extensions/openpower-pels/registry/message_registry.json
index 932c6d1..0629f01 100644
--- a/extensions/openpower-pels/registry/message_registry.json
+++ b/extensions/openpower-pels/registry/message_registry.json
@@ -1546,6 +1546,102 @@
         },
 
         {
+            "Name": "xyz.openbmc_project.Sensor.Threshold.Error.SoftShutdownAlarmHigh",
+            "Subsystem": "power",
+            "ComponentID": "0x2800",
+            "Severity": "predictive",
+            "ActionFlags": ["service_action", "report"],
+
+            "SRC": {
+                "ReasonCode": "0x2807",
+                "Words6To9": {}
+            },
+
+            "Callouts": [
+                {
+                    "CalloutList": [
+                        {
+                          "Priority": "high",
+                          "SymbolicFRU": "ambient_temp"
+                        }
+                    ]
+                }
+            ],
+
+            "Documentation": {
+                "Description": "The ambient temperature passed the EPOW3 limit.",
+                "Message": "The ambient temperature passed the EPOW3 limit. The system will shut down if temp doesn't decrease.",
+                "Notes": [
+                    "This error occurs when the ambient temperature surpassed",
+                    "the EPOW3 shutdown limit."
+                ]
+            }
+        },
+
+        {
+            "Name": "xyz.openbmc_project.Sensor.Threshold.Error.SoftShutdownAlarmHighClear",
+            "Subsystem": "power",
+            "ComponentID": "0x2800",
+            "Severity": "non_error",
+            "ActionFlags": ["report"],
+            "EventType": "env_normal",
+
+            "SRC": {
+                "ReasonCode": "0x2808",
+                "Words6To9": {}
+            },
+
+            "Callouts": [
+                {
+                    "CalloutList": [
+                        {
+                          "Priority": "high",
+                          "SymbolicFRU": "ambient_temp_back"
+                        }
+                    ]
+                }
+            ],
+
+            "Documentation": {
+                "Description": "The ambient temperature is back under the EPOW3 limit.",
+                "Message": "The ambient temperature is back under the EPOW3 limit."
+            }
+        },
+
+        {
+            "Name": "xyz.openbmc_project.Sensor.Threshold.Error.HardShutdownAlarmHigh",
+            "Subsystem": "power",
+            "ComponentID": "0x2800",
+            "Severity": "unrecoverable",
+            "ActionFlags": ["service_action", "report"],
+
+            "SRC": {
+                "ReasonCode": "0x2809",
+                "Words6To9": {}
+            },
+
+            "Callouts": [
+                {
+                    "CalloutList": [
+                        {
+                          "Priority": "high",
+                          "SymbolicFRU": "ambient_temp"
+                        }
+                    ]
+                }
+            ],
+
+            "Documentation": {
+                "Description": "The ambient temperature passed the EPOW4 limit.",
+                "Message": "The ambient temperature passed the EPOW4 limit. The system will shut down",
+                "Notes": [
+                    "This error occurs when the ambient temperature surpassed",
+                    "the EPOW4 shutdown limit."
+                ]
+            }
+        },
+
+        {
             "Name": "com.ibm.VPD.Error.InvalidEepromPath",
             "Subsystem": "cec_vpd",
             "ComponentID": "0x4000",