Merge remote-tracking branch 'ms/esel_devpath_fixes'

Change-Id: I433fd0c50f14dd9be178223957ec63c581ac288d
diff --git a/thalerj/openbmctool.py b/thalerj/openbmctool.py
old mode 100644
new mode 100755
index 2fce508..ef12d81
--- a/thalerj/openbmctool.py
+++ b/thalerj/openbmctool.py
@@ -648,6 +648,37 @@
     return eselParts                
 
 
+def getESELSeverity(esel):
+    """
+        Finds the severity type in an eSEL from the User Header section.
+        @param esel - the eSEL data
+        @return severity - e.g. 'Critical'
+    """
+
+    # everything but 1 and 2 are Critical
+    # '1': 'recovered',
+    # '2': 'predictive',
+    # '4': 'unrecoverable',
+    # '5': 'critical',
+    # '6': 'diagnostic',
+    # '7': 'symptom'
+    severities = {
+        '1': 'Informational',
+        '2': 'Warning'
+    }
+
+    try:
+        headerPosition = esel.index('55 48') # 'UH'
+        # The severity is the last byte in the 8 byte section (a byte is '  bb')
+        severity = esel[headerPosition:headerPosition+32].split(' ')[-1]
+        type = severity[0]
+    except ValueError:
+        print("Could not find severity value in UH section in eSEL")
+        type = 'x';
+
+    return severities.get(type, 'Critical')
+
+
 def sortSELs(events):
     """
          sorts the sels by timestamp, then log entry number
@@ -698,6 +729,7 @@
     esel = ""
     eselParts = {}
     i2cdevice= ""
+    eselSeverity = None
     
     'prepare and sort the event entries'
     for key in selEntries:
@@ -726,12 +758,17 @@
                     fruCallout = str(addDataPiece[calloutIndex]).split('=')[1]
                 if("CALLOUT_DEVICE_PATH" in addDataPiece[i]):
                     i2creadFail = True
-                    i2cdevice = str(addDataPiece[i]).strip().split('=')[1]
-                    i2cdevice = '/'.join(i2cdevice.split('/')[-4:])
-                    if 'fsi' in str(addDataPiece[calloutIndex]).split('=')[1]:
-                        fruCallout = 'FSI'
-                    else:
-                        fruCallout = 'I2C'
+
+                    fruCallout = str(addDataPiece[calloutIndex]).split('=')[1]
+
+                    # Fall back to "I2C"/"FSI" if dev path isn't in policy table
+                    if (messageID + '||' + fruCallout) not in policyTable:
+                        i2cdevice = str(addDataPiece[i]).strip().split('=')[1]
+                        i2cdevice = '/'.join(i2cdevice.split('/')[-4:])
+                        if 'fsi' in str(addDataPiece[calloutIndex]).split('=')[1]:
+                            fruCallout = 'FSI'
+                        else:
+                            fruCallout = 'I2C'
                     calloutFound = True
                 if("CALLOUT_GPIO_NUM" in addDataPiece[i]):
                     if not calloutFound:
@@ -747,6 +784,7 @@
                     calloutFound = True
                 if("ESEL" in addDataPiece[i]):
                     esel = str(addDataPiece[i]).strip().split('=')[1]
+                    eselSeverity = getESELSeverity(esel)
                     if args.devdebug:
                         eselParts = parseESEL(args, esel)
                     hasEsel=True
@@ -769,6 +807,15 @@
             if(calloutFound):
                 if fruCallout != "":
                     policyKey = messageID +"||" +  fruCallout
+
+                    # Also use the severity for hostboot errors
+                    if eselSeverity and messageID == 'org.open_power.Host.Error.Event':
+                        policyKey += '||' + eselSeverity
+
+                        # if not in the table, fall back to the original key
+                        if policyKey not in policyTable:
+                            policyKey = policyKey.replace('||'+eselSeverity, '')
+
                     if policyKey not in policyTable:
                         policyKey = messageID
                 else:
@@ -2211,7 +2258,7 @@
          main function for running the command line utility as a sub application  
     """ 
     global toolVersion 
-    toolVersion = "1.06"
+    toolVersion = "1.07"
     parser = createCommandParser()
     args = parser.parse_args(argv)
         
diff --git a/thalerj/policyTable.json b/thalerj/policyTable.json
index 7e0fe3e..38e1f15 100644
--- a/thalerj/policyTable.json
+++ b/thalerj/policyTable.json
@@ -231,6 +231,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core0||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "0,0",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 0 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core0",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core0||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "0,0",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 0 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core0",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core0||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "0,0",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 0 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core0",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core1": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -273,6 +336,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core10||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "0,10",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 10 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core10",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core10||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "0,10",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 10 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core10",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core10||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "0,10",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 10 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core10",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core11": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -294,6 +420,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core11||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "0,11",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 11 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core11",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core11||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "0,11",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 11 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core11",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core11||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "0,11",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 11 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core11",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core12": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -315,6 +504,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core12||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "0,12",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 12 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core12",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core12||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "0,12",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 12 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core12",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core12||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "0,12",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 12 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core12",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core13": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -336,6 +588,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core13||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "0,13",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 13 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core13",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core13||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "0,13",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 13 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core13",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core13||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "0,13",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 13 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core13",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core14": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -357,6 +672,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core14||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "0,14",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 14 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core14",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core14||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "0,14",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 14 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core14",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core14||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "0,14",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 14 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core14",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core15": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -378,6 +756,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core15||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "0,15",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 15 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core15",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core15||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "0,15",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 15 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core15",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core15||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "0,15",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 15 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core15",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core16": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -399,6 +840,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core16||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "0,16",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 16 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core16",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core16||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "0,16",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 16 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core16",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core16||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "0,16",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 16 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core16",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core17": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -420,6 +924,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core17||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "0,17",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 17 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core17",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core17||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "0,17",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 17 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core17",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core17||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "0,17",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 17 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core17",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core18": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -441,6 +1008,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core18||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "0,18",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 18 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core18",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core18||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "0,18",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 18 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core18",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core18||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "0,18",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 18 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core18",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core19": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -462,6 +1092,132 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core19||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "0,19",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 19 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core19",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core19||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "0,19",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 19 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core19",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core19||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "0,19",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 19 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core19",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core1||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "0,1",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 1 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core1",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core1||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "0,1",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 1 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core1",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core1||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "0,1",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 1 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core1",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core2": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -504,6 +1260,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core20||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "0,20",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 20 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core20",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core20||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "0,20",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 20 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core20",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core20||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "0,20",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 20 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core20",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core21": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -525,6 +1344,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core21||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "0,21",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 21 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core21",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core21||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "0,21",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 21 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core21",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core21||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "0,21",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 21 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core21",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core22": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -546,6 +1428,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core22||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "0,22",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 22 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core22",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core22||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "0,22",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 22 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core22",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core22||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "0,22",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 22 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core22",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core23": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -567,6 +1512,132 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core23||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "0,23",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 23 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core23",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core23||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "0,23",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 23 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core23",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core23||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "0,23",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 23 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core23",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core2||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "0,2",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 2 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core2",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core2||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "0,2",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 2 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core2",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core2||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "0,2",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 2 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core2",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core3": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -588,6 +1659,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core3||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "0,3",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 3 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core3",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core3||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "0,3",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 3 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core3",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core3||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "0,3",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 3 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core3",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core4": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -609,6 +1743,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core4||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "0,4",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 4 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core4",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core4||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "0,4",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 4 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core4",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core4||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "0,4",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 4 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core4",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core5": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -630,6 +1827,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core5||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "0,5",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 5 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core5",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core5||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "0,5",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 5 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core5",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core5||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "0,5",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 5 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core5",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core6": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -651,6 +1911,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core6||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "0,6",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 6 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core6",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core6||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "0,6",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 6 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core6",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core6||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "0,6",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 6 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core6",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core7": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -672,6 +1995,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core7||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "0,7",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 7 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core7",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core7||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "0,7",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 7 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core7",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core7||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "0,7",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 7 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core7",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core8": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -693,6 +2079,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core8||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "0,8",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 8 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core8",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core8||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "0,8",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 8 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core8",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core8||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "0,8",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 8 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core8",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core9": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -714,6 +2163,132 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core9||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "0,9",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 9 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core9",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core9||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "0,9",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 9 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core9",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core9||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "0,9",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 core 9 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core9",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0090M",
+            "ComponentInstance": 0,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0095I",
+            "ComponentInstance": 0,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0093G",
+            "ComponentInstance": 0,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 0 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -756,6 +2331,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core0||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "1,0",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 0 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core0",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core0||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "1,0",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 0 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core0",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core0||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "1,0",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 0 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core0",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core1": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -798,6 +2436,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core10||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "1,10",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 10 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core10",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core10||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "1,10",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 10 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core10",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core10||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "1,10",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 10 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core10",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core11": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -819,6 +2520,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core11||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "1,11",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 11 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core11",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core11||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "1,11",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 11 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core11",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core11||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "1,11",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 11 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core11",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core12": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -840,6 +2604,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core12||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "1,12",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 12 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core12",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core12||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "1,12",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 12 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core12",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core12||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "1,12",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 12 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core12",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core13": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -861,6 +2688,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core13||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "1,13",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 13 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core13",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core13||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "1,13",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 13 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core13",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core13||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "1,13",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 13 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core13",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core14": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -882,6 +2772,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core14||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "1,14",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 14 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core14",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core14||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "1,14",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 14 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core14",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core14||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "1,14",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 14 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core14",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core15": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -903,6 +2856,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core15||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "1,15",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 15 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core15",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core15||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "1,15",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 15 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core15",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core15||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "1,15",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 15 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core15",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core16": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -924,6 +2940,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core16||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "1,16",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 16 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core16",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core16||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "1,16",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 16 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core16",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core16||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "1,16",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 16 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core16",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core17": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -945,6 +3024,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core17||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "1,17",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 17 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core17",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core17||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "1,17",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 17 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core17",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core17||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "1,17",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 17 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core17",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core18": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -966,6 +3108,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core18||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "1,18",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 18 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core18",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core18||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "1,18",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 18 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core18",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core18||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "1,18",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 18 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core18",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core19": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -987,6 +3192,132 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core19||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "1,19",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 19 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core19",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core19||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "1,19",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 19 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core19",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core19||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "1,19",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 19 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core19",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core1||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "1,1",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 1 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core1",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core1||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "1,1",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 1 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core1",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core1||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "1,1",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 1 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core1",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core2": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -1029,6 +3360,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core20||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "1,20",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 20 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core20",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core20||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "1,20",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 20 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core20",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core20||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "1,20",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 20 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core20",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core21": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -1050,6 +3444,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core21||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "1,21",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 21 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core21",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core21||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "1,21",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 21 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core21",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core21||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "1,21",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 21 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core21",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core22": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -1071,6 +3528,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core22||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "1,22",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 22 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core22",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core22||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "1,22",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 22 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core22",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core22||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "1,22",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 22 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core22",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core23": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -1092,6 +3612,132 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core23||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "1,23",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 23 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core23",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core23||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "1,23",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 23 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core23",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core23||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "1,23",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 23 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core23",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core2||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "1,2",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 2 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core2",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core2||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "1,2",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 2 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core2",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core2||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "1,2",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 2 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core2",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core3": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -1113,6 +3759,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core3||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "1,3",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 3 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core3",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core3||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "1,3",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 3 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core3",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core3||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "1,3",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 3 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core3",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core4": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -1134,6 +3843,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core4||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "1,4",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 4 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core4",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core4||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "1,4",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 4 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core4",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core4||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "1,4",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 4 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core4",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core5": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -1155,6 +3927,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core5||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "1,5",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 5 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core5",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core5||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "1,5",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 5 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core5",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core5||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "1,5",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 5 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core5",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core6": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -1176,6 +4011,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core6||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "1,6",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 6 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core6",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core6||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "1,6",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 6 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core6",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core6||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "1,6",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 6 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core6",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core7": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -1197,6 +4095,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core7||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "1,7",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 7 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core7",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core7||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "1,7",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 7 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core7",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core7||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "1,7",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 7 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core7",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core8": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -1218,6 +4179,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core8||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "1,8",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 8 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core8",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core8||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "1,8",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 8 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core8",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core8||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "1,8",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 8 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core8",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core9": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Processing",
@@ -1239,6 +4263,132 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core9||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0091M",
+            "ComponentInstance": "1,9",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 9 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core9",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core9||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0096I",
+            "ComponentInstance": "1,9",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 9 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core9",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core9||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0094G",
+            "ComponentInstance": "1,9",
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 core 9 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core9",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPPU0090M",
+            "ComponentInstance": 1,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0095I",
+            "ComponentInstance": 1,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Processing",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPPU0093G",
+            "ComponentInstance": 1,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "CPU 1 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm0": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Memory",
@@ -1260,6 +4410,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm0||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPMA0057M",
+            "ComponentInstance": 0,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 0 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm0",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm0||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0060I",
+            "ComponentInstance": 0,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 0 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm0",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm0||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0059G",
+            "ComponentInstance": 0,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 0 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm0",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm1": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Memory",
@@ -1302,6 +4515,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm10||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPMA0057M",
+            "ComponentInstance": 10,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 10 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm10",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm10||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0060I",
+            "ComponentInstance": 10,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 10 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm10",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm10||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0059G",
+            "ComponentInstance": 10,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 10 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm10",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm11": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Memory",
@@ -1323,6 +4599,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm11||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPMA0057M",
+            "ComponentInstance": 11,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 11 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm11",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm11||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0060I",
+            "ComponentInstance": 11,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 11 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm11",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm11||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0059G",
+            "ComponentInstance": 11,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 11 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm11",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm12": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Memory",
@@ -1344,6 +4683,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm12||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPMA0057M",
+            "ComponentInstance": 12,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 12 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm12",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm12||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0060I",
+            "ComponentInstance": 12,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 12 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm12",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm12||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0059G",
+            "ComponentInstance": 12,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 12 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm12",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm13": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Memory",
@@ -1365,6 +4767,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm13||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPMA0057M",
+            "ComponentInstance": 13,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 13 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm13",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm13||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0060I",
+            "ComponentInstance": 13,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 13 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm13",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm13||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0059G",
+            "ComponentInstance": 13,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 13 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm13",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm14": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Memory",
@@ -1386,6 +4851,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm14||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPMA0057M",
+            "ComponentInstance": 14,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 14 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm14",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm14||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0060I",
+            "ComponentInstance": 14,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 14 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm14",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm14||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0059G",
+            "ComponentInstance": 14,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 14 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm14",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm15": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Memory",
@@ -1407,6 +4935,132 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm15||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPMA0057M",
+            "ComponentInstance": 15,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 15 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm15",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm15||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0060I",
+            "ComponentInstance": 15,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 15 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm15",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm15||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0059G",
+            "ComponentInstance": 15,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 15 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm15",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm1||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPMA0057M",
+            "ComponentInstance": 1,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 1 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm1",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm1||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0060I",
+            "ComponentInstance": 1,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 1 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm1",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm1||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0059G",
+            "ComponentInstance": 1,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 1 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm1",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm2": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Memory",
@@ -1428,6 +5082,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm2||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPMA0057M",
+            "ComponentInstance": 2,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 2 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm2",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm2||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0060I",
+            "ComponentInstance": 2,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 2 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm2",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm2||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0059G",
+            "ComponentInstance": 2,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 2 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm2",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm3": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Memory",
@@ -1449,6 +5166,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm3||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPMA0057M",
+            "ComponentInstance": 3,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 3 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm3",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm3||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0060I",
+            "ComponentInstance": 3,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 3 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm3",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm3||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0059G",
+            "ComponentInstance": 3,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 3 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm3",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm4": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Memory",
@@ -1470,6 +5250,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm4||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPMA0057M",
+            "ComponentInstance": 4,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 4 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm4",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm4||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0060I",
+            "ComponentInstance": 4,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 4 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm4",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm4||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0059G",
+            "ComponentInstance": 4,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 4 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm4",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm5": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Memory",
@@ -1491,6 +5334,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm5||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPMA0057M",
+            "ComponentInstance": 5,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 5 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm5",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm5||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0060I",
+            "ComponentInstance": 5,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 5 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm5",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm5||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0059G",
+            "ComponentInstance": 5,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 5 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm5",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm6": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Memory",
@@ -1512,6 +5418,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm6||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPMA0057M",
+            "ComponentInstance": 6,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 6 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm6",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm6||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0060I",
+            "ComponentInstance": 6,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 6 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm6",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm6||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0059G",
+            "ComponentInstance": 6,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 6 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm6",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm7": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Memory",
@@ -1533,6 +5502,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm7||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPMA0057M",
+            "ComponentInstance": 7,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 7 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm7",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm7||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0060I",
+            "ComponentInstance": 7,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 7 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm7",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm7||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0059G",
+            "ComponentInstance": 7,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 7 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm7",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm8": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Memory",
@@ -1554,6 +5586,69 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm8||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPMA0057M",
+            "ComponentInstance": 8,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 8 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm8",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm8||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0060I",
+            "ComponentInstance": 8,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 8 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm8",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm8||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0059G",
+            "ComponentInstance": 8,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 8 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm8",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm9": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Memory",
@@ -1575,6 +5670,132 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm9||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPMA0057M",
+            "ComponentInstance": 9,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 9 has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm9",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm9||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0060I",
+            "ComponentInstance": 9,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 9 has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm9",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm9||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Memory",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPMA0059G",
+            "ComponentInstance": 9,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "DIMM 9 has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm9",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard||Critical": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Canister/Appliance",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": true,
+            "CommonEventID": "FQPSPAA0013M",
+            "ComponentInstance": 1,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Unrecoverable Hardware Failure",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "The system backplane has failed",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Critical",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard||Informational": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Canister/Appliance",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPAA0014I",
+            "ComponentInstance": 1,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Recovery",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "The motherboard has recovered from an error",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Information",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard||Warning": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Canister/Appliance",
+            "BMCMessageID": "org.open_power.Host.Error.Event",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPAA0013G",
+            "ComponentInstance": 1,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "PFA",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "The system backplane has exceeded a correctable error threshold",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard",
+            "RelatedEventIDs": {},
+            "Serviceable": true,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "org.open_power.Host.Error.MaintenanceProcedure||0": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
@@ -5733,6 +9954,111 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "xyz.openbmc_project.Common.Device.Error.ReadFailure||/sys/devices/platform/ahb/ahb:apb/ahb:apb:i2c@1e78a000/1e78a100.i2c-bus/i2c-11/11-0064": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+            "BMCMessageID": "xyz.openbmc_project.Common.Device.Error.ReadFailure",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPCR0059F",
+            "ComponentInstance": null,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Communication Failure/Timeout",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "Failed to read from the power sequencer chip on the motherboard",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "xyz.openbmc_project.Common.Device.Error.ReadFailure||/sys/devices/platform/ahb/ahb:apb/ahb:apb:i2c@1e78a000/1e78a100.i2c-bus/i2c-3/3-0068": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+            "BMCMessageID": "xyz.openbmc_project.Common.Device.Error.ReadFailure",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPCR0060F",
+            "ComponentInstance": 1,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Communication Failure/Timeout",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "Failed to read from power supply 1",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "xyz.openbmc_project.Common.Device.Error.ReadFailure||/sys/devices/platform/ahb/ahb:apb/ahb:apb:i2c@1e78a000/1e78a100.i2c-bus/i2c-3/3-0069": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+            "BMCMessageID": "xyz.openbmc_project.Common.Device.Error.ReadFailure",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPCR0060F",
+            "ComponentInstance": 0,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Communication Failure/Timeout",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "Failed to read from power supply 0",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "xyz.openbmc_project.Common.Device.Error.ReadFailure||/sys/devices/platform/gpio-fsi/fsi0/slave@00:00/00:00:00:0a/fsi1/slave@01:00/raw": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+            "BMCMessageID": "xyz.openbmc_project.Common.Device.Error.ReadFailure",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPCR0062F",
+            "ComponentInstance": 1,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Communication Failure/Timeout",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "Failed to read from CPU 1 over FSI",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "xyz.openbmc_project.Common.Device.Error.ReadFailure||/sys/devices/platform/gpio-fsi/fsi0/slave@00:00/raw": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+            "BMCMessageID": "xyz.openbmc_project.Common.Device.Error.ReadFailure",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPCR0062F",
+            "ComponentInstance": 0,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Communication Failure/Timeout",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "Failed to read from CPU 0 over FSI",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "xyz.openbmc_project.Common.Device.Error.ReadFailure||FSI": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
@@ -5775,6 +10101,48 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "xyz.openbmc_project.Common.Device.Error.WriteFailure||/sys/devices/platform/gpio-fsi/fsi0/slave@00:00/00:00:00:0a/fsi1/slave@01:00/raw": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+            "BMCMessageID": "xyz.openbmc_project.Common.Device.Error.WriteFailure",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPCR0061F",
+            "ComponentInstance": 1,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Communication Failure/Timeout",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "Failed to write to CPU 1 over FSI",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "xyz.openbmc_project.Common.Device.Error.WriteFailure||/sys/devices/platform/gpio-fsi/fsi0/slave@00:00/raw": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+            "BMCMessageID": "xyz.openbmc_project.Common.Device.Error.WriteFailure",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPCR0061F",
+            "ComponentInstance": 0,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Communication Failure/Timeout",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "Failed to write to CPU 0 over FSI",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "xyz.openbmc_project.Common.Device.Error.WriteFailure||FSI": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
@@ -10842,7 +15210,7 @@
             "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent",
             "CallHomeCandidate": true,
             "CommonEventID": "FQPSPPW0015M",
-            "ComponentInstance": null,
+            "ComponentInstance": 0,
             "DateAdded": null,
             "DateReviewed": null,
             "EventType": "Uncorrectable Hardware Failure",
@@ -10854,7 +15222,7 @@
             "RelatedEventIDs": {},
             "Serviceable": true,
             "Severity": "Critical",
-            "UserAction": "Power",
+            "UserAction": null,
             "VMMigrationFlag": null
         },
         "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1": {
@@ -10863,7 +15231,7 @@
             "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent",
             "CallHomeCandidate": true,
             "CommonEventID": "FQPSPPW0015M",
-            "ComponentInstance": null,
+            "ComponentInstance": 1,
             "DateAdded": null,
             "DateReviewed": null,
             "EventType": "Uncorrectable Hardware Failure",
@@ -10875,7 +15243,7 @@
             "RelatedEventIDs": {},
             "Serviceable": true,
             "Severity": "Critical",
-            "UserAction": "Power",
+            "UserAction": null,
             "VMMigrationFlag": null
         },
         "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/power_supply0": {
@@ -12537,6 +16905,279 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/sys/devices/platform/ahb/ahb:apb/ahb:apb:i2c@1e78a000/1e78a100.i2c-bus/i2c-3/3-0052": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+            "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPCR0057F",
+            "ComponentInstance": null,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Communication Failure/Timeout",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "Failed to read from the fan control device on the motherboard",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/sys/devices/platform/ahb/ahb:apb/ahb:apb:i2c@1e78a000/1e78a100.i2c-bus/i2c-3/3-0068": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+            "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPCR0060F",
+            "ComponentInstance": 1,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Communication Failure/Timeout",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "Failed to read from power supply 1",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/sys/devices/platform/ahb/ahb:apb/ahb:apb:i2c@1e78a000/1e78a100.i2c-bus/i2c-3/3-0069": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+            "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPCR0060F",
+            "ComponentInstance": 0,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Communication Failure/Timeout",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "Failed to read from power supply 0",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/sys/devices/platform/ahb/ahb:apb/ahb:apb:i2c@1e78a000/1e78a100.i2c-bus/i2c-3/3-0076": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+            "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPCR0053F",
+            "ComponentInstance": null,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Communication Failure/Timeout",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "Failed to read from the ambient temperature sensor on the motherboard",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/sys/devices/platform/ahb/ahb:apb/ahb:apb:i2c@1e78a000/1e78a100.i2c-bus/i2c-3/3-0077": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+            "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPCR0052F",
+            "ComponentInstance": null,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Communication Failure/Timeout",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "Failed to read from the ambient temperature sensor on the motherboard",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/sys/devices/platform/ahb/ahb:apb/ahb:apb:i2c@1e78a000/1e78a100.i2c-bus/i2c-4/4-0070": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+            "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPCR0054F",
+            "ComponentInstance": 0,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Communication Failure/Timeout",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "Failed to read from the CPU 0 VDD/VCS VRM on the motherboard",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/sys/devices/platform/ahb/ahb:apb/ahb:apb:i2c@1e78a000/1e78a100.i2c-bus/i2c-4/4-0071": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+            "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPCR0055F",
+            "ComponentInstance": 1,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Communication Failure/Timeout",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "Failed to read from the CPU 1 VDN/VDDR VRM on the motherboard",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/sys/devices/platform/ahb/ahb:apb/ahb:apb:i2c@1e78a000/1e78a100.i2c-bus/i2c-5/5-0070": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+            "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPCR0054F",
+            "ComponentInstance": 1,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Communication Failure/Timeout",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "Failed to read from the CPU 1 VDD/VCS VRM on the motherboard",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/sys/devices/platform/ahb/ahb:apb/ahb:apb:i2c@1e78a000/1e78a100.i2c-bus/i2c-9/9-004a": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+            "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPCR0056F",
+            "ComponentInstance": null,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Communication Failure/Timeout",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "Failed to read from the PCIE temperature sensor on the motherboard",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/sys/devices/platform/gpio-fsi/fsi0/slave@00:00/00:00:00:06/sbefifo1-dev0/occ-hwmon.1": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+            "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPCR0063F",
+            "ComponentInstance": 0,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Communication Failure/Timeout",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "Failed to read from the OCC on CPU 0",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/sys/devices/platform/gpio-fsi/fsi0/slave@00:00/00:00:00:06/sbefifo1-dev0/occ1-dev0": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+            "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPCR0063F",
+            "ComponentInstance": 0,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Communication Failure/Timeout",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "Failed to read from the OCC on CPU 0",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/sys/devices/platform/gpio-fsi/fsi0/slave@00:00/00:00:00:0a/fsi1/slave@01:00/01:01:00:06/sbefifo2-dev0/occ-hwmon.2": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+            "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPCR0063F",
+            "ComponentInstance": 1,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Communication Failure/Timeout",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "Failed to read from the OCC on CPU 1",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
+        "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/sys/devices/platform/gpio-fsi/fsi0/slave@00:00/00:00:00:0a/fsi1/slave@01:00/01:01:00:06/sbefifo2-dev0/occ2-dev0": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+            "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPCR0063F",
+            "ComponentInstance": 1,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Communication Failure/Timeout",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "Failed to read from the OCC on CPU 1",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/fan_tach/fan0_0": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Cooling",
@@ -14511,6 +19152,27 @@
             "UserAction": null,
             "VMMigrationFlag": null
         },
+        "xyz.openbmc_project.Sensor.Device.Error.WriteFailure||/sys/devices/platform/ahb/ahb:apb/ahb:apb:i2c@1e78a000/1e78a100.i2c-bus/i2c-3/3-0052": {
+            "AffectedLEDs": null,
+            "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+            "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.WriteFailure",
+            "CallHomeCandidate": false,
+            "CommonEventID": "FQPSPCR0058F",
+            "ComponentInstance": null,
+            "DateAdded": null,
+            "DateReviewed": null,
+            "EventType": "Communication Failure/Timeout",
+            "Internal": false,
+            "LengthyDescription": null,
+            "LogSource": "BMC",
+            "Message": "Failed to write to the fan control device on the motherboard",
+            "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard",
+            "RelatedEventIDs": {},
+            "Serviceable": false,
+            "Severity": "Warning",
+            "UserAction": null,
+            "VMMigrationFlag": null
+        },
         "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/current/ps0_output_current": {
             "AffectedLEDs": null,
             "AffectedSubsystem": "Power",
@@ -17181,7 +21843,7 @@
     },
     "fileInfo": {
         "Entity": "IBM OpenBMC",
-        "Version": "1.7.2",
+        "Version": "1.7.3",
         "language": "English"
     }
 }
\ No newline at end of file