PHAL: Additional callout support during sbe chipop timeout

Sbe chip-op timeout case BMC should run sbe_extract_rc
procedure to identify the correct callout and service
action. Currently this procedure based callout handling
is not place. Adding callout recommended by RAS team till
the actual callout code in place.

Tested:
      "Callout Count":        "2",
         "Callouts": [{
         "FRU Type":         "Maintenance Procedure Required",
         "Priority":         "Mandatory, replace all with this type as a unit",
         "Procedure":        "BMC0002"
          }, {
          "FRU Type":         "Normal Hardware FRU",
          "Priority":         "Medium Priority",
          "Location Code":    "xxx",  --> processor callout
          "Part Number":      "xxx",
          "CCIN":             "xxx",
          "Serial Number":    "xxx"

Signed-off-by: Jayanth Othayoth <ojayanth@in.ibm.com>
Change-Id: I13a16f314fe3a5e9eaeb3f84fdaa5bfe1924c7c4
diff --git a/extensions/phal/create_pel.cpp b/extensions/phal/create_pel.cpp
index 75ee064..44edafa 100644
--- a/extensions/phal/create_pel.cpp
+++ b/extensions/phal/create_pel.cpp
@@ -180,7 +180,8 @@
     std::unique_ptr<FFDCFile> FFDCFilePtr;
     try
     {
-        if ((event == "org.open_power.Processor.Error.SbeBootTimeout") &&
+        if (((event == "org.open_power.Processor.Error.SbeBootTimeout") ||
+             (event == "org.open_power.Processor.Error.SbeChipOpTimeout")) &&
             (severity == Severity::Error))
         {
             json jsonCalloutDataList;