From 863e5de9bbbd0ba409dea3b582faf48f9d3ae53a Mon Sep 17 00:00:00 2001 From: Matt Spinler Date: Mon, 29 Jul 2019 08:56:51 -0500 Subject: Swift: Put in avsbus-enable As on Witherspoon, some VRMs on Swift need their AVS buses enabled as part of the power on sequence. The AVS bus connects those VRMs to the processors so the processors can set voltages. On Witherspoon, the sequence was 1. Disable the AVS bus 2. Manually set VRM voltages 3. Enable AVS bus Currently on Swift there is no need to manually set voltages, so the AVS bus disable service and script isn't required. Tested: Tested on swift, and ensured both witherspoon and witherspoon-128 still have all avs scripts and services installed. (From meta-ibm rev: f1ceece0b75a4522ef3089319b12d22fd83ed9ef) Signed-off-by: Matt Spinler Change-Id: Ifd7ebdd5ec3dcdfef97c04e666d83fcb4991b452 Signed-off-by: Brad Bishop --- .../recipes-phosphor/chassis/avsbus-control.bb | 13 ++++++++----- .../chassis/avsbus-control/avsbus-enable@.service | 15 --------------- .../chassis/avsbus-control/swift/avsbus-disable.sh | 18 ------------------ .../avsbus-control/swift/avsbus-disable@.service | 14 -------------- .../chassis/avsbus-control/swift/avsbus-enable.sh | 7 +------ .../avsbus-control/swift/avsbus-enable@.service | 15 +++++++++++++++ .../avsbus-control/witherspoon/avsbus-enable@.service | 15 +++++++++++++++ .../recipes-phosphor/host/p9-host-start.bbappend | 2 +- 8 files changed, 40 insertions(+), 59 deletions(-) delete mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/avsbus-enable@.service delete mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/swift/avsbus-disable.sh delete mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/swift/avsbus-disable@.service create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/swift/avsbus-enable@.service create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/witherspoon/avsbus-enable@.service (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control.bb b/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control.bb index d2804dfca..74e0968d3 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control.bb +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control.bb @@ -10,15 +10,18 @@ RDEPENDS_${PN} += "i2c-tools" S = "${WORKDIR}" -SRC_URI += "file://avsbus-disable.sh \ - file://avsbus-enable.sh" +SRC_URI += "file://avsbus-enable.sh" +SRC_URI_append_witherspoon = " file://avsbus-disable.sh" do_install() { install -d ${D}${bindir} - install -m 0755 ${S}/avsbus-disable.sh ${D}${bindir}/avsbus-disable.sh install -m 0755 ${S}/avsbus-enable.sh ${D}${bindir}/avsbus-enable.sh } +do_install_append_witherspoon() { + install -m 0755 ${S}/avsbus-disable.sh ${D}${bindir}/avsbus-disable.sh +} + TMPL_EN= "avsbus-enable@.service" TMPL_DIS= "avsbus-disable@.service" INSTFMT_EN= "avsbus-enable@{0}.service" @@ -29,5 +32,5 @@ FMT_DIS = "../${TMPL_DIS}:${TGTFMT}.requires/${INSTFMT_DIS}" SYSTEMD_SERVICE_${PN} += "${TMPL_EN}" SYSTEMD_LINK_${PN} += "${@compose_list(d, 'FMT_EN', 'OBMC_CHASSIS_INSTANCES')}" -SYSTEMD_SERVICE_${PN} += "${TMPL_DIS}" -SYSTEMD_LINK_${PN} += "${@compose_list(d, 'FMT_DIS', 'OBMC_CHASSIS_INSTANCES')}" +SYSTEMD_SERVICE_${PN}_append_witherspoon = " ${TMPL_DIS}" +SYSTEMD_LINK_${PN}_append_witherspoon = " ${@compose_list(d, 'FMT_DIS', 'OBMC_CHASSIS_INSTANCES')}" diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/avsbus-enable@.service b/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/avsbus-enable@.service deleted file mode 100644 index b7fb41e24..000000000 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/avsbus-enable@.service +++ /dev/null @@ -1,15 +0,0 @@ -[Unit] -Description=Enable the AVS bus on VRMs -Wants=vrm-control@%i.service -After=vrm-control@%i.service -Conflicts=obmc-chassis-poweroff@%i.target -ConditionPathExists=!/run/openbmc/chassis@%i-on - -[Service] -ExecStart=/usr/bin/env avsbus-enable.sh -SyslogIdentifier=avsbus-enable.sh -Type=oneshot -RemainAfterExit=yes - -[Install] -WantedBy=obmc-chassis-poweron@%i.target diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/swift/avsbus-disable.sh b/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/swift/avsbus-disable.sh deleted file mode 100644 index 61d8516bc..000000000 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/swift/avsbus-disable.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh -# For each AVSBus attached rail go back to using VOUT_COMMAND (PMBus voltage) -# instead of AVSBus and do *not* update VOUT_COMMAND with last voltage sent via -# AVSBus. This should be run after power-down. This is platform specific -# settings that must be updated/removed if not Swift. - -i2cset -y 9 0x70 0x00 0x00 b # VDD 0 - PAGE set -i2cset -y 9 0x70 0x01 0x80 b # VDD 0 -i2cset -y 9 0x71 0x00 0x01 b # VCS 0 - PAGE set -i2cset -y 9 0x71 0x01 0x80 b # VCS 0 -i2cset -y 9 0x71 0x00 0x00 b # VDN 0 - PAGE set -i2cset -y 9 0x71 0x01 0x80 b # VDN 0 -i2cset -y 10 0x70 0x00 0x00 b # VDD 1 - PAGE set -i2cset -y 10 0x70 0x01 0x80 b # VDD 1 -i2cset -y 10 0x71 0x00 0x01 b # VCS 1 - PAGE set -i2cset -y 10 0x71 0x01 0x80 b # VCS 1 -i2cset -y 10 0x71 0x00 0x00 b # VDN 1 - PAGE set -i2cset -y 10 0x71 0x01 0x80 b # VDN 1 diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/swift/avsbus-disable@.service b/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/swift/avsbus-disable@.service deleted file mode 100644 index fbab180ce..000000000 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/swift/avsbus-disable@.service +++ /dev/null @@ -1,14 +0,0 @@ -[Unit] -Description=Disable the AVS bus on the VRMs -Before=vrm-control@%i.service -Conflicts=obmc-chassis-poweroff@%i.target -ConditionPathExists=!/run/openbmc/chassis@%i-on - -[Service] -ExecStart=/usr/bin/env avsbus-disable.sh -SyslogIdentifier=avsbus-disable.sh -Type=oneshot -RemainAfterExit=yes - -[Install] -WantedBy=obmc-chassis-poweron@%i.target diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/swift/avsbus-enable.sh b/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/swift/avsbus-enable.sh index d3840910a..7ff607a4b 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/swift/avsbus-enable.sh +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/swift/avsbus-enable.sh @@ -6,20 +6,15 @@ # updated/removed if not Swift. i2cset -y 9 0x70 0x00 0x00 b # VDD 0 - PAGE set -i2cset -y 9 0x70 0x21 0xE6 0x00 i # VDD 0 - Set default HW boot voltage to 0.9V i2cset -y 9 0x70 0x01 0xB0 b # VDD 0 i2cset -y 9 0x71 0x00 0x01 b # VCS 0 - PAGE set -i2cset -y 9 0x71 0x21 0x00 0x01 i # VCS 0 - Set default HW boot voltage to 1.0V i2cset -y 9 0x71 0x01 0xB0 b # VCS 0 i2cset -y 9 0x71 0x00 0x00 b # VDN 0 - PAGE set -i2cset -y 9 0x71 0x21 0xCD 0x00 i # VDN 0 - Set default HW boot voltage to 0.8V i2cset -y 9 0x71 0x01 0xB0 b # VDN 0 + i2cset -y 10 0x70 0x00 0x00 b # VDD 1 - PAGE set -i2cset -y 10 0x70 0x21 0xE6 0x00 i # VDD 1 - Set default HW boot voltage to 0.9V i2cset -y 10 0x70 0x01 0xB0 b # VDD 1 i2cset -y 10 0x71 0x00 0x01 b # VCS 1 - PAGE set -i2cset -y 10 0x71 0x21 0x00 0x01 i # VCS 1 - Set default HW boot voltage to 1.0V i2cset -y 10 0x71 0x01 0xB0 b # VCS 1 i2cset -y 10 0x71 0x00 0x00 b # VDN 1 - PAGE set -i2cset -y 10 0x71 0x21 0xCD 0x00 i # VDN 1 - Set default HW boot voltage to 0.8V i2cset -y 10 0x71 0x01 0xB0 b # VDN 1 diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/swift/avsbus-enable@.service b/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/swift/avsbus-enable@.service new file mode 100644 index 000000000..45776aa71 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/swift/avsbus-enable@.service @@ -0,0 +1,15 @@ +[Unit] +Description=Enable the AVS bus on VRMs +Wants=op-power-start@%i.service +Before=op-power-start@%i.service +Conflicts=obmc-chassis-poweroff@%i.target +ConditionPathExists=!/run/openbmc/chassis@%i-on + +[Service] +ExecStart={bindir}/avsbus-enable.sh +SyslogIdentifier=avsbus-enable.sh +Type=oneshot +RemainAfterExit=yes + +[Install] +WantedBy=obmc-chassis-poweron@%i.target diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/witherspoon/avsbus-enable@.service b/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/witherspoon/avsbus-enable@.service new file mode 100644 index 000000000..b7fb41e24 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/witherspoon/avsbus-enable@.service @@ -0,0 +1,15 @@ +[Unit] +Description=Enable the AVS bus on VRMs +Wants=vrm-control@%i.service +After=vrm-control@%i.service +Conflicts=obmc-chassis-poweroff@%i.target +ConditionPathExists=!/run/openbmc/chassis@%i-on + +[Service] +ExecStart=/usr/bin/env avsbus-enable.sh +SyslogIdentifier=avsbus-enable.sh +Type=oneshot +RemainAfterExit=yes + +[Install] +WantedBy=obmc-chassis-poweron@%i.target diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/host/p9-host-start.bbappend b/meta-ibm/meta-witherspoon/recipes-phosphor/host/p9-host-start.bbappend index 3ae8bcb96..4b978c950 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/host/p9-host-start.bbappend +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/host/p9-host-start.bbappend @@ -1,4 +1,4 @@ -RDEPENDS_${PN}_append_witherspoon = " avsbus-control" +RDEPENDS_${PN}_append_ibm-ac-server = " avsbus-control" RDEPENDS_${PN}_append_witherspoon = " vrm-control" RDEPENDS_${PN}_append_ibm-ac-server = " power-workarounds" RDEPENDS_${PN}_remove_ibm-ac-server = "p9-vcs-workaround" -- cgit v1.2.3 From c20556be8c6337e722b474e3b80b4c9a331e453a Mon Sep 17 00:00:00 2001 From: Shawn McCarney Date: Mon, 29 Jul 2019 23:49:18 -0500 Subject: meta-ibm: witherspoon: Power sensor associations BMCWeb uses ObjectMapper associations to find sensor information for Redfish. Due to BMCWeb enhancements for the Power and SensorCollection schemas, the following Witherspoon association changes are required: * Remove the "chassis" <-> "all_sensors" association for power supplies. Power supplies were considered chassis by BMCWeb as a short-term solution, but they have been moved to the Power schema. * Add the power supply sensors to the "chassis" <-> "all_sensors" association for the top level chassis. * Add other missing power sensors to the "chassis" <-> "all_sensors" association for the top level chassis. These associations were temporarily removed due to limitations in the BMCWeb support for power sensors. These limitations have been addressed. See https://github.com/openbmc/docs/blob/master/sensor-architecture.md for more information on sensor associations used by BMCWeb. (From meta-ibm rev: a1c35f612f58e5453fe988d59db21a8673fdcfa4) Change-Id: Ibea5bdea58711e96faff4937ecccedcc695d9ba4 Signed-off-by: Shawn McCarney Signed-off-by: Brad Bishop --- .../phosphor-inventory-manager/associations.json | 58 +++++++++++----------- 1 file changed, 29 insertions(+), 29 deletions(-) (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/inventory/phosphor-inventory-manager/associations.json b/meta-ibm/meta-witherspoon/recipes-phosphor/inventory/phosphor-inventory-manager/associations.json index bea5269ab..accf38b18 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/inventory/phosphor-inventory-manager/associations.json +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/inventory/phosphor-inventory-manager/associations.json @@ -17,20 +17,6 @@ "/xyz/openbmc_project/sensors/voltage/ps0_output_voltage" ] }, - { - "types": - { - "rType": "chassis", - "fType": "all_sensors" - }, - "paths": - [ - "/xyz/openbmc_project/sensors/power/ps0_input_power", - "/xyz/openbmc_project/sensors/voltage/ps0_input_voltage", - "/xyz/openbmc_project/sensors/current/ps0_output_current", - "/xyz/openbmc_project/sensors/voltage/ps0_output_voltage" - ] - }, { "types": { @@ -62,20 +48,6 @@ "/xyz/openbmc_project/sensors/voltage/ps1_output_voltage" ] }, - { - "types": - { - "rType": "chassis", - "fType": "all_sensors" - }, - "paths": - [ - "/xyz/openbmc_project/sensors/power/ps1_input_power", - "/xyz/openbmc_project/sensors/voltage/ps1_input_voltage", - "/xyz/openbmc_project/sensors/current/ps1_output_current", - "/xyz/openbmc_project/sensors/voltage/ps1_output_voltage" - ] - }, { "types": { @@ -1581,6 +1553,15 @@ "/xyz/openbmc_project/sensors/voltage/p1_vddr_voltage", "/xyz/openbmc_project/sensors/voltage/p1_vdn_voltage", + "/xyz/openbmc_project/sensors/power/p0_vdd_power", + "/xyz/openbmc_project/sensors/power/p0_vcs_power", + "/xyz/openbmc_project/sensors/power/p0_vddr_power", + "/xyz/openbmc_project/sensors/power/p0_vdn_power", + "/xyz/openbmc_project/sensors/power/p1_vdd_power", + "/xyz/openbmc_project/sensors/power/p1_vcs_power", + "/xyz/openbmc_project/sensors/power/p1_vddr_power", + "/xyz/openbmc_project/sensors/power/p1_vdn_power", + "/xyz/openbmc_project/sensors/temperature/p0_vcs_temp", "/xyz/openbmc_project/sensors/temperature/p0_vddr_temp", "/xyz/openbmc_project/sensors/temperature/p0_vdd_temp", @@ -1599,7 +1580,26 @@ "/xyz/openbmc_project/sensors/current/p1_vdd_current", "/xyz/openbmc_project/sensors/current/p1_vdn_current", - "/xyz/openbmc_project/sensors/power/total_power" + "/xyz/openbmc_project/sensors/power/fan_disk_power", + "/xyz/openbmc_project/sensors/power/io_power", + "/xyz/openbmc_project/sensors/power/total_power", + "/xyz/openbmc_project/sensors/power/p0_io_power", + "/xyz/openbmc_project/sensors/power/p0_mem_power", + "/xyz/openbmc_project/sensors/power/p0_power", + "/xyz/openbmc_project/sensors/power/p1_io_power", + "/xyz/openbmc_project/sensors/power/p1_mem_power", + "/xyz/openbmc_project/sensors/power/p1_power", + + "/xyz/openbmc_project/sensors/voltage/ps0_input_voltage", + "/xyz/openbmc_project/sensors/voltage/ps0_output_voltage", + "/xyz/openbmc_project/sensors/voltage/ps1_input_voltage", + "/xyz/openbmc_project/sensors/voltage/ps1_output_voltage", + + "/xyz/openbmc_project/sensors/power/ps0_input_power", + "/xyz/openbmc_project/sensors/power/ps1_input_power", + + "/xyz/openbmc_project/sensors/current/ps0_output_current", + "/xyz/openbmc_project/sensors/current/ps1_output_current" ] } ] -- cgit v1.2.3 From 5c11c13abd3d75fde9cf171fd835143a0e0006a5 Mon Sep 17 00:00:00 2001 From: Andrew Geissler Date: Tue, 13 Aug 2019 18:20:22 +0000 Subject: witherspoon-pfault-analysis: srcrev bump 5b2964fa8e..817f8a7a82 Aatir Manzur (1): Power supply input faults resolution (From meta-ibm rev: bc9be1c977fcea7543aab6f2ffd51372bb3e805f) Change-Id: I46d82875b474abe1af478e8bbfd7d1141d2d5c3d Signed-off-by: Andrew Geissler Signed-off-by: Brad Bishop --- .../recipes-phosphor/power/witherspoon-pfault-analysis.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/power/witherspoon-pfault-analysis.inc b/meta-ibm/meta-witherspoon/recipes-phosphor/power/witherspoon-pfault-analysis.inc index b73d922d0..63ab0dd42 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/power/witherspoon-pfault-analysis.inc +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/power/witherspoon-pfault-analysis.inc @@ -2,4 +2,4 @@ HOMEPAGE = "https://github.com/openbmc/witherspoon-pfault-analysis" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://${S}/LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e" SRC_URI += "git://github.com/openbmc/witherspoon-pfault-analysis" -SRCREV = "5b2964fa8e57c46d60c0c0d95d5668c9f9a5ce23" +SRCREV = "817f8a7a82983d3e7bdc409ca86f2897540e400f" -- cgit v1.2.3 From d8cbfa5498e7fcc1646272c3c37febbdcd326c7b Mon Sep 17 00:00:00 2001 From: Matt Spinler Date: Wed, 7 Aug 2019 10:36:20 -0500 Subject: wspoon: hwmon: Use labels for finding VRM I/V/P A recent kernel update added a second input current/voltage/power reading to the hwmon sysfs attributes for the ir35221 VRMs, and it threw off the labels in the config files since they were hardcoded for the specific previous numbers. For example, curr2_input previously represented an output current but now represents an input current. Fix this by using the LABEL mode in hwmon to find which sysfs file to use for a particular sensor by the contents of its corresponding label file. For example, the p0_vdd_current sensor should look at the sysfs file that has a corresponding 'iout1' value in the currX_label file. Tested: Test that the voltages are back within thresholds again and not showing values around 12V. (From meta-ibm rev: bca7ed0127f9e82895fb60b66b325347970f0860) Change-Id: I9f28c9445daf9ce6206ff9e38e271ac805768fae Signed-off-by: Matt Spinler Signed-off-by: Brad Bishop --- .../apb/bus@1e78a000/i2c-bus@140/ir35221@70.conf | 82 +++++++++++++--------- .../apb/bus@1e78a000/i2c-bus@140/ir35221@71.conf | 82 +++++++++++++--------- .../apb/bus@1e78a000/i2c-bus@180/ir35221@70.conf | 82 +++++++++++++--------- .../apb/bus@1e78a000/i2c-bus@180/ir35221@71.conf | 82 +++++++++++++--------- 4 files changed, 200 insertions(+), 128 deletions(-) (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/witherspoon/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@140/ir35221@70.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/witherspoon/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@140/ir35221@70.conf index 9ae1f1ef1..c5344aeb6 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/witherspoon/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@140/ir35221@70.conf +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/witherspoon/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@140/ir35221@70.conf @@ -1,26 +1,44 @@ +#4-0070 +#VDD then VCS + +MODE_in1 = "label" +MODE_in2 = "label" +MODE_in3 = "label" +MODE_in4 = "label" + +MODE_curr1 = "label" +MODE_curr2 = "label" +MODE_curr3 = "label" +MODE_curr4 = "label" + +MODE_power1 = "label" +MODE_power2 = "label" +MODE_power3 = "label" +MODE_power4 = "label" + LABEL_temp1 = "p0_vdd_temp" WARNHI_temp1 = "80000" WARNLO_temp1 = "0" CRITHI_temp1 = "85000" CRITLO_temp1 = "0" -LABEL_curr2 = "p0_vdd_current" -WARNLO_curr2 = "0" -CRITLO_curr2 = "0" -WARNHI_curr2 = "320000" -CRITHI_curr2 = "360000" +LABEL_curriout1 = "p0_vdd_current" +WARNLO_curriout1 = "0" +CRITLO_curriout1 = "0" +WARNHI_curriout1 = "320000" +CRITHI_curriout1 = "360000" -LABEL_in2 = "p0_vdd_voltage" -WARNLO_in2 = "0" -CRITLO_in2 = "0" -WARNHI_in2 = "1150" -CRITHI_in2 = "1300" +LABEL_invout1 = "p0_vdd_voltage" +WARNLO_invout1 = "0" +CRITLO_invout1 = "0" +WARNHI_invout1 = "1150" +CRITHI_invout1 = "1300" -LABEL_power2 = "p0_vdd_power" -WARNLO_power2 = "0" -CRITLO_power2 = "0" -WARNHI_power2 = "270000000" -CRITHI_power2 = "290000000" +LABEL_powerpout1 = "p0_vdd_power" +WARNLO_powerpout1 = "0" +CRITLO_powerpout1 = "0" +WARNHI_powerpout1 = "270000000" +CRITHI_powerpout1 = "290000000" LABEL_temp2 = "p0_vcs_temp" WARNHI_temp2 = "80000" @@ -28,20 +46,20 @@ WARNLO_temp2 = "0" CRITHI_temp2 = "85000" CRITLO_temp2 = "0" -LABEL_curr3 = "p0_vcs_current" -WARNLO_curr3 = "0" -CRITLO_curr3 = "0" -WARNHI_curr3 = "20000" -CRITHI_curr3 = "25000" - -LABEL_in3 = "p0_vcs_voltage" -WARNLO_in3 = "0" -CRITLO_in3 = "0" -WARNHI_in3 = "1150" -CRITHI_in3 = "1300" - -LABEL_power3 = "p0_vcs_power" -WARNLO_power3 = "0" -CRITLO_power3 = "0" -WARNHI_power3 = "20000000" -CRITHI_power3 = "25000000" \ No newline at end of file +LABEL_curriout2 = "p0_vcs_current" +WARNLO_curriout2 = "0" +CRITLO_curriout2 = "0" +WARNHI_curriout2 = "20000" +CRITHI_curriout2 = "25000" + +LABEL_invout2 = "p0_vcs_voltage" +WARNLO_invout2 = "0" +CRITLO_invout2 = "0" +WARNHI_invout2 = "1150" +CRITHI_invout2 = "1300" + +LABEL_powerpout2 = "p0_vcs_power" +WARNLO_powerpout2 = "0" +CRITLO_powerpout2 = "0" +WARNHI_powerpout2 = "20000000" +CRITHI_powerpout2 = "25000000" diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/witherspoon/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@140/ir35221@71.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/witherspoon/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@140/ir35221@71.conf index 723a68d66..23746aa11 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/witherspoon/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@140/ir35221@71.conf +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/witherspoon/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@140/ir35221@71.conf @@ -1,26 +1,44 @@ +#4-0071 +#VDN then VDDR + +MODE_in1 = "label" +MODE_in2 = "label" +MODE_in3 = "label" +MODE_in4 = "label" + +MODE_curr1 = "label" +MODE_curr2 = "label" +MODE_curr3 = "label" +MODE_curr4 = "label" + +MODE_power1 = "label" +MODE_power2 = "label" +MODE_power3 = "label" +MODE_power4 = "label" + LABEL_temp1 = "p0_vdn_temp" WARNHI_temp1 = "80000" WARNLO_temp1 = "0" CRITHI_temp1 = "85000" CRITLO_temp1 = "0" -LABEL_curr2 = "p0_vdn_current" -WARNLO_curr2 = "0" -CRITLO_curr2 = "0" -WARNHI_curr2 = "80000" -CRITHI_curr2 = "110000" +LABEL_curriout1 = "p0_vdn_current" +WARNLO_curriout1 = "0" +CRITLO_curriout1 = "0" +WARNHI_curriout1 = "80000" +CRITHI_curriout1 = "110000" -LABEL_in2 = "p0_vdn_voltage" -WARNLO_in2 = "0" -CRITLO_in2 = "0" -WARNHI_in2 = "1100" -CRITHI_in2 = "1300" +LABEL_invout1 = "p0_vdn_voltage" +WARNLO_invout1 = "0" +CRITLO_invout1 = "0" +WARNHI_invout1 = "1100" +CRITHI_invout1 = "1300" -LABEL_power2 = "p0_vdn_power" -WARNLO_power2 = "0" -CRITLO_power2 = "0" -WARNHI_power2 = "88000000" -CRITHI_power2 = "121000000" +LABEL_powerpout1 = "p0_vdn_power" +WARNLO_powerpout1 = "0" +CRITLO_powerpout1 = "0" +WARNHI_powerpout1 = "88000000" +CRITHI_powerpout1 = "121000000" LABEL_temp2 = "p0_vddr_temp" WARNHI_temp2 = "80000" @@ -28,20 +46,20 @@ WARNLO_temp2 = "0" CRITHI_temp2 = "85000" CRITLO_temp2 = "0" -LABEL_curr3 = "p0_vddr_current" -WARNLO_curr3 = "0" -CRITLO_curr3 = "0" -WARNHI_curr3 = "115000" -CRITHI_curr3 = "130000" - -LABEL_in3 = "p0_vddr_voltage" -WARNLO_in3 = "0" -CRITLO_in3 = "0" -WARNHI_in3 = "1280" -CRITHI_in3 = "1350" - -LABEL_power3 = "p0_vddr_power" -WARNLO_power3 = "0" -CRITLO_power3 = "0" -WARNHI_power3 = "139150000" -CRITHI_power3 = "159900000" \ No newline at end of file +LABEL_curriout2 = "p0_vddr_current" +WARNLO_curriout2 = "0" +CRITLO_curriout2 = "0" +WARNHI_curriout2 = "115000" +CRITHI_curriout2 = "130000" + +LABEL_invout2 = "p0_vddr_voltage" +WARNLO_invout2 = "0" +CRITLO_invout2 = "0" +WARNHI_invout2 = "1280" +CRITHI_invout2 = "1350" + +LABEL_powerpout2 = "p0_vddr_power" +WARNLO_powerpout2 = "0" +CRITLO_powerpout2 = "0" +WARNHI_powerpout2 = "139150000" +CRITHI_powerpout2 = "159900000" diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/witherspoon/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@180/ir35221@70.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/witherspoon/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@180/ir35221@70.conf index 1fa7b5a5c..e7d8aaf23 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/witherspoon/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@180/ir35221@70.conf +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/witherspoon/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@180/ir35221@70.conf @@ -1,26 +1,44 @@ +#5-0070 +#VDD then VCS + +MODE_in1 = "label" +MODE_in2 = "label" +MODE_in3 = "label" +MODE_in4 = "label" + +MODE_curr1 = "label" +MODE_curr2 = "label" +MODE_curr3 = "label" +MODE_curr4 = "label" + +MODE_power1 = "label" +MODE_power2 = "label" +MODE_power3 = "label" +MODE_power4 = "label" + LABEL_temp1 = "p1_vdd_temp" WARNHI_temp1 = "80000" WARNLO_temp1 = "0" CRITHI_temp1 = "85000" CRITLO_temp1 = "0" -LABEL_curr2 = "p1_vdd_current" -WARNLO_curr2 = "0" -CRITLO_curr2 = "0" -WARNHI_curr2 = "320000" -CRITHI_curr2 = "360000" +LABEL_curriout1 = "p1_vdd_current" +WARNLO_curriout1 = "0" +CRITLO_curriout1 = "0" +WARNHI_curriout1 = "320000" +CRITHI_curriout1 = "360000" -LABEL_in2 = "p1_vdd_voltage" -WARNLO_in2 = "0" -CRITLO_in2 = "0" -WARNHI_in2 = "1150" -CRITHI_in2 = "1300" +LABEL_invout1 = "p1_vdd_voltage" +WARNLO_invout1 = "0" +CRITLO_invout1 = "0" +WARNHI_invout1 = "1150" +CRITHI_invout1 = "1300" -LABEL_power2 = "p1_vdd_power" -WARNLO_power2 = "0" -CRITLO_power2 = "0" -WARNHI_power2 = "270000000" -CRITHI_power2 = "290000000" +LABEL_powerpout1 = "p1_vdd_power" +WARNLO_powerpout1 = "0" +CRITLO_powerpout1 = "0" +WARNHI_powerpout1 = "270000000" +CRITHI_powerpout1 = "290000000" LABEL_temp2 = "p1_vcs_temp" WARNHI_temp2 = "80000" @@ -28,20 +46,20 @@ WARNLO_temp2 = "0" CRITHI_temp2 = "85000" CRITLO_temp2 = "0" -LABEL_curr3 = "p1_vcs_current" -WARNLO_curr3 = "0" -CRITLO_curr3 = "0" -WARNHI_curr3 = "20000" -CRITHI_curr3 = "25000" - -LABEL_in3 = "p1_vcs_voltage" -WARNLO_in3 = "0" -CRITLO_in3 = "0" -WARNHI_in3 = "1150" -CRITHI_in3 = "1300" - -LABEL_power3 = "p1_vcs_power" -WARNLO_power3 = "0" -CRITLO_power3 = "0" -WARNHI_power3 = "20000000" -CRITHI_power3 = "25000000" \ No newline at end of file +LABEL_curriout2 = "p1_vcs_current" +WARNLO_curriout2 = "0" +CRITLO_curriout2 = "0" +WARNHI_curriout2 = "20000" +CRITHI_curriout2 = "25000" + +LABEL_invout2 = "p1_vcs_voltage" +WARNLO_invout2 = "0" +CRITLO_invout2 = "0" +WARNHI_invout2 = "1150" +CRITHI_invout2 = "1300" + +LABEL_powerpout2 = "p1_vcs_power" +WARNLO_powerpout2 = "0" +CRITLO_powerpout2 = "0" +WARNHI_powerpout2 = "20000000" +CRITHI_powerpout2 = "25000000" diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/witherspoon/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@180/ir35221@71.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/witherspoon/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@180/ir35221@71.conf index d4e9326b2..30ec05dbb 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/witherspoon/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@180/ir35221@71.conf +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/witherspoon/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@180/ir35221@71.conf @@ -1,26 +1,44 @@ +#5-0071 +#VDN then VDDR + +MODE_in1 = "label" +MODE_in2 = "label" +MODE_in3 = "label" +MODE_in4 = "label" + +MODE_curr1 = "label" +MODE_curr2 = "label" +MODE_curr3 = "label" +MODE_curr4 = "label" + +MODE_power1 = "label" +MODE_power2 = "label" +MODE_power3 = "label" +MODE_power4 = "label" + LABEL_temp1 = "p1_vdn_temp" WARNHI_temp1 = "80000" WARNLO_temp1 = "0" CRITHI_temp1 = "85000" CRITLO_temp1 = "0" -LABEL_curr2 = "p1_vdn_current" -WARNLO_curr2 = "0" -CRITLO_curr2 = "0" -WARNHI_curr2 = "80000" -CRITHI_curr2 = "110000" +LABEL_curriout1 = "p1_vdn_current" +WARNLO_curriout1 = "0" +CRITLO_curriout1 = "0" +WARNHI_curriout1 = "80000" +CRITHI_curriout1 = "110000" -LABEL_in2 = "p1_vdn_voltage" -WARNLO_in2 = "0" -CRITLO_in2 = "0" -WARNHI_in2 = "1100" -CRITHI_in2 = "1300" +LABEL_invout1 = "p1_vdn_voltage" +WARNLO_invout1 = "0" +CRITLO_invout1 = "0" +WARNHI_invout1 = "1100" +CRITHI_invout1 = "1300" -LABEL_power2 = "p1_vdn_power" -WARNLO_power2 = "0" -CRITLO_power2 = "0" -WARNHI_power2 = "88000000" -CRITHI_power2 = "121000000" +LABEL_powerpout1 = "p1_vdn_power" +WARNLO_powerpout1 = "0" +CRITLO_powerpout1 = "0" +WARNHI_powerpout1 = "88000000" +CRITHI_powerpout1 = "121000000" LABEL_temp2 = "p1_vddr_temp" WARNHI_temp2 = "80000" @@ -28,20 +46,20 @@ WARNLO_temp2 = "0" CRITHI_temp2 = "85000" CRITLO_temp2 = "0" -LABEL_curr3 = "p1_vddr_current" -WARNLO_curr3 = "0" -CRITLO_curr3 = "0" -WARNHI_curr3 = "115000" -CRITHI_curr3 = "130000" - -LABEL_in3 = "p1_vddr_voltage" -WARNLO_in3 = "0" -CRITLO_in3 = "0" -WARNHI_in3 = "1280" -CRITHI_in3 = "1350" - -LABEL_power3 = "p1_vddr_power" -WARNLO_power3 = "0" -CRITLO_power3 = "0" -WARNHI_power3 = "139150000" -CRITHI_power3 = "159900000" \ No newline at end of file +LABEL_curriout2 = "p1_vddr_current" +WARNLO_curriout2 = "0" +CRITLO_curriout2 = "0" +WARNHI_curriout2 = "115000" +CRITHI_curriout2 = "130000" + +LABEL_invout2 = "p1_vddr_voltage" +WARNLO_invout2 = "0" +CRITLO_invout2 = "0" +WARNHI_invout2 = "1280" +CRITHI_invout2 = "1350" + +LABEL_powerpout2 = "p1_vddr_power" +WARNLO_powerpout2 = "0" +CRITLO_powerpout2 = "0" +WARNHI_powerpout2 = "139150000" +CRITHI_powerpout2 = "159900000" -- cgit v1.2.3 From b24a3e589e1a6eac0cb69d4c1ba2d1be36d1d2cb Mon Sep 17 00:00:00 2001 From: Ben_Pai Date: Mon, 15 Jul 2019 16:19:02 +0800 Subject: Add mihawk platform to meta-ibm The contents of this up-stream include the following items 1.Basic function 2.Led settings 3.GPIO monitor (id button and power supply) 4.Linux dts patch. (From meta-ibm rev: c53430a2234917b71f29d7e61d6aea749c45a2fc) Change-Id: Id0e47fd9197c8b2a70cbc94888bd572255664cdd Signed-off-by: Ben Pai Signed-off-by: Brad Bishop --- meta-ibm/meta-witherspoon/conf/local.conf.sample | 1 + meta-ibm/meta-witherspoon/conf/machine/mihawk.conf | 38 + .../recipes-kernel/linux/linux-aspeed/mihawk.cfg | 10 + .../recipes-kernel/linux/linux-aspeed_%.bbappend | 1 + .../recipes-phosphor/chassis/avsbus-control.bb | 2 +- .../avsbus-control/mihawk/avsbus-disable.sh | 16 + .../avsbus-control/mihawk/avsbus-disable@.service | 16 + .../chassis/avsbus-control/mihawk/avsbus-enable.sh | 16 + .../avsbus-control/mihawk/avsbus-enable@.service | 15 + .../recipes-phosphor/chassis/vrm-control.bb | 18 +- .../vrm-control/mihawk/ir35221-unbind-bind.sh | 81 + .../console/obmc-console/mihawk/obmc-console.conf | 4 + .../flash/openpower-software-manager_%.bbappend | 1 + .../flash/phosphor-software-manager_%.bbappend | 5 + .../recipes-phosphor/gpio/id-button.bb | 30 + .../gpio/id-button/id-button-pressed.service | 9 + .../gpio/id-button/obmc/gpio/id_button | 5 + .../gpio/id-button/toggle_identify_led.sh | 27 + .../mihawk/obmc/gpio/phosphor-power-supply-0.conf | 6 + .../mihawk/obmc/gpio/phosphor-power-supply-1.conf | 6 + .../gpio/phosphor-gpio-monitor_%.bbappend | 2 + .../recipes-phosphor/host/p9-host-start.bbappend | 4 + .../images/obmc-phosphor-image.bbappend | 1 + .../leds/mihawk-led-manager-config-native.bb | 18 + .../leds/mihawk-led-manager-config/led.yaml | 148 + .../logging/ibm-logging/mihawk/policyTable.json | 22437 +++++++++++++++++++ .../logging/ibm-logging_%.bbappend | 1 + .../mihawk-phosphor-logging-callouts-native.bb | 20 + .../mihawk-phosphor-logging-callouts/callouts.yaml | 3 + .../recipes-phosphor/mboxd/mboxd_%.bbappend | 1 + .../packagegroups/packagegroup-obmc-apps.bbappend | 2 + .../settings/phosphor-settings-manager_%.bbappend | 1 + .../obmc-libobmc-intf/mihawk/gpio_defs.json | 74 + 33 files changed, 23011 insertions(+), 8 deletions(-) create mode 100644 meta-ibm/meta-witherspoon/conf/machine/mihawk.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-kernel/linux/linux-aspeed/mihawk.cfg create mode 100755 meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/mihawk/avsbus-disable.sh create mode 100755 meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/mihawk/avsbus-disable@.service create mode 100755 meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/mihawk/avsbus-enable.sh create mode 100755 meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/mihawk/avsbus-enable@.service create mode 100755 meta-ibm/meta-witherspoon/recipes-phosphor/chassis/vrm-control/mihawk/ir35221-unbind-bind.sh create mode 100755 meta-ibm/meta-witherspoon/recipes-phosphor/console/obmc-console/mihawk/obmc-console.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/gpio/id-button.bb create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/gpio/id-button/id-button-pressed.service create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/gpio/id-button/obmc/gpio/id_button create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/gpio/id-button/toggle_identify_led.sh create mode 100755 meta-ibm/meta-witherspoon/recipes-phosphor/gpio/phosphor-gpio-monitor/mihawk/obmc/gpio/phosphor-power-supply-0.conf create mode 100755 meta-ibm/meta-witherspoon/recipes-phosphor/gpio/phosphor-gpio-monitor/mihawk/obmc/gpio/phosphor-power-supply-1.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/leds/mihawk-led-manager-config-native.bb create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/leds/mihawk-led-manager-config/led.yaml create mode 100755 meta-ibm/meta-witherspoon/recipes-phosphor/logging/ibm-logging/mihawk/policyTable.json create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/logging/mihawk-phosphor-logging-callouts-native.bb create mode 100755 meta-ibm/meta-witherspoon/recipes-phosphor/logging/mihawk-phosphor-logging-callouts/callouts.yaml create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/skeleton/obmc-libobmc-intf/mihawk/gpio_defs.json (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/conf/local.conf.sample b/meta-ibm/meta-witherspoon/conf/local.conf.sample index 9dec7743d..d3a2303fc 100644 --- a/meta-ibm/meta-witherspoon/conf/local.conf.sample +++ b/meta-ibm/meta-witherspoon/conf/local.conf.sample @@ -1,3 +1,4 @@ +#MACHINE ?= "mihawk" #MACHINE ?= "swift" #MACHINE ?= "witherspoon-128" MACHINE ??= "witherspoon" diff --git a/meta-ibm/meta-witherspoon/conf/machine/mihawk.conf b/meta-ibm/meta-witherspoon/conf/machine/mihawk.conf new file mode 100644 index 000000000..08d9ab74d --- /dev/null +++ b/meta-ibm/meta-witherspoon/conf/machine/mihawk.conf @@ -0,0 +1,38 @@ +KMACHINE = "aspeed" +KERNEL_DEVICETREE = "${KMACHINE}-bmc-opp-${MACHINE}.dtb" +KERNEL_FEATURES_append = " phosphor-wdt-on-panic" + +UBOOT_MACHINE = "ast_g5_ncsi_config" + +OBMC_POWER_SUPPLY_INSTANCES = "0 1" + +PREFERRED_PROVIDER_virtual/p9-vcs-workaround = '' + +require conf/machine/include/ast2500.inc +require conf/machine/include/obmc-bsp-common.inc +require conf/machine/include/openpower.inc +require conf/machine/include/p9.inc + +PHOSPHOR_MRW_LICENSE = "Apache-2.0" +PHOSPHOR_MRW_LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327" +PHOSPHOR_MRW_URI = "git://github.com/open-power/mihawk-xml" +PHOSPHOR_MRW_REV = "b9929ba9fd96d78da01bce8a2a157851dce9e5cb" + + + +# Inhibit phosphor-hwmon-config-mrw +VIRTUAL-RUNTIME_phosphor-hwmon-config_df-mrw = "" + +# Inhibit phosphor-fan-presence-mrw-native +PREFERRED_PROVIDER_virtual/phosphor-fan-presence-config_df-mrw = \ + "phosphor-fan-presence-config" + +# Inhibit phosphor-fan-control-fan-config-mrw-native +PREFERRED_PROVIDER_virtual/phosphor-fan-control-fan-config_df-mrw = \ + "phosphor-fan-control-fan-config" + +# Inhibit mihawk-led-manager-config-native +PREFERRED_PROVIDER_virtual/phosphor-led-manager-config-native_df-mrw = \ + "mihawk-led-manager-config-native" + +PREFERRED_PROVIDER_virtual/phosphor-logging-callouts_df-mrw = "mihawk-phosphor-logging-callouts-native" \ No newline at end of file diff --git a/meta-ibm/meta-witherspoon/recipes-kernel/linux/linux-aspeed/mihawk.cfg b/meta-ibm/meta-witherspoon/recipes-kernel/linux/linux-aspeed/mihawk.cfg new file mode 100644 index 000000000..63c39a9d4 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-kernel/linux/linux-aspeed/mihawk.cfg @@ -0,0 +1,10 @@ +CONFIG_HWMON=y +CONFIG_SENSORS_IIO_HWMON=y +CONFIG_SENSORS_TMP421=y +CONFIG_SENSORS_MAX31785=y +CONFIG_SENSORS_UCD9000=y +CONFIG_RTC_DRV_RV8803=y +CONFIG_IIO=y +CONFIG_BMP280=y +CONFIG_SENSORS_TMP275=y +CONFIG_SENSORS_EMC1403=y diff --git a/meta-ibm/meta-witherspoon/recipes-kernel/linux/linux-aspeed_%.bbappend b/meta-ibm/meta-witherspoon/recipes-kernel/linux/linux-aspeed_%.bbappend index fa249c015..11ea48f2d 100644 --- a/meta-ibm/meta-witherspoon/recipes-kernel/linux/linux-aspeed_%.bbappend +++ b/meta-ibm/meta-witherspoon/recipes-kernel/linux/linux-aspeed_%.bbappend @@ -1,3 +1,4 @@ FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" SRC_URI_append_ibm-ac-server = " file://witherspoon.cfg" +SRC_URI_append_mihawk = " file://mihawk.cfg" SRC_URI_append_witherspoon-128 = " file://0001-ARM-dts-Aspeed-Witherspoon-128-Update-BMC-partitioni.patch" diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control.bb b/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control.bb index 74e0968d3..762d1a469 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control.bb +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control.bb @@ -1,4 +1,4 @@ -SUMMARY = "Witherspoon AVSBus control" +SUMMARY = "AVSBus control" PR = "r1" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/mihawk/avsbus-disable.sh b/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/mihawk/avsbus-disable.sh new file mode 100755 index 000000000..96f6cf884 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/mihawk/avsbus-disable.sh @@ -0,0 +1,16 @@ +#!/bin/sh + +i2cset -y 4 0x70 0x00 0x00 b # VDD 0 - PAGE set +i2cset -y 4 0x70 0x01 0x80 b # VDD 0 +i2cset -y 4 0x70 0x00 0x01 b # VCS 0 - PAGE set +i2cset -y 4 0x70 0x01 0x80 b # VCS 0 +i2cset -y 4 0x70 0x00 0x00 b # VCS 0 - PAGE reset +i2cset -y 4 0x72 0x00 0x00 b # VDN 0 - PAGE set +i2cset -y 4 0x72 0x01 0x80 b # VDN 0 +i2cset -y 5 0x70 0x00 0x00 b # VDD 1 - PAGE set +i2cset -y 5 0x70 0x01 0x80 b # VDD 1 +i2cset -y 5 0x70 0x00 0x01 b # VCS 1 - PAGE set +i2cset -y 5 0x70 0x01 0x80 b # VCS 1 +i2cset -y 5 0x70 0x00 0x00 b # VCS 1 - PAGE reset +i2cset -y 5 0x72 0x00 0x00 b # VDN 1 - PAGE set +i2cset -y 5 0x72 0x01 0x80 b # VDN 1 diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/mihawk/avsbus-disable@.service b/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/mihawk/avsbus-disable@.service new file mode 100755 index 000000000..7a1df9970 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/mihawk/avsbus-disable@.service @@ -0,0 +1,16 @@ +[Unit] +Description=Disable the AVS bus on the VRMs +Wants=op-power-start@.service +After=op-power-start@.service +Before=avsbus-enable@%i.service +Conflicts=obmc-chassis-poweroff@%i.target +ConditionPathExists=!/run/openbmc/chassis@%i-on + +[Service] +ExecStart=/usr/bin/env avsbus-disable.sh +SyslogIdentifier=avsbus-disable.sh +Type=oneshot +RemainAfterExit=yes + +[Install] +WantedBy=obmc-chassis-poweron@%i.target diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/mihawk/avsbus-enable.sh b/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/mihawk/avsbus-enable.sh new file mode 100755 index 000000000..67acc730b --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/mihawk/avsbus-enable.sh @@ -0,0 +1,16 @@ +#!/bin/sh + +i2cset -y 4 0x70 0x00 0x00 b # VDD 0 - PAGE set +i2cset -y 4 0x70 0x01 0xB0 b # VDD 0 +i2cset -y 4 0x70 0x00 0x01 b # VCS 0 - PAGE set +i2cset -y 4 0x70 0x01 0xB0 b # VCS 0 +i2cset -y 4 0x70 0x00 0x00 b # VCS 0 - PAGE reset +i2cset -y 4 0x72 0x00 0x00 b # VDN 0 - PAGE set +i2cset -y 4 0x72 0x01 0xB0 b # VDN 0 +i2cset -y 5 0x70 0x00 0x00 b # VDD 1 - PAGE set +i2cset -y 5 0x70 0x01 0xB0 b # VDD 1 +i2cset -y 5 0x70 0x00 0x01 b # VCS 1 - PAGE set +i2cset -y 5 0x70 0x01 0xB0 b # VCS 1 +i2cset -y 5 0x70 0x00 0x00 b # VCS 1 - PAGE reset +i2cset -y 5 0x72 0x00 0x00 b # VDN 1 - PAGE set +i2cset -y 5 0x72 0x01 0xB0 b # VDN 1 diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/mihawk/avsbus-enable@.service b/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/mihawk/avsbus-enable@.service new file mode 100755 index 000000000..810c92e23 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control/mihawk/avsbus-enable@.service @@ -0,0 +1,15 @@ +[Unit] +Description=Enable the AVS bus on VRMs +Wants=avsbus-disable@%i.service +After=avsbus-disable@%i.service +Conflicts=obmc-chassis-poweroff@%i.target +ConditionPathExists=!/run/openbmc/chassis@%i-on + +[Service] +ExecStart=/usr/bin/env avsbus-enable.sh +SyslogIdentifier=avsbus-enable.sh +Type=oneshot +RemainAfterExit=yes + +[Install] +WantedBy=obmc-chassis-poweron@%i.target diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/vrm-control.bb b/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/vrm-control.bb index fe9463441..49fcf447b 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/vrm-control.bb +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/vrm-control.bb @@ -1,5 +1,5 @@ -SUMMARY = "Witherspoon VRM Overrides" -DESCRIPTION = "Sets Witherspoon VRMs to custom voltages" +SUMMARY = "VRM Overrides" +DESCRIPTION = "Sets VRMs to custom voltages" PR = "r1" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" @@ -10,15 +10,18 @@ inherit obmc-phosphor-systemd RDEPENDS_${PN} += "i2c-tools bash" S = "${WORKDIR}" -SRC_URI += "file://vrm-control.sh \ - file://ir35221-unbind-bind.sh" +SRC_URI = "file://ir35221-unbind-bind.sh" +SRC_URI_append_ibm-ac-server = " file://vrm-control.sh" do_install() { install -d ${D}${bindir} - install -m 0755 ${WORKDIR}/vrm-control.sh ${D}${bindir}/vrm-control.sh install -m 0755 ${WORKDIR}/ir35221-unbind-bind.sh ${D}${bindir}/ir35221-unbind-bind.sh } +do_install_append_ibm-ac-server() { + install -m 0755 ${WORKDIR}/vrm-control.sh ${D}${bindir}/vrm-control.sh +} + TMPL = "vrm-control@.service" INSTFMT = "vrm-control@{0}.service" TGTFMT_ON = "obmc-chassis-poweron@{0}.target" @@ -32,7 +35,8 @@ TMPL_ON_IRUNBIND = "ir35221-on-unbind@.service" INSTFMT_ON_IRUNBIND = "ir35221-on-unbind@{0}.service" FMT_ON_IRUNBIND = "../${TMPL_ON_IRUNBIND}:${TGTFMT_ON}.requires/${INSTFMT_ON_IRUNBIND}" -SYSTEMD_SERVICE_${PN} += "${TMPL} ${TMPL_ON_IRUNBIND} ${TMPL_ON_IRBIND}" -SYSTEMD_LINK_${PN} += "${@compose_list(d, 'FMT_ON', 'OBMC_CHASSIS_INSTANCES')}" +SYSTEMD_SERVICE_${PN} += "${TMPL_ON_IRUNBIND} ${TMPL_ON_IRBIND}" +SYSTEMD_SERVICE_${PN}_append_ibm-ac-server = " ${TMPL}" +SYSTEMD_LINK_${PN}_append_ibm-ac-server = " ${@compose_list(d, 'FMT_ON', 'OBMC_CHASSIS_INSTANCES')}" SYSTEMD_LINK_${PN} += "${@compose_list(d, 'FMT_ON_IRBIND', 'OBMC_CHASSIS_INSTANCES')}" SYSTEMD_LINK_${PN} += "${@compose_list(d, 'FMT_ON_IRUNBIND', 'OBMC_CHASSIS_INSTANCES')}" diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/vrm-control/mihawk/ir35221-unbind-bind.sh b/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/vrm-control/mihawk/ir35221-unbind-bind.sh new file mode 100755 index 000000000..27ca3b9dc --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/vrm-control/mihawk/ir35221-unbind-bind.sh @@ -0,0 +1,81 @@ +#!/bin/bash +# ######################################################### +# Script to run on mihawk BMC to unbind/bind the ir35221 +# driver's devices + +status=0 +max_retries=3 +driver_path="/sys/bus/i2c/drivers/ir35221/" +platform_path="/sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/" + +unbind_driver () { + echo $1 > $driver_path/unbind +} + +bind_driver () { + device=$1 + tries=0 + + until [ $tries -ge $max_retries ]; do + tries=$((tries+1)) + ret=0 + echo $device > $driver_path/bind || ret=$? + if [ $ret -ne 0 ]; then + echo "VRM $1 bind failed. Try $tries" + sleep 1 + else + tries=$((max_retries+1)) + fi + done + + #Script will return a nonzero value if any binds fail. + if [ $ret -ne 0 ]; then + status=$ret + fi +} + +if [ "$1" = "unbind" ] +then + if [ -e $driver_path/4-0070 ] + then + unbind_driver "4-0070" + fi + + if [ -e $driver_path/4-0072 ] + then + unbind_driver "4-0072" + fi + + if [ -e $driver_path/5-0070 ] + then + unbind_driver "5-0070" + fi + + if [ -e $driver_path/5-0072 ] + then + unbind_driver "5-0072" + fi +elif [ "$1" = "bind" ] +then + if [ -e $platform_path/1e78a140.i2c-bus/i2c-4/4-0070 ] + then + bind_driver "4-0070" + fi + + if [ -e $platform_path/1e78a140.i2c-bus/i2c-4/4-0072 ] + then + bind_driver "4-0072" + fi + + if [ -e $platform_path/1e78a180.i2c-bus/i2c-5/5-0070 ] + then + bind_driver "5-0070" + fi + + if [ -e $platform_path/1e78a180.i2c-bus/i2c-5/5-0072 ] + then + bind_driver "5-0072" + fi +fi + +exit $status diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/console/obmc-console/mihawk/obmc-console.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/console/obmc-console/mihawk/obmc-console.conf new file mode 100755 index 000000000..a5ba3f328 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/console/obmc-console/mihawk/obmc-console.conf @@ -0,0 +1,4 @@ +lpc-address = 0x3f8 +sirq = 4 +local-tty = ttyS0 +local-tty-baud = 115200 diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/flash/openpower-software-manager_%.bbappend b/meta-ibm/meta-witherspoon/recipes-phosphor/flash/openpower-software-manager_%.bbappend index 197e4049c..6c1f27534 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/flash/openpower-software-manager_%.bbappend +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/flash/openpower-software-manager_%.bbappend @@ -1 +1,2 @@ PACKAGECONFIG_append_ibm-ac-server = " verify_pnor_signature" +PACKAGECONFIG_append_mihawk = " verify_pnor_signature" diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/flash/phosphor-software-manager_%.bbappend b/meta-ibm/meta-witherspoon/recipes-phosphor/flash/phosphor-software-manager_%.bbappend index e106fac15..61a99fd1a 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/flash/phosphor-software-manager_%.bbappend +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/flash/phosphor-software-manager_%.bbappend @@ -1,9 +1,14 @@ BMC_RW_MTD_ibm-ac-server = "bmc" +BMC_RW_MTD_mihawk = "bmc" BMC_RO_MTD_ibm-ac-server = "alt-bmc+bmc" +BMC_RO_MTD_mihawk = "alt-bmc+bmc" BMC_KERNEL_MTD_ibm-ac-server = "bmc" +BMC_KERNEL_MTD_mihawk = "bmc" # Enable signature verification PACKAGECONFIG_append_ibm-ac-server = " verify_signature" +PACKAGECONFIG_append_mihawk = " verify_signature" # Enable sync of persistent files to the alternate BMC chip PACKAGECONFIG_append_ibm-ac-server = " sync_bmc_files" +PACKAGECONFIG_append_mihawk = " sync_bmc_files" diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/gpio/id-button.bb b/meta-ibm/meta-witherspoon/recipes-phosphor/gpio/id-button.bb new file mode 100644 index 000000000..cdbdf778d --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/gpio/id-button.bb @@ -0,0 +1,30 @@ +SUMMARY = "ID Button pressed application" +PR = "r1" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" + +inherit obmc-phosphor-systemd + +DEPENDS += "virtual/obmc-gpio-monitor" +RDEPENDS_${PN} += "virtual/obmc-gpio-monitor" + +S = "${WORKDIR}" +SRC_URI += "file://toggle_identify_led.sh" + +do_install() { + install -d ${D}${bindir} + install -m 0755 ${WORKDIR}/toggle_identify_led.sh \ + ${D}${bindir}/toggle_identify_led.sh +} + +SYSTEMD_ENVIRONMENT_FILE_${PN} +="obmc/gpio/id_button" + +ID_BUTTON_SERVICE = "id_button" + +TMPL = "phosphor-gpio-monitor@.service" +INSTFMT = "phosphor-gpio-monitor@{0}.service" +TGT = "multi-user.target" +FMT = "../${TMPL}:${TGT}.requires/${INSTFMT}" + +SYSTEMD_SERVICE_${PN} += "id-button-pressed.service" +SYSTEMD_LINK_${PN} += "${@compose_list(d, 'FMT', 'ID_BUTTON_SERVICE')}" diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/gpio/id-button/id-button-pressed.service b/meta-ibm/meta-witherspoon/recipes-phosphor/gpio/id-button/id-button-pressed.service new file mode 100644 index 000000000..c4f939cc3 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/gpio/id-button/id-button-pressed.service @@ -0,0 +1,9 @@ +[Unit] +Description=ID Button Pressed Service +Wants=mapper-wait@-xyz-openbmc_project-led-groups.service +After=mapper-wait@-xyz-openbmc_project-led-groups.service +StartLimitIntervalSec=0 + +[Service] +Type=oneshot +ExecStart=/usr/bin/toggle_identify_led.sh diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/gpio/id-button/obmc/gpio/id_button b/meta-ibm/meta-witherspoon/recipes-phosphor/gpio/id-button/obmc/gpio/id_button new file mode 100644 index 000000000..370e609cd --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/gpio/id-button/obmc/gpio/id_button @@ -0,0 +1,5 @@ +DEVPATH=/dev/input/by-path/platform-gpio-keys-event +KEY=41 +POLARITY=1 +TARGET=id-button-pressed.service +EXTRA_ARGS=--continue diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/gpio/id-button/toggle_identify_led.sh b/meta-ibm/meta-witherspoon/recipes-phosphor/gpio/id-button/toggle_identify_led.sh new file mode 100644 index 000000000..cd44c4b6b --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/gpio/id-button/toggle_identify_led.sh @@ -0,0 +1,27 @@ +#!/bin/sh +# Toggle the state of identify LED Group + +SERVICE="xyz.openbmc_project.LED.GroupManager" +INTERFACE="xyz.openbmc_project.Led.Group" +PROPERTY="Asserted" + +# Get current state +object=$(busctl tree $SERVICE --list | grep identify) +led=$(cat /sys/devices/platform/leds/leds/rear-id/brightness) +if [ "$led" == "0" ]; then + busctl set-property $SERVICE $object $INTERFACE $PROPERTY b false +else + busctl set-property $SERVICE $object $INTERFACE $PROPERTY b true +fi + +state=$(busctl get-property $SERVICE $object $INTERFACE $PROPERTY \ + | awk '{print $NF;}') + +if [ "$state" == "false" ]; then + target='true' +else + target='false' +fi + +# Set target state +busctl set-property $SERVICE $object $INTERFACE $PROPERTY b $target diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/gpio/phosphor-gpio-monitor/mihawk/obmc/gpio/phosphor-power-supply-0.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/gpio/phosphor-gpio-monitor/mihawk/obmc/gpio/phosphor-power-supply-0.conf new file mode 100755 index 000000000..577548792 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/gpio/phosphor-gpio-monitor/mihawk/obmc/gpio/phosphor-power-supply-0.conf @@ -0,0 +1,6 @@ +INVENTORY=/system/chassis/motherboard/powersupply0 +DEVPATH=/dev/input/by-path/platform-gpio-keys-event +KEY=200 +NAME=powersupply0 +DRIVERS=/sys/bus/i2c/drivers/ibm-cffps,3-005b +EXTRA_IFACES=xyz.openbmc_project.Inventory.Item.PowerSupply diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/gpio/phosphor-gpio-monitor/mihawk/obmc/gpio/phosphor-power-supply-1.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/gpio/phosphor-gpio-monitor/mihawk/obmc/gpio/phosphor-power-supply-1.conf new file mode 100755 index 000000000..4d76afb4d --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/gpio/phosphor-gpio-monitor/mihawk/obmc/gpio/phosphor-power-supply-1.conf @@ -0,0 +1,6 @@ +INVENTORY=/system/chassis/motherboard/powersupply1 +DEVPATH=/dev/input/by-path/platform-gpio-keys-event +KEY=202 +NAME=powersupply1 +DRIVERS=/sys/bus/i2c/drivers/ibm-cffps,3-0058 +EXTRA_IFACES=xyz.openbmc_project.Inventory.Item.PowerSupply diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/gpio/phosphor-gpio-monitor_%.bbappend b/meta-ibm/meta-witherspoon/recipes-phosphor/gpio/phosphor-gpio-monitor_%.bbappend index 032056c26..6919edf7c 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/gpio/phosphor-gpio-monitor_%.bbappend +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/gpio/phosphor-gpio-monitor_%.bbappend @@ -6,7 +6,9 @@ POWERSUPPLY_TGT = "multi-user.target" FMT_POWERSUPPLY = "../${TMPL_POWERSUPPLY}:${POWERSUPPLY_TGT}.requires/${INSTFMT_POWERSUPPLY}" SYSTEMD_LINK_${PN}-presence_append_ibm-ac-server = " ${@compose_list(d, 'FMT_POWERSUPPLY', 'OBMC_POWER_SUPPLY_INSTANCES')}" +SYSTEMD_LINK_${PN}-presence_append_mihawk = " ${@compose_list(d, 'FMT_POWERSUPPLY', 'OBMC_POWER_SUPPLY_INSTANCES')}" POWERSUPPLY_ENV_FMT = "obmc/gpio/phosphor-power-supply-{0}.conf" SYSTEMD_ENVIRONMENT_FILE_${PN}-presence_append_ibm-ac-server = " ${@compose_list(d, 'POWERSUPPLY_ENV_FMT', 'OBMC_POWER_SUPPLY_INSTANCES')}" +SYSTEMD_ENVIRONMENT_FILE_${PN}-presence_append_mihawk = " ${@compose_list(d, 'POWERSUPPLY_ENV_FMT', 'OBMC_POWER_SUPPLY_INSTANCES')}" diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/host/p9-host-start.bbappend b/meta-ibm/meta-witherspoon/recipes-phosphor/host/p9-host-start.bbappend index 4b978c950..a698b06ad 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/host/p9-host-start.bbappend +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/host/p9-host-start.bbappend @@ -2,3 +2,7 @@ RDEPENDS_${PN}_append_ibm-ac-server = " avsbus-control" RDEPENDS_${PN}_append_witherspoon = " vrm-control" RDEPENDS_${PN}_append_ibm-ac-server = " power-workarounds" RDEPENDS_${PN}_remove_ibm-ac-server = "p9-vcs-workaround" +RDEPENDS_${PN}_append_mihawk = " avsbus-control" +RDEPENDS_${PN}_append_mihawk = " vrm-control" +RDEPENDS_${PN}_remove_mihawk = "p9-vcs-workaround" + diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/images/obmc-phosphor-image.bbappend b/meta-ibm/meta-witherspoon/recipes-phosphor/images/obmc-phosphor-image.bbappend index ab45d557e..199d2c465 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/images/obmc-phosphor-image.bbappend +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/images/obmc-phosphor-image.bbappend @@ -1 +1,2 @@ OBMC_IMAGE_EXTRA_INSTALL_append_ibm-ac-server = " mboxd max31785-msl phosphor-msl-verify liberation-fonts uart-render-controller first-boot-set-mac first-boot-set-hostname" +OBMC_IMAGE_EXTRA_INSTALL_append_mihawk = " mboxd liberation-fonts uart-render-controller" diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/leds/mihawk-led-manager-config-native.bb b/meta-ibm/meta-witherspoon/recipes-phosphor/leds/mihawk-led-manager-config-native.bb new file mode 100644 index 000000000..fa1662817 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/leds/mihawk-led-manager-config-native.bb @@ -0,0 +1,18 @@ +SUMMARY = "Phosphor LED Group Management for Mihawk" +PR = "r1" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" + +inherit native + +PROVIDES += "virtual/phosphor-led-manager-config-native" + +SRC_URI += "file://led.yaml" +S = "${WORKDIR}" + +# Copies example led layout yaml file +do_install() { + SRC=${S} + DEST=${D}${datadir}/phosphor-led-manager + install -D ${SRC}/led.yaml ${DEST}/led.yaml +} diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/leds/mihawk-led-manager-config/led.yaml b/meta-ibm/meta-witherspoon/recipes-phosphor/leds/mihawk-led-manager-config/led.yaml new file mode 100644 index 000000000..1c6634551 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/leds/mihawk-led-manager-config/led.yaml @@ -0,0 +1,148 @@ +BmcBooted: + power: + Action: 'Blink' + DutyOn: 50 + Period: 250 + Priority: 'On' +PowerOn: + power: + Action: 'On' + DutyOn: 50 + Period: 0 + Priority: 'On' +EnclosureFault: + fault: + Action: 'On' + DutyOn: 50 + Period: 0 + Priority: 'On' +EnclosureIdentify: + rear-id: + Action: 'On' + DutyOn: 50 + Period: 0 + Priority: 'On' +Fan0Fault: + fan0: + Action: 'On' + DutyOn: 50 + Period: 0 + Priority: 'Blink' + fault: + Action: 'On' + DutyOn: 50 + Period: 0 + Priority: 'On' +Fan1Fault: + fan1: + Action: 'On' + DutyOn: 50 + Period: 1000 + Priority: 'Blink' + fault: + Action: 'On' + DutyOn: 50 + Period: 0 + Priority: 'On' +Fan2Fault: + fan2: + Action: 'On' + DutyOn: 50 + Period: 0 + Priority: 'Blink' + fault: + Action: 'On' + DutyOn: 50 + Period: 0 + Priority: 'On' +Fan3Fault: + fan3: + Action: 'On' + DutyOn: 50 + Period: 1000 + Priority: 'Blink' + fault: + Action: 'On' + DutyOn: 50 + Period: 0 + Priority: 'On' +Fan4Fault: + fan4: + Action: 'On' + DutyOn: 50 + Period: 0 + Priority: 'Blink' + fault: + Action: 'On' + DutyOn: 50 + Period: 0 + Priority: 'On' +Fan5Fault: + fan5: + Action: 'On' + DutyOn: 50 + Period: 1000 + Priority: 'Blink' + fault: + Action: 'On' + DutyOn: 50 + Period: 0 + Priority: 'On' +Powersupply0Fault: + fault: + Action: 'On' + DutyOn: 50 + Period: 0 + Priority: 'On' +Powersupply1Fault: + fault: + Action: 'On' + DutyOn: 50 + Period: 0 + Priority: 'On' +LampTest: + fault: + Action: 'Blink' + DutyOn: 50 + Period: 1000 + Priority: 'On' + rear-id: + Action: 'Blink' + DutyOn: 50 + Period: 1000 + Priority: 'On' + power: + Action: 'Blink' + DutyOn: 50 + Period: 1000 + Priority: 'On' + fan0: + Action: 'Blink' + DutyOn: 50 + Period: 1000 + Priority: 'Blink' + fan1: + Action: 'Blink' + DutyOn: 50 + Period: 1000 + Priority: 'Blink' + fan2: + Action: 'Blink' + DutyOn: 50 + Period: 1000 + Priority: 'Blink' + fan3: + Action: 'Blink' + DutyOn: 50 + Period: 1000 + Priority: 'Blink' + fan4: + Action: 'Blink' + DutyOn: 50 + Period: 1000 + Priority: 'Blink' + fan5: + Action: 'Blink' + DutyOn: 50 + Period: 1000 + Priority: 'Blink' \ No newline at end of file diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/logging/ibm-logging/mihawk/policyTable.json b/meta-ibm/meta-witherspoon/recipes-phosphor/logging/ibm-logging/mihawk/policyTable.json new file mode 100755 index 000000000..80bfbcfd9 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/logging/ibm-logging/mihawk/policyTable.json @@ -0,0 +1,22437 @@ +{ + "events": { + "External Software CSM||Event Type Lookup Failure": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Events / Monitoring", + "BMCMessageID": "External Software CSM", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPEM0003G", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "CSM", + "Message": "Failed to find an alert in the CSM RAS event types table", + "ReferencedInventory": "Event Type Lookup Failure", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": false + }, + "External Software||Network Error": { + "AffectedLEDs": null, + "AffectedSubsystem": "Interconnect Networking", + "BMCMessageID": "External Software", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPIN0001M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Connection Error. View additional details for more information", + "ReferencedInventory": "Network Error", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": true + }, + "org.open_power.Host.Access.Error.ReadCFAM": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "org.open_power.Host.Access.Error.ReadCFAM", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0044F", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Failure to write to host CFAM interface", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": false, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Access.Error.WriteCFAM": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "org.open_power.Host.Access.Error.WriteCFAM", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0043F", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Failure to read from host CFAM interface", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": false, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Boot.Error.Checkstop": { + "AffectedLEDs": null, + "AffectedSubsystem": "Canister/Appliance", + "BMCMessageID": "org.open_power.Host.Boot.Error.Checkstop", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPAA0007G", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "A system checkstop occurred", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Boot.Error.WatchdogTimedOut": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "org.open_power.Host.Boot.Error.WatchdogTimedOut", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0023M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Hostboot has become unresponsive", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Error.Checkstop": { + "AffectedLEDs": null, + "AffectedSubsystem": "Canister/Appliance", + "BMCMessageID": "org.open_power.Host.Error.Checkstop", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPAA0007G", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "A system checkstop occurred", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Error.Event": { + "AffectedLEDs": null, + "AffectedSubsystem": "Canister/Appliance", + "BMCMessageID": "org.open_power.Host.Error.Event", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPAA0011M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "An error was detected with the base platform, but was not able to be deciphered. Contact your next level of support.", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system": { + "AffectedLEDs": null, + "AffectedSubsystem": "Canister/Appliance", + "BMCMessageID": "org.open_power.Host.Error.Event", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPAA0008M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Hostboot procedure callout", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0": { + "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/core0": { + "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||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", + "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/core10": { + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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/core20": { + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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/core0": { + "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||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", + "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/core10": { + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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/core20": { + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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/dimm10": { + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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", + "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||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 system backplane 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", + "BMCMessageID": "org.open_power.Host.Error.MaintenanceProcedure", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPCR0003M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "A system firmware error occurred.", + "ReferencedInventory": 0, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Error.MaintenanceProcedure||1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Canister/Appliance", + "BMCMessageID": "org.open_power.Host.Error.MaintenanceProcedure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPAA0000M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "A vital system component has been disabled", + "ReferencedInventory": 1, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Error.MaintenanceProcedure||10": { + "AffectedLEDs": null, + "AffectedSubsystem": "Canister/Appliance", + "BMCMessageID": "org.open_power.Host.Error.MaintenanceProcedure", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPAA0001M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "An unknown problem occurred", + "ReferencedInventory": 10, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Error.MaintenanceProcedure||11": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "org.open_power.Host.Error.MaintenanceProcedure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0029M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": null, + "Message": "A system firmware error occurred.", + "ReferencedInventory": 11, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Error.MaintenanceProcedure||16": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "org.open_power.Host.Error.MaintenanceProcedure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0007M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "A system firmware error occurred.", + "ReferencedInventory": 16, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Error.MaintenanceProcedure||1C": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "org.open_power.Host.Error.MaintenanceProcedure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0008M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "A system firmware error occurred.", + "ReferencedInventory": "1C", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Error.MaintenanceProcedure||22": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "org.open_power.Host.Error.MaintenanceProcedure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPMA0044M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "A memory configuration error has been detected.", + "ReferencedInventory": 22, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Error.MaintenanceProcedure||2D": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Error.MaintenanceProcedure", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0060M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "A FSI path error has occurred.", + "ReferencedInventory": "2D", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Error.MaintenanceProcedure||30": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Error.MaintenanceProcedure", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0061M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "An external processor interface problem has occurred", + "ReferencedInventory": 30, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Error.MaintenanceProcedure||31": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Error.MaintenanceProcedure", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0062M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "An internal processor interface problem has occurred", + "ReferencedInventory": 31, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Error.MaintenanceProcedure||34": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "org.open_power.Host.Error.MaintenanceProcedure", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPMA0058M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "A memory bus error occurred.", + "ReferencedInventory": 34, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Error.MaintenanceProcedure||37": { + "AffectedLEDs": null, + "AffectedSubsystem": "System Board", + "BMCMessageID": "org.open_power.Host.Error.MaintenanceProcedure", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPSB0005M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "A bus error occurred.", + "ReferencedInventory": 37, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Error.MaintenanceProcedure||3F": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Host.Error.MaintenanceProcedure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0012M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "A system power problem has occurred", + "ReferencedInventory": "3F", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Error.MaintenanceProcedure||4": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "org.open_power.Host.Error.MaintenanceProcedure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0004M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "A system firmware error occurred.", + "ReferencedInventory": 4, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Error.MaintenanceProcedure||4D": { + "AffectedLEDs": null, + "AffectedSubsystem": "Canister/Appliance", + "BMCMessageID": "org.open_power.Host.Error.MaintenanceProcedure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPAA0009M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "System performance is degraded", + "ReferencedInventory": "4D", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Error.MaintenanceProcedure||4F": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "org.open_power.Host.Error.MaintenanceProcedure", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPMA0045M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "An uncorrectable memory problem occurred.", + "ReferencedInventory": "4F", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Error.MaintenanceProcedure||5": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "org.open_power.Host.Error.MaintenanceProcedure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0005M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "A system firmware error occurred.", + "ReferencedInventory": 5, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Error.MaintenanceProcedure||55": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "org.open_power.Host.Error.MaintenanceProcedure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0011M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The service processor detected a problem during the early boot process", + "ReferencedInventory": 55, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Error.MaintenanceProcedure||56": { + "AffectedLEDs": null, + "AffectedSubsystem": "Time Reference", + "BMCMessageID": "org.open_power.Host.Error.MaintenanceProcedure", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPTR0001M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "A problem with the time of day clock and or clock function has been detected.", + "ReferencedInventory": 56, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Error.MaintenanceProcedure||5C": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Error.MaintenanceProcedure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPU0063M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "One or more processor sensors detected an over temperature condition.", + "ReferencedInventory": "5C", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Error.MaintenanceProcedure||5D": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "org.open_power.Host.Error.MaintenanceProcedure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0028M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Not Valid", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to verify the system firmware", + "ReferencedInventory": "5D", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Error.MaintenanceProcedure||5E": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Error.MaintenanceProcedure", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0092M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "An error occurred with a GPU and automated isolation was not possible", + "ReferencedInventory": "5E", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Error.MaintenanceProcedure||8": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Error.MaintenanceProcedure", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0059M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "A CPU problem was detected.", + "ReferencedInventory": 8, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Error.MaintenanceProcedure||9": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "org.open_power.Host.Error.MaintenanceProcedure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPMA0043M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "An error occurred with a memory DIMM and automated isolation was not possible", + "ReferencedInventory": 9, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Error.MaintenanceProcedure||A": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "org.open_power.Host.Error.MaintenanceProcedure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0006M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "A system firmware error occurred.", + "ReferencedInventory": "A", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Error.WatchdogTimedOut": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "org.open_power.Host.Error.WatchdogTimedOut", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0023M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Hostboot has become unresponsive", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system": { + "AffectedLEDs": null, + "AffectedSubsystem": "Canister/Appliance", + "BMCMessageID": "org.open_power.Host.Event.Error.Event", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPAA0008M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Hostboot procedure callout", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core10": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core11": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core12": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core13": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core14": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core15": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core16": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core17": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core18": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core19": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core2": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core20": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core21": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core22": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core23": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core3": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core4": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core5": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core6": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core7": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core8": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core9": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core10": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core11": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core12": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core13": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core14": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core15": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core16": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core17": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core18": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core19": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core2": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core20": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core21": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core22": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core23": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core3": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core4": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core5": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core6": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core7": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core8": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core9": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm10": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm11": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm12": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm13": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm14": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm15": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm2": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm3": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm4": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm5": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm6": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm7": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm8": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "org.open_power.Host.Event.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.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm9": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "org.open_power.Host.Event.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.OCC.Device.Error.ConfigFailure": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "org.open_power.OCC.Device.Error.ConfigFailure", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPCR0048M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Failure to configure OCC", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.OCC.Device.Error.OpenFailure": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "org.open_power.OCC.Device.Error.OpenFailure", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPCR0045M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Failed to open OCC connection", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.OCC.Device.Error.ReadFailure": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "org.open_power.OCC.Device.Error.ReadFailure", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPCR0046M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Failed to read from OCC", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.OCC.Device.Error.WriteFailure": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "org.open_power.OCC.Device.Error.WriteFailure", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPCR0047M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Failed to write to OCC", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.OCC.Metrics.Error.Event": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "org.open_power.OCC.Metrics.Error.Event", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0064I", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Status", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "OCC metric data collected", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": false, + "Severity": "Information", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Proc.FSI.Error.MasterDetectionFailure||FSI": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Proc.FSI.Error.MasterDetectionFailure", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0097M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to detect master processor on FSI bus", + "ReferencedInventory": "FSI", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Proc.FSI.Error.SlaveDetectionFailure": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "org.open_power.Proc.FSI.Error.SlaveDetectionFailure", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0098M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to detect slave processor on FSI bus", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.GPUOverTemp||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.GPUOverTemp", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0066M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 0 suffered an over-temperature fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.GPUOverTemp||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.GPUOverTemp", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0066M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 1 suffered an over-temperature fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.GPUOverTemp||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu2": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.GPUOverTemp", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0066M", + "ComponentInstance": 2, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 2 suffered an over-temperature fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu2", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.GPUOverTemp||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu3": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.GPUOverTemp", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0066M", + "ComponentInstance": 3, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 3 suffered an over-temperature fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu3", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.GPUOverTemp||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu4": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.GPUOverTemp", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0066M", + "ComponentInstance": 4, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 4 suffered an over-temperature fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu4", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.GPUOverTemp||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu5": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.GPUOverTemp", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0066M", + "ComponentInstance": 5, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 5 suffered an over-temperature fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu5", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.GPUOverTemp||/xyz/openbmc_project/inventory/system/chassis/motherboard/gv100card0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.GPUOverTemp", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0066M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 0 suffered an over-temperature fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gv100card0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": "Cooling", + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.GPUOverTemp||/xyz/openbmc_project/inventory/system/chassis/motherboard/gv100card1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.GPUOverTemp", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0066M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 1 suffered an over-temperature fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gv100card1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": "Cooling", + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.GPUOverTemp||/xyz/openbmc_project/inventory/system/chassis/motherboard/gv100card2": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.GPUOverTemp", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0066M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 2 suffered an over-temperature fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gv100card2", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": "Cooling", + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.GPUOverTemp||/xyz/openbmc_project/inventory/system/chassis/motherboard/gv100card3": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.GPUOverTemp", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0066M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 3 suffered an over-temperature fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gv100card3", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": "Cooling", + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.GPUOverTemp||/xyz/openbmc_project/inventory/system/chassis/motherboard/gv100card4": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.GPUOverTemp", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0066M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 4 suffered an over-temperature fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gv100card4", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": "Cooling", + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.GPUOverTemp||/xyz/openbmc_project/inventory/system/chassis/motherboard/gv100card5": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.GPUOverTemp", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0066M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 5 suffered an over-temperature fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gv100card5", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": "Cooling", + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.GPUPowerFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.GPUPowerFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0038M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 0 suffered a power fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.GPUPowerFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.GPUPowerFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0038M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 1 suffered a power fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.GPUPowerFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu2": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.GPUPowerFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0038M", + "ComponentInstance": 2, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 2 suffered a power fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu2", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.GPUPowerFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu3": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.GPUPowerFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0038M", + "ComponentInstance": 3, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 3 suffered a power fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu3", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.GPUPowerFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu4": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.GPUPowerFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0038M", + "ComponentInstance": 4, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 4 suffered a power fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu4", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.GPUPowerFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu5": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.GPUPowerFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0038M", + "ComponentInstance": 5, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 5 suffered a power fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu5", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.GPUPowerFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/gv100card0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.GPUPowerFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0038M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 0 suffered a power fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gv100card0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.GPUPowerFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/gv100card1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.GPUPowerFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0038M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 1 suffered a power fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gv100card1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.GPUPowerFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/gv100card2": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.GPUPowerFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0038M", + "ComponentInstance": 2, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 2 suffered a power fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gv100card2", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.GPUPowerFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/gv100card3": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.GPUPowerFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0038M", + "ComponentInstance": 3, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 3 suffered a power fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gv100card3", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.GPUPowerFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/gv100card4": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.GPUPowerFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0038M", + "ComponentInstance": 4, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 4 suffered a power fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gv100card4", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.GPUPowerFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/gv100card5": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.GPUPowerFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0038M", + "ComponentInstance": 5, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 5 suffered a power fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gv100card5", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerOnFailure": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerOnFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0038F", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The system power failed to turn on", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": false, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSequencerFault": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSequencerFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0041M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSequencerPGOODFault||GPU_PGOOD": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSequencerPGOODFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0045M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a GPU_PGOOD fault", + "ReferencedInventory": "GPU_PGOOD", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSequencerPGOODFault||MEM_GOOD0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSequencerPGOODFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0043M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a MEM_GOOD0 fault", + "ReferencedInventory": "MEM_GOOD0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSequencerPGOODFault||MEM_GOOD1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSequencerPGOODFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0044M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a MEM_GOOD1 fault", + "ReferencedInventory": "MEM_GOOD1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSequencerPGOODFault||PGOOD_5P0V": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSequencerPGOODFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0042M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a PGOOD_5P0V fault", + "ReferencedInventory": "PGOOD_5P0V", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSequencerPGOODFault||TH_OVERT": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSequencerPGOODFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0046M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a TH_OVERT fault", + "ReferencedInventory": "TH_OVERT", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault||0.9V": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0053M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on 0.9V rail.", + "ReferencedInventory": "0.9V", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault||1.0V": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0052M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on 1.0V rail.", + "ReferencedInventory": "1.0V", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault||1.1V": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0051M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on 1.1V rail.", + "ReferencedInventory": "1.1V", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault||1.8V": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0050M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on 1.8V rail.", + "ReferencedInventory": "1.8V", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault||12.0V": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0048M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on 12.0V rail.", + "ReferencedInventory": "12.0V", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault||3.3V": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0049M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on 3.3V rail.", + "ReferencedInventory": "3.3V", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault||5.0VCS": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0047M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on 5.0VCS rail.", + "ReferencedInventory": "5.0VCS", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault||AVDD": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0056M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on AVDD rail.", + "ReferencedInventory": "AVDD", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault||VCS-A": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0061M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on VCS-A rail.", + "ReferencedInventory": "VCS-A", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault||VCS-B": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0062M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on VCS-B rail.", + "ReferencedInventory": "VCS-B", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault||VDD-A": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0059M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on VDD-A rail.", + "ReferencedInventory": "VDD-A", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault||VDD-B": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0060M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on VDD-B rail.", + "ReferencedInventory": "VDD-B", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault||VDN-A": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0054M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on VDN-A rail.", + "ReferencedInventory": "VDN-A", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault||VDN-B": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0055M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on VDN-B rail.", + "ReferencedInventory": "VDN-B", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault||VIO-A": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0057M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on VIO-A rail.", + "ReferencedInventory": "VIO-A", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault||VIO-B": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0058M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on VIO-B rail.", + "ReferencedInventory": "VIO-B", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSupplyFanFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSupplyFanFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPCA0064M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 fan has failed", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSupplyFanFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSupplyFanFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPCA0064M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 fan has failed", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSupplyFanFault||/xyz/openbmc_project/inventory/system/chassis/powersupply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSupplyFanFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPCA0064M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 fan has failed", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/powersupply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSupplyFanFault||/xyz/openbmc_project/inventory/system/chassis/powersupply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSupplyFanFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPCA0064M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 fan has failed", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/powersupply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSupplyInputFault": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSupplyInputFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0064M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply input fault detected, but unable to isolate to a specific power supply", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSupplyInputFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSupplyInputFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0033M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 input fault detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSupplyInputFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSupplyInputFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0033M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 input fault detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSupplyInputFault||/xyz/openbmc_project/inventory/system/chassis/powersupply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSupplyInputFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0033M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 input fault detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/powersupply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSupplyInputFault||/xyz/openbmc_project/inventory/system/chassis/powersupply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSupplyInputFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0033M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 input fault detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/powersupply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSupplyOutputOvercurrent||/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSupplyOutputOvercurrent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0035M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 output current is too high", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSupplyOutputOvercurrent||/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSupplyOutputOvercurrent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0035M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 output current is too high", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSupplyOutputOvercurrent||/xyz/openbmc_project/inventory/system/chassis/powersupply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSupplyOutputOvercurrent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0035M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 output current is too high", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/powersupply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSupplyOutputOvercurrent||/xyz/openbmc_project/inventory/system/chassis/powersupply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSupplyOutputOvercurrent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0035M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 output current is too high", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/powersupply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSupplyOutputOvervoltage||/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSupplyOutputOvervoltage", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0036M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 output voltage is too high", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSupplyOutputOvervoltage||/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSupplyOutputOvervoltage", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0036M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 output voltage is too high", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSupplyOutputOvervoltage||/xyz/openbmc_project/inventory/system/chassis/powersupply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSupplyOutputOvervoltage", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0036M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 output voltage is too high", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/powersupply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSupplyOutputOvervoltage||/xyz/openbmc_project/inventory/system/chassis/powersupply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSupplyOutputOvervoltage", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0036M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 output voltage is too high", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/powersupply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSupplyShouldBeOn||/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSupplyShouldBeOn", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0034M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 has failed to power on when it needed to", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSupplyShouldBeOn||/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSupplyShouldBeOn", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0034M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 has failed to power on", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSupplyShouldBeOn||/xyz/openbmc_project/inventory/system/chassis/powersupply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSupplyShouldBeOn", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0034M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 has failed to power on when it needed to", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/powersupply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSupplyShouldBeOn||/xyz/openbmc_project/inventory/system/chassis/powersupply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSupplyShouldBeOn", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0034M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 has failed to power on", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/powersupply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSupplyTemperatureFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSupplyTemperatureFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0065M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 is too hot", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSupplyTemperatureFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSupplyTemperatureFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0065M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 is too hot", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSupplyTemperatureFault||/xyz/openbmc_project/inventory/system/chassis/powersupply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSupplyTemperatureFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0065M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 is too hot", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/powersupply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSupplyTemperatureFault||/xyz/openbmc_project/inventory/system/chassis/powersupply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSupplyTemperatureFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0065M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 is too hot", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/powersupply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSupplyUnderVoltageFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSupplyUnderVoltageFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0009M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 input voltage out of range", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSupplyUnderVoltageFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSupplyUnderVoltageFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0009M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 input voltage out of range", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSupplyUnderVoltageFault||/xyz/openbmc_project/inventory/system/chassis/powersupply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSupplyUnderVoltageFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0009M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 input voltage out of range", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/powersupply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.PowerSupplyUnderVoltageFault||/xyz/openbmc_project/inventory/system/chassis/powersupply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.PowerSupplyUnderVoltageFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0009M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 input voltage out of range", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/powersupply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.Shutdown": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.Shutdown", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0063G", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The system unexpectedly shutdown.", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.Shutdown||/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.Shutdown", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0037M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 has initiated a power off due to a failure", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.Shutdown||/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.Shutdown", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0037M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 has initiated a power off due to a failure", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.Shutdown||/xyz/openbmc_project/inventory/system/chassis/powersupply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.Shutdown", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0037M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 has initiated a power off due to a failure", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/powersupply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.Error.Shutdown||/xyz/openbmc_project/inventory/system/chassis/powersupply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.Error.Shutdown", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0037M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 has initiated a power off due to a failure", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/powersupply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.GPUOverTemp||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "org.open_power.Witherspoon.Fault.GPUOverTemp", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0066M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 0 suffered an over-temperature fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.GPUOverTemp||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "org.open_power.Witherspoon.Fault.GPUOverTemp", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0066M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 1 suffered an over-temperature fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.GPUOverTemp||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu2": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "org.open_power.Witherspoon.Fault.GPUOverTemp", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0066M", + "ComponentInstance": 2, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 2 suffered an over-temperature fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu2", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.GPUOverTemp||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu3": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "org.open_power.Witherspoon.Fault.GPUOverTemp", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0066M", + "ComponentInstance": 3, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 3 suffered an over-temperature fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu3", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.GPUOverTemp||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu4": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "org.open_power.Witherspoon.Fault.GPUOverTemp", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0066M", + "ComponentInstance": 4, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 4 suffered an over-temperature fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu4", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.GPUOverTemp||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu5": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "org.open_power.Witherspoon.Fault.GPUOverTemp", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0066M", + "ComponentInstance": 5, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 5 suffered an over-temperature fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu5", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.GPUPowerFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.GPUPowerFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0038M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 0 suffered a power fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.GPUPowerFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.GPUPowerFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0038M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 1 suffered a power fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.GPUPowerFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu2": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.GPUPowerFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0038M", + "ComponentInstance": 2, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 2 suffered a power fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu2", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.GPUPowerFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu3": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.GPUPowerFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0038M", + "ComponentInstance": 3, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 3 suffered a power fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu3", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.GPUPowerFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu4": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.GPUPowerFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0038M", + "ComponentInstance": 4, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 4 suffered a power fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu4", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "org.open_power.Witherspoon.Fault.GPUPowerFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu5": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "org.open_power.Witherspoon.Fault.GPUPowerFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0038M", + "ComponentInstance": 5, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 5 suffered a power fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu5", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Certs.Install.Error.InvalidCertificate": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.Certs.Install.Error.InvalidCertificate", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0075G", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": "The provided certificate is not valid. The BMC will continue operating with the old certificate.", + "LogSource": "BMC", + "Message": "The provided certificate is not valid", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Common.Callout.Error.Device||FSI": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.Common.Callout.Error.Device", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0042F", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "An error occurred on the FSI interface", + "ReferencedInventory": "FSI", + "RelatedEventIDs": {}, + "Serviceable": false, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Common.Callout.Error.Device||I2C": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.Common.Callout.Error.Device", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0041F", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "An error occurred on the I2C interface", + "ReferencedInventory": "I2C", + "RelatedEventIDs": {}, + "Serviceable": false, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Common.Callout.Error.GPIO||GPIO": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.Common.Callout.Error.GPIO", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0077F", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "An error occurred on the GPIO interface", + "ReferencedInventory": "GPIO", + "RelatedEventIDs": {}, + "Serviceable": false, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Common.Callout.Error.IIC||I2C": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.Common.Callout.Error.IIC", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0041F", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "An error occurred on the I2C interface", + "ReferencedInventory": "I2C", + "RelatedEventIDs": {}, + "Serviceable": false, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Common.Callout.Error.IPMISensor||IPMI": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.Common.Callout.Error.IPMISensor", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0040F", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "An error occurred working with an IPMI sensor", + "ReferencedInventory": "IPMI", + "RelatedEventIDs": {}, + "Serviceable": false, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Common.Device.Error.ReadFailure||/sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@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 system backplane", + "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:bus@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:bus@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/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 system backplane", + "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", + "BMCMessageID": "xyz.openbmc_project.Common.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0033G", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Failed to read from FSI Device", + "ReferencedInventory": "FSI", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Common.Device.Error.ReadFailure||I2C": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.Common.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0024G", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Failed to read from I2C Device", + "ReferencedInventory": "I2C", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Warning", + "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", + "BMCMessageID": "xyz.openbmc_project.Common.Device.Error.WriteFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0035G", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Failed to write to FSI Device", + "ReferencedInventory": "FSI", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Common.Device.Error.WriteFailure||I2C": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.Common.Device.Error.WriteFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0034G", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Failed to write to I2C Device", + "ReferencedInventory": "I2C", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Common.Error.InsufficientPermission": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.Common.Error.InsufficientPermission", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0022F", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Security", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The user has insufficient privileges", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": false, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Common.Error.InternalFailure": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.Common.Error.InternalFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0021F", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "An internal failure has occurred while performing an operation.", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": false, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Common.Error.InvalidArgument": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.Common.Error.InvalidArgument", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0030F", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "An invalid argument was provided to a command", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": false, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Common.Error.NoCACertificate": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.Common.Error.NoCACertificate", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0076G", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": "Unable to validate the Certificate Authority (CA) for an external server, such as an LDAP server.", + "LogSource": "BMC", + "Message": "Unable to verify a server's CA certificate", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Common.Error.NotAllowed": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.Common.Error.NotAllowed", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0074G", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The specified operation is not allowed", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Common.Error.Timeout": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.Common.Error.Timeout", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0020F", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Monitoring Agent", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "An internal operation has timed out", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": false, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Common.File.Error.Open": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.Common.File.Error.Open", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0036F", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to open a file in BMC filesystem.", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": false, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Common.File.Error.Seek": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.Common.File.Error.Seek", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0037F", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to find a file in BMC filesystem.", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": false, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Common.File.Error.Write": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.Common.File.Error.Write", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0038F", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to write a file in BMC filesystem.", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": false, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Control.Device.Error.WriteFailure||/xyz/openbmc_project/sensors/fan_tach/fan0_0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Control.Device.Error.WriteFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0057M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to set fan speed for fan 0", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan0_0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Control.Device.Error.WriteFailure||/xyz/openbmc_project/sensors/fan_tach/fan0_1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Control.Device.Error.WriteFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0057M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to set fan speed for fan 0", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan0_1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Control.Device.Error.WriteFailure||/xyz/openbmc_project/sensors/fan_tach/fan1_0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Control.Device.Error.WriteFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0057M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to set fan speed for fan 1", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan1_0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Control.Device.Error.WriteFailure||/xyz/openbmc_project/sensors/fan_tach/fan1_1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Control.Device.Error.WriteFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0057M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to set fan speed for fan 1", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan1_1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Control.Device.Error.WriteFailure||/xyz/openbmc_project/sensors/fan_tach/fan2_0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Control.Device.Error.WriteFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0057M", + "ComponentInstance": 2, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to set fan speed for fan 2", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan2_0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Control.Device.Error.WriteFailure||/xyz/openbmc_project/sensors/fan_tach/fan2_1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Control.Device.Error.WriteFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0057M", + "ComponentInstance": 2, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to set fan speed for fan 2", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan2_1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Control.Device.Error.WriteFailure||/xyz/openbmc_project/sensors/fan_tach/fan3_0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Control.Device.Error.WriteFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0057M", + "ComponentInstance": 3, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to set fan speed for fan 3", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan3_0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Control.Device.Error.WriteFailure||/xyz/openbmc_project/sensors/fan_tach/fan3_1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Control.Device.Error.WriteFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0057M", + "ComponentInstance": 3, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to set fan speed for fan 3", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan3_1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Control.Device.WriteFailure||/xyz/openbmc_project/sensors/fan_tach/fan0_0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Control.Device.WriteFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0057M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to set fan speed for fan 0", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan0_0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Control.Device.WriteFailure||/xyz/openbmc_project/sensors/fan_tach/fan0_1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Control.Device.WriteFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0057M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to set fan speed for fan 0", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan0_1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Control.Device.WriteFailure||/xyz/openbmc_project/sensors/fan_tach/fan1_0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Control.Device.WriteFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0057M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to set fan speed for fan 1", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan1_0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Control.Device.WriteFailure||/xyz/openbmc_project/sensors/fan_tach/fan1_1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Control.Device.WriteFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0057M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to set fan speed for fan 1", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan1_1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Control.Device.WriteFailure||/xyz/openbmc_project/sensors/fan_tach/fan2_0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Control.Device.WriteFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0057M", + "ComponentInstance": 2, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to set fan speed for fan 2", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan2_0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Control.Device.WriteFailure||/xyz/openbmc_project/sensors/fan_tach/fan2_1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Control.Device.WriteFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0057M", + "ComponentInstance": 2, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to set fan speed for fan 2", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan2_1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Control.Device.WriteFailure||/xyz/openbmc_project/sensors/fan_tach/fan3_0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Control.Device.WriteFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0057M", + "ComponentInstance": 3, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to set fan speed for fan 3", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan3_0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Control.Device.WriteFailure||/xyz/openbmc_project/sensors/fan_tach/fan3_1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Control.Device.WriteFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0057M", + "ComponentInstance": 3, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to set fan speed for fan 3", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan3_1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Control.Host.Error.CommandNotSupported": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.Control.Host.Error.CommandNotSupported", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0039F", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "An invalid host system control command was provided.", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": false, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Dump.Create.Error.Disabled": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Data Management", + "BMCMessageID": "xyz.openbmc_project.Dump.Create.Error.Disabled", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPDM0000M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to create a BMC dump due to dumps being disabled on this system.", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Dump.Create.Error.QuotaExceeded": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Data Management", + "BMCMessageID": "xyz.openbmc_project.Dump.Create.Error.QuotaExceeded", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPDM0001M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "There is no more space available for dump files. Please delete some.", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Host.Error.Checkstop": { + "AffectedLEDs": null, + "AffectedSubsystem": "Canister/Appliance", + "BMCMessageID": "xyz.openbmc_project.Host.Error.Checkstop", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPAA0007G", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "A system checkstop occurred", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Host.Error.WatchdogTimedOut": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.Host.Error.WatchdogTimedOut", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0023M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Hostboot has become unresponsive", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system": { + "AffectedLEDs": null, + "AffectedSubsystem": "Canister/Appliance", + "BMCMessageID": "xyz.openbmc_project.Host.Event.Error.Event", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPAA0008M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Hostboot procedure callout", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core10": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core11": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core12": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core13": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core14": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core15": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core16": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core17": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core18": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core19": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core2": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core20": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core21": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core22": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core23": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core3": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core4": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core5": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core6": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core7": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core8": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core9": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core10": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core11": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core12": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core13": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core14": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core15": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core16": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core17": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core18": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core19": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core2": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core20": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core21": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core22": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core23": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core3": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core4": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core5": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core6": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core7": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core8": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core9": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm10": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm11": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm12": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm13": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm14": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm15": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm2": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm3": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm4": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm5": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm6": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm7": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm8": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Host.Event.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm9": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Host.Event.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 + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard": { + "AffectedLEDs": null, + "AffectedSubsystem": "System Board", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPSB0001M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The system backplane has encountered a critical failure.", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0088M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "0,0", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 0 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "0,1", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 1 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core10": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "0,10", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 10 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core10", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core11": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "0,11", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 11 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core11", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core12": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "0,12", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 12 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core12", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core13": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "0,13", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 13 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core13", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core14": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "0,14", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 14 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core14", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core15": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "0,15", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 15 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core15", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core16": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "0,16", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 16 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core16", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core17": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "0,17", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 17 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core17", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core18": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "0,18", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 18 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core18", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core19": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "0,19", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 19 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core19", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core2": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "0,2", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 2 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core2", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core20": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "0,20", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 20 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core20", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core21": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "0,21", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 21 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core21", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core22": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "0,22", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 22 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core22", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core23": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "0,23", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 23 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core23", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core3": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "0,3", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 3 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core3", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core4": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "0,4", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 4 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core4", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core5": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "0,5", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 5 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core5", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core6": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "0,6", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 6 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core6", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core7": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "0,7", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 7 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core7", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core8": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "0,8", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 8 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core8", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core9": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "0,9", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 9 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core9", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0088M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "1,0", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 0 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "1,1", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 1 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core10": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "1,10", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 10 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core10", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core11": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "1,11", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 11 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core11", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core12": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "1,12", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 12 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core12", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core13": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "1,13", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 13 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core13", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core14": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "1,14", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 14 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core14", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core15": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "1,15", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 15 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core15", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core16": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "1,16", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 16 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core16", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core17": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "1,17", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 17 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core17", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core18": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "1,18", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 18 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core18", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core19": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "1,19", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 19 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core19", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core2": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "1,2", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 2 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core2", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core20": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "1,20", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 20 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core20", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core21": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "1,21", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 21 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core21", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core22": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "1,22", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 22 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core22", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core23": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "1,23", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 23 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core23", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core3": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "1,3", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 3 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core3", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core4": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "1,4", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 4 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core4", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core5": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "1,5", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 5 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core5", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core6": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "1,6", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 6 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core6", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core7": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "1,7", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 7 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core7", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core8": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "1,8", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 8 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core8", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core9": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0089M", + "ComponentInstance": "1,9", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 9 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core9", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPMA0056M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 0 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPMA0056M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 1 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm10": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPMA0056M", + "ComponentInstance": 10, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 10 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm10", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm11": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPMA0056M", + "ComponentInstance": 11, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 11 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm11", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm12": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPMA0056M", + "ComponentInstance": 12, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 12 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm12", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm13": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPMA0056M", + "ComponentInstance": 13, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 13 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm13", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm14": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPMA0056M", + "ComponentInstance": 14, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 14 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm14", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm15": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPMA0056M", + "ComponentInstance": 15, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 15 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm15", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm2": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPMA0056M", + "ComponentInstance": 2, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 2 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm2", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm3": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPMA0056M", + "ComponentInstance": 3, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 3 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm3", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm4": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPMA0056M", + "ComponentInstance": 4, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 4 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm4", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm5": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPMA0056M", + "ComponentInstance": 5, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 5 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm5", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm6": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPMA0056M", + "ComponentInstance": 6, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 6 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm6", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm7": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPMA0056M", + "ComponentInstance": 7, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 7 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm7", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm8": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPMA0056M", + "ComponentInstance": 8, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 8 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm8", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm9": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPMA0056M", + "ComponentInstance": 9, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 9 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm9", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/fan0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPCA0056M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Fan 0 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/fan1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPCA0056M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Fan 1 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/fan2": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPCA0056M", + "ComponentInstance": 2, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Fan 2 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan2", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/motherboard/fan3": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPCA0056M", + "ComponentInstance": 3, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Fan 3 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan3", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/power_supply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0022M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power Supply 0 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/power_supply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.Nonfunctional||/xyz/openbmc_project/inventory/system/chassis/power_supply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.Nonfunctional", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0022M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power Supply 1 is not functional", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/power_supply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard": { + "AffectedLEDs": null, + "AffectedSubsystem": "System Board", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPSB0012M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The system backplane could not be detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0085M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "0,0", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 0 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "0,1", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 1 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core10": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "0,10", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 10 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core10", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core11": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "0,11", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 11 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core11", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core12": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "0,12", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 12 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core12", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core13": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "0,13", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 13 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core13", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core14": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "0,14", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 14 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core14", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core15": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "0,15", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 15 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core15", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core16": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "0,16", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 16 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core16", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core17": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "0,17", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 17 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core17", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core18": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "0,18", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 18 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core18", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core19": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "0,19", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 19 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core19", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core2": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "0,2", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 2 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core2", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core20": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "0,20", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 20 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core20", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core21": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "0,21", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 21 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core21", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core22": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "0,22", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 22 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core22", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core23": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "0,23", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 23 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core23", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core3": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "0,3", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 3 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core3", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core4": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "0,4", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 4 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core4", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core5": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "0,5", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 5 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core5", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core6": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "0,6", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 6 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core6", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core7": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "0,7", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 7 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core7", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core8": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "0,8", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 8 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core8", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core9": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "0,9", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 0 core 9 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core9", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0085M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "1,0", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 0 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "1,1", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 1 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core10": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "1,10", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 10 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core10", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core11": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "1,11", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 11 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core11", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core12": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "1,12", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 12 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core12", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core13": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "1,13", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 13 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core13", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core14": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "1,14", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 14 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core14", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core15": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "1,15", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 15 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core15", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core16": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "1,16", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 16 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core16", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core17": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "1,17", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 17 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core17", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core18": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "1,18", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 18 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core18", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core19": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "1,19", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 19 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core19", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core2": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "1,2", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 2 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core2", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core20": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "1,20", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 20 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core20", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core21": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "1,21", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 21 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core21", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core22": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "1,22", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 22 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core22", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core23": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "1,23", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 23 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core23", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core3": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "1,3", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 3 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core3", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core4": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "1,4", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 4 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core4", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core5": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "1,5", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 5 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core5", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core6": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "1,6", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 6 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core6", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core7": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "1,7", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 7 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core7", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core8": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "1,8", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 8 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core8", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core9": { + "AffectedLEDs": null, + "AffectedSubsystem": "Processing", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPU0087M", + "ComponentInstance": "1,9", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "CPU 1 core 9 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core9", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPMA0055M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 0 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPMA0055M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 1 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm10": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPMA0055M", + "ComponentInstance": 10, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 10 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm10", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm11": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPMA0055M", + "ComponentInstance": 11, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 11 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm11", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm12": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPMA0055M", + "ComponentInstance": 12, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 12 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm12", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm13": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPMA0055M", + "ComponentInstance": 13, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 13 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm13", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm14": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPMA0055M", + "ComponentInstance": 14, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 14 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm14", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm15": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPMA0055M", + "ComponentInstance": 15, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 15 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm15", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm2": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPMA0055M", + "ComponentInstance": 2, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 2 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm2", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm3": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPMA0055M", + "ComponentInstance": 3, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 3 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm3", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm4": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPMA0055M", + "ComponentInstance": 4, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 4 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm4", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm5": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPMA0055M", + "ComponentInstance": 5, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 5 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm5", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm6": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPMA0055M", + "ComponentInstance": 6, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 6 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm6", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm7": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPMA0055M", + "ComponentInstance": 7, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 7 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm7", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm8": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPMA0055M", + "ComponentInstance": 8, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 8 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm8", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm9": { + "AffectedLEDs": null, + "AffectedSubsystem": "Memory", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPMA0055M", + "ComponentInstance": 9, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "DIMM 9 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm9", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/fan0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0071M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Fan 0 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/fan1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0071M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Fan 1 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/fan2": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0071M", + "ComponentInstance": 2, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Fan 2 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan2", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/fan3": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0071M", + "ComponentInstance": 3, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Fan 3 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan3", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0015M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0015M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/power_supply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0015M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/power_supply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/power_supply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0015M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/power_supply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/powersupply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0015M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/powersupply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/powersupply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0015M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Uncorrectable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 has not been detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/powersupply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Led.Fru.Monitor.Error.InventoryPathError": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.Led.Fru.Monitor.Error.InventoryPathError", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0031G", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Internal error, unable to associate LED to inventory", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Led.Mapper.Error.MethodError": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.Led.Mapper.Error.MethodError", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0050F", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Internal method error with LED Mapper.", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": false, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Led.Mapper.Error.ObjectNotFoundError": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.Led.Mapper.Error.ObjectNotFoundError", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0051F", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Internal error. LED Mapper object not found.", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": false, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.GPUOverTemp||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.GPUOverTemp", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0066M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 0 suffered an over-temperature fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.GPUOverTemp||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.GPUOverTemp", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0066M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 1 suffered an over-temperature fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.GPUOverTemp||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu2": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.GPUOverTemp", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0066M", + "ComponentInstance": 2, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 2 suffered an over-temperature fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu2", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.GPUOverTemp||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu3": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.GPUOverTemp", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0066M", + "ComponentInstance": 3, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 3 suffered an over-temperature fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu3", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.GPUOverTemp||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu4": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.GPUOverTemp", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0066M", + "ComponentInstance": 4, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 4 suffered an over-temperature fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu4", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.GPUOverTemp||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu5": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.GPUOverTemp", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0066M", + "ComponentInstance": 5, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 5 suffered an over-temperature fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu5", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerOnFailure": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerOnFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0038F", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The system power failed to turn on", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": false, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSequencerFault": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSequencerFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0041M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSequencerPGOODFault||GPU_PGOOD": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSequencerPGOODFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0045M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a GPU_PGOOD fault", + "ReferencedInventory": "GPU_PGOOD", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSequencerPGOODFault||MEM_GOOD0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSequencerPGOODFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0043M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a MEM_GOOD0 fault", + "ReferencedInventory": "MEM_GOOD0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSequencerPGOODFault||MEM_GOOD1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSequencerPGOODFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0044M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a MEM_GOOD1 fault", + "ReferencedInventory": "MEM_GOOD1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSequencerPGOODFault||PGOOD_5P0V": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSequencerPGOODFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0042M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a PGOOD_5P0V fault", + "ReferencedInventory": "PGOOD_5P0V", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSequencerPGOODFault||TH_OVERT": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSequencerPGOODFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0046M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a TH_OVERT fault", + "ReferencedInventory": "TH_OVERT", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault||0.9V": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0053M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on 0.9V rail.", + "ReferencedInventory": "0.9V", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault||1.0V": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0052M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on 1.0V rail.", + "ReferencedInventory": "1.0V", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault||1.1V": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0051M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on 1.1V rail.", + "ReferencedInventory": "1.1V", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault||1.8V": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0050M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on 1.8V rail.", + "ReferencedInventory": "1.8V", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault||12.0V": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0048M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on 12.0V rail.", + "ReferencedInventory": "12.0V", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault||3.3V": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0049M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on 3.3V rail.", + "ReferencedInventory": "3.3V", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault||5.0VCS": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0047M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on 5.0VCS rail.", + "ReferencedInventory": "5.0VCS", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault||AVDD": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0056M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on AVDD rail.", + "ReferencedInventory": "AVDD", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault||VCS-A": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0061M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on VCS-A rail.", + "ReferencedInventory": "VCS-A", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault||VCS-B": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0062M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on VCS-B rail.", + "ReferencedInventory": "VCS-B", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault||VDD-A": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0059M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on VDD-A rail.", + "ReferencedInventory": "VDD-A", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault||VDD-B": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0060M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on VDD-B rail.", + "ReferencedInventory": "VDD-B", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault||VDN-A": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0054M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on VDN-A rail.", + "ReferencedInventory": "VDN-A", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault||VDN-B": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0055M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on VDN-B rail.", + "ReferencedInventory": "VDN-B", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault||VIO-A": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0057M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on VIO-A rail.", + "ReferencedInventory": "VIO-A", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault||VIO-B": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSequencerVoltageFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0058M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The power sequencer chip detected a fault on VIO-B rail.", + "ReferencedInventory": "VIO-B", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSupplyFanFault||/system/chassis/power_supply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSupplyFanFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPCA0064M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 fan has failed", + "ReferencedInventory": "/system/chassis/power_supply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSupplyInputFault||/system/chassis/power_supply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSupplyInputFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0033M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 input fault detected", + "ReferencedInventory": "/system/chassis/power_supply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSupplyInputFault||/system/chassis/power_supply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSupplyInputFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0033M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 input fault detected", + "ReferencedInventory": "/system/chassis/power_supply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSupplyOutputOvercurrent||/system/chassis/power_supply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSupplyOutputOvercurrent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0035M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 output current is too high", + "ReferencedInventory": "/system/chassis/power_supply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSupplyOutputOvercurrent||/system/chassis/power_supply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSupplyOutputOvercurrent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0035M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 output current is too high", + "ReferencedInventory": "/system/chassis/power_supply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSupplyOutputOvervoltage||/system/chassis/power_supply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSupplyOutputOvervoltage", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0036M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 output voltage is too high", + "ReferencedInventory": "/system/chassis/power_supply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSupplyOutputOvervoltage||/system/chassis/power_supply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSupplyOutputOvervoltage", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0036M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 output voltage is too high", + "ReferencedInventory": "/system/chassis/power_supply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSupplyShouldBeOn||/system/chassis/power_supply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSupplyShouldBeOn", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0034M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 has failed to power on when it needed to", + "ReferencedInventory": "/system/chassis/power_supply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSupplyShouldBeOn||/system/chassis/power_supply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSupplyShouldBeOn", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0034M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 has failed to power on", + "ReferencedInventory": "/system/chassis/power_supply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSupplyTemperatureFault||/system/chassis/power_supply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSupplyTemperatureFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0065M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 is too hot", + "ReferencedInventory": "/system/chassis/power_supply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSupplyTemperatureFault||/system/chassis/power_supply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSupplyTemperatureFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0065M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 is too hot", + "ReferencedInventory": "/system/chassis/power_supply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSupplyUnderVoltageFault||/system/chassis/power_supply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSupplyUnderVoltageFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0009M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 input voltage out of range", + "ReferencedInventory": "/system/chassis/power_supply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.PowerSupplyUnderVoltageFault||/system/chassis/power_supply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.PowerSupplyUnderVoltageFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0009M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 input voltage out of range", + "ReferencedInventory": "/system/chassis/power_supply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.Shutdown||/system/chassis/power_supply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.Shutdown", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0037M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 has initiated a power off due to a failure", + "ReferencedInventory": "/system/chassis/power_supply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Error.Shutdown||/system/chassis/power_supply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Error.Shutdown", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0037M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 has initiated a power off due to a failure", + "ReferencedInventory": "/system/chassis/power_supply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.GPUOverTemp||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.GPUOverTemp", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0066M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 0 suffered an over-temperature fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.GPUOverTemp||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.GPUOverTemp", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0066M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 1 suffered an over-temperature fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.GPUOverTemp||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu2": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.GPUOverTemp", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0066M", + "ComponentInstance": 2, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 2 suffered an over-temperature fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu2", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.GPUOverTemp||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu3": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.GPUOverTemp", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0066M", + "ComponentInstance": 3, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 3 suffered an over-temperature fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu3", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.GPUOverTemp||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu4": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.GPUOverTemp", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0066M", + "ComponentInstance": 4, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 4 suffered an over-temperature fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu4", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.GPUOverTemp||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu5": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.GPUOverTemp", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0066M", + "ComponentInstance": 5, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 5 suffered an over-temperature fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu5", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.GPUPowerFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.GPUPowerFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0038M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 0 suffered a power fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.GPUPowerFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.GPUPowerFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0038M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 1 suffered a power fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.GPUPowerFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu2": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.GPUPowerFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0038M", + "ComponentInstance": 2, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 2 suffered a power fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu2", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.GPUPowerFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu3": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.GPUPowerFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0038M", + "ComponentInstance": 3, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 3 suffered a power fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu3", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.GPUPowerFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu4": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.GPUPowerFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0038M", + "ComponentInstance": 4, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 4 suffered a power fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu4", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.GPUPowerFault||/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu5": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.GPUPowerFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0038M", + "ComponentInstance": 5, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "GPU 5 suffered a power fault", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/gpu5", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.PowerSupplyFanFault||/xyz/openbmc_project/inventory/system/chassis/power_supply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.PowerSupplyFanFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPCA0064M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 fan has failed", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/power_supply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.PowerSupplyFanFault||/xyz/openbmc_project/inventory/system/chassis/power_supply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.PowerSupplyFanFault", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPCA0064M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 fan has failed", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/power_supply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.PowerSupplyInputFault||/xyz/openbmc_project/inventory/system/chassis/power_supply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.PowerSupplyInputFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0033M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 input fault detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/power_supply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.PowerSupplyInputFault||/xyz/openbmc_project/inventory/system/chassis/power_supply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.PowerSupplyInputFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0033M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 input fault detected", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/power_supply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.PowerSupplyOutputOvercurrent||/xyz/openbmc_project/inventory/system/chassis/power_supply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.PowerSupplyOutputOvercurrent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0035M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 output current is too high", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/power_supply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.PowerSupplyOutputOvercurrent||/xyz/openbmc_project/inventory/system/chassis/power_supply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.PowerSupplyOutputOvercurrent", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0035M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 output current is too high", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/power_supply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.PowerSupplyOutputOvervoltage||/xyz/openbmc_project/inventory/system/chassis/power_supply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.PowerSupplyOutputOvervoltage", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0036M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 output voltage is too high", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/power_supply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.PowerSupplyOutputOvervoltage||/xyz/openbmc_project/inventory/system/chassis/power_supply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.PowerSupplyOutputOvervoltage", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0036M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 output voltage is too high", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/power_supply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.PowerSupplyShouldBeOn||/xyz/openbmc_project/inventory/system/chassis/power_supply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.PowerSupplyShouldBeOn", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0034M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 has failed to power on when it needed to", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/power_supply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.PowerSupplyShouldBeOn||/xyz/openbmc_project/inventory/system/chassis/power_supply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.PowerSupplyShouldBeOn", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0034M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 has failed to power on", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/power_supply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.PowerSupplyTemperatureFault||/xyz/openbmc_project/inventory/system/chassis/power_supply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.PowerSupplyTemperatureFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0065M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 is too hot", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/power_supply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.PowerSupplyTemperatureFault||/xyz/openbmc_project/inventory/system/chassis/power_supply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.PowerSupplyTemperatureFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0065M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 is too hot", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/power_supply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.PowerSupplyUnderVoltageFault||/xyz/openbmc_project/inventory/system/chassis/power_supply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.PowerSupplyUnderVoltageFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0009M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 input voltage out of range", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/power_supply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.PowerSupplyUnderVoltageFault||/xyz/openbmc_project/inventory/system/chassis/power_supply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.PowerSupplyUnderVoltageFault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0009M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 input voltage out of range", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/power_supply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Shutdown||/xyz/openbmc_project/inventory/system/chassis/power_supply0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Shutdown", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0037M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 0 has initiated a power off due to a failure", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/power_supply0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Power.Fault.Shutdown||/xyz/openbmc_project/inventory/system/chassis/power_supply1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Power.Fault.Shutdown", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPPW0037M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Power supply 1 has initiated a power off due to a failure", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/power_supply1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.SBE.SEEPROM.Error.ValidationFail": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Security", + "BMCMessageID": "xyz.openbmc_project.SBE.SEEPROM.Error.ValidationFail", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPSE0065M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Security", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Firmware security validation failed", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.SBE.SEEPROM.Error.ValidationPass": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Security", + "BMCMessageID": "xyz.openbmc_project.SBE.SEEPROM.Error.ValidationPass", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPSE0066I", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Security", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Firmware security validation passed", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": false, + "Severity": "Information", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@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 system backplane", + "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:bus@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:bus@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:bus@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 system backplane", + "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:bus@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 system backplane", + "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:bus@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 system backplane", + "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:bus@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 system backplane", + "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:bus@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 system backplane", + "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:bus@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 system backplane", + "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-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 system backplane", + "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 system backplane", + "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 system backplane", + "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 system backplane", + "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 system backplane", + "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 system backplane", + "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 system backplane", + "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", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0058M", + "ComponentInstance": "0,0", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read fan 0 rotor 0 speed", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan0_0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/fan_tach/fan0_1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0058M", + "ComponentInstance": "0,1", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read fan 0 rotor 1 speed", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan0_1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/fan_tach/fan1_0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0058M", + "ComponentInstance": "1,0", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read fan 1 rotor 0 speed", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan1_0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/fan_tach/fan1_1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0058M", + "ComponentInstance": "1,1", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read fan 1 rotor 1 speed", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan1_1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/fan_tach/fan2_0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0058M", + "ComponentInstance": "2,0", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read fan 2 rotor 0 speed", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan2_0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/fan_tach/fan2_1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0058M", + "ComponentInstance": "2,1", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read fan 2 rotor 1 speed", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan2_1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/fan_tach/fan3_0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0058M", + "ComponentInstance": "3,0", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read fan 3 rotor 0 speed", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan3_0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/fan_tach/fan3_1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0058M", + "ComponentInstance": "3,1", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read fan 3 rotor 1 speed", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan3_1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/ambient": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0059M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read ambient temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/ambient", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm0_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 0 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm0_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm10_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 10, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 10 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm10_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm11_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 11, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 11 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm11_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm12_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 12, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 12 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm12_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm13_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 13, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 13 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm13_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm14_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 14, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 14 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm14_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm15_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 15, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 15 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm15_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm1_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 1 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm1_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm2_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 2, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 2 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm2_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm3_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 3, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 3 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm3_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm4_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 4, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 4 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm4_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm5_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 5, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 5 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm5_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm6_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 6, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 6 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm6_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm7_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 7, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 7 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm7_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm8_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 8, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 8 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm8_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm9_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 9, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 9 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm9_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/gpu0_core_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0061M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read GPU 0 core temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/gpu0_core_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/gpu0_mem_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0061M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read GPU 0 memory temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/gpu0_mem_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/gpu1_core_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0061M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read GPU 1 core temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/gpu1_core_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/gpu1_mem_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0061M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read GPU 1 memory temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/gpu1_mem_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/gpu2_core_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0061M", + "ComponentInstance": 2, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read GPU 2 core temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/gpu2_core_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/gpu2_mem_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0061M", + "ComponentInstance": 2, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read GPU 2 memory temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/gpu2_mem_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/gpu3_core_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0061M", + "ComponentInstance": 3, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read GPU 3 core temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/gpu3_core_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/gpu3_mem_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0061M", + "ComponentInstance": 3, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read GPU 3 memory temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/gpu3_mem_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/gpu4_core_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0061M", + "ComponentInstance": 4, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read GPU 4 core temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/gpu4_core_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/gpu4_mem_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0061M", + "ComponentInstance": 4, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read GPU 4 memory temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/gpu4_mem_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/gpu5_core_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0061M", + "ComponentInstance": 5, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read GPU 5 core temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/gpu5_core_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/gpu5_mem_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0061M", + "ComponentInstance": 5, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read GPU 5 memory temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/gpu5_mem_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core0_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,0", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 0 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core0_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core10_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,10", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 10 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core10_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core11_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,11", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 11 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core11_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core12_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,12", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 12 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core12_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core13_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,13", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 13 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core13_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core14_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,14", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 14 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core14_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core15_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,15", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 15 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core15_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core16_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,16", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 16 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core16_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core17_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,17", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 17 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core17_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core18_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,18", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 18 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core18_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core19_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,19", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 19 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core19_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core1_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,1", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 1 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core1_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core20_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,20", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 20 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core20_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core21_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,21", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 21 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core21_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core22_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,22", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 22 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core22_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core23_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,23", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 23 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core23_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core2_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,2", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 2 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core2_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core3_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,3", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 3 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core3_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core4_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,4", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 4 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core4_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core5_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,5", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 5 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core5_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core6_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,6", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 6 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core6_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core7_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,7", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 7 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core7_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core8_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,8", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 8 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core8_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core9_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,9", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 9 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core9_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_vcs_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0063M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 VCS voltage regulator temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_vcs_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_vdd_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0063M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 VDD voltage regulator temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_vdd_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_vddr_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0063M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 VDDR voltage regulator temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_vddr_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_vdn_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0063M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 VDN voltage regulator temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_vdn_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core0_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,0", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 0 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core0_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core10_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,10", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 10 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core10_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core11_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,11", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 11 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core11_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core12_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,12", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 12 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core12_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core13_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,13", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 13 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core13_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core14_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,14", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 14 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core14_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core15_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,15", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 15 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core15_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core16_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,16", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 16 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core16_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core17_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,17", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 17 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core17_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core18_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,18", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 18 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core18_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core19_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,19", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 19 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core19_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core1_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,1", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 1 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core1_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core20_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,20", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 20 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core20_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core21_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,21", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 21 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core21_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core22_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,22", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 22 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core22_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core23_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,23", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 23 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core23_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core2_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,2", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 2 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core2_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core3_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,3", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 3 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core3_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core4_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,4", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 4 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core4_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core5_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,5", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 5 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core5_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core6_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,6", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 6 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core6_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core7_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,7", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 7 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core7_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core8_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,8", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 8 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core8_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core9_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,9", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 9 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core9_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_vcs_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0063M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 VCS voltage regulator temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_vcs_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_vdd_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0063M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 VDD voltage regulator temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_vdd_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_vddr_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0063M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 VDDR voltage regulator temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_vddr_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_vdn_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0063M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 VDN voltage regulator temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_vdn_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||I2C": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0024G", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Failed to read from I2C device", + "ReferencedInventory": "I2C", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.Error.WriteFailure||/sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@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 system backplane", + "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard", + "RelatedEventIDs": {}, + "Serviceable": false, + "Severity": "Warning", + "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 system backplane", + "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", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0023M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read the output current from power supply 0", + "ReferencedInventory": "/xyz/openbmc_project/sensors/current/ps0_output_current", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/current/ps1_output_current": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0023M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read the output current from power supply 1", + "ReferencedInventory": "/xyz/openbmc_project/sensors/current/ps1_output_current", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/fan_tach/fan0_0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0058M", + "ComponentInstance": "0,0", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read fan 0 rotor 0 speed", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan0_0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/fan_tach/fan0_1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0058M", + "ComponentInstance": "0,1", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read fan 0 rotor 1 speed", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan0_1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/fan_tach/fan1_0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0058M", + "ComponentInstance": "1,0", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read fan 1 rotor 0 speed", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan1_0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/fan_tach/fan1_1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0058M", + "ComponentInstance": "1,1", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read fan 1 rotor 1 speed", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan1_1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/fan_tach/fan2_0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0058M", + "ComponentInstance": "2,0", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read fan 2 rotor 0 speed", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan2_0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/fan_tach/fan2_1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0058M", + "ComponentInstance": "2,1", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read fan 2 rotor 1 speed", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan2_1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/fan_tach/fan3_0": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0058M", + "ComponentInstance": "3,0", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read fan 3 rotor 0 speed", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan3_0", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/fan_tach/fan3_1": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0058M", + "ComponentInstance": "3,1", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read fan 3 rotor 1 speed", + "ReferencedInventory": "/xyz/openbmc_project/sensors/fan_tach/fan3_1", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/power/p0_gpu0_power": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0024M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read GPU 0 power", + "ReferencedInventory": "/xyz/openbmc_project/sensors/power/p0_gpu0_power", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/power/p0_gpu1_power": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0024M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read GPU 1 power", + "ReferencedInventory": "/xyz/openbmc_project/sensors/power/p0_gpu1_power", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/power/p0_gpu2_power": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0024M", + "ComponentInstance": 2, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read GPU 2 power", + "ReferencedInventory": "/xyz/openbmc_project/sensors/power/p0_gpu2_power", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/power/p0_io_power": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0025M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 I/O power", + "ReferencedInventory": "/xyz/openbmc_project/sensors/power/p0_io_power", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/power/p0_mem_power": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0026M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 memory power", + "ReferencedInventory": "/xyz/openbmc_project/sensors/power/p0_mem_power", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/power/p0_power": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0027M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 power", + "ReferencedInventory": "/xyz/openbmc_project/sensors/power/p0_power", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/power/p1_gpu0_power": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0024M", + "ComponentInstance": 3, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read GPU 3 power", + "ReferencedInventory": "/xyz/openbmc_project/sensors/power/p1_gpu0_power", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/power/p1_gpu1_power": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0024M", + "ComponentInstance": 4, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read GPU 4 power", + "ReferencedInventory": "/xyz/openbmc_project/sensors/power/p1_gpu1_power", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/power/p1_gpu2_power": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0024M", + "ComponentInstance": 5, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read GPU 5 power", + "ReferencedInventory": "/xyz/openbmc_project/sensors/power/p1_gpu2_power", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/power/p1_io_power": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0025M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 I/O power", + "ReferencedInventory": "/xyz/openbmc_project/sensors/power/p1_io_power", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/power/p1_mem_power": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0026M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 memory power", + "ReferencedInventory": "/xyz/openbmc_project/sensors/power/p1_mem_power", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/power/p1_power": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0027M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 power", + "ReferencedInventory": "/xyz/openbmc_project/sensors/power/p1_power", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/power/ps0_input_power": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0028M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read power supply 0 input power", + "ReferencedInventory": "/xyz/openbmc_project/sensors/power/ps0_input_power", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/power/ps1_input_power": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0028M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read power supply 1 input power", + "ReferencedInventory": "/xyz/openbmc_project/sensors/power/ps1_input_power", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/power/storage_a_power": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0029M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read storage 0 power", + "ReferencedInventory": "/xyz/openbmc_project/sensors/power/storage_a_power", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/power/storage_b_power": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0029M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read storage 1 power", + "ReferencedInventory": "/xyz/openbmc_project/sensors/power/storage_b_power", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/power/total_power": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0030M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read total power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/power/total_power", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/ambient": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0059M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read ambient temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/ambient", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm0_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 0 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm0_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm10_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 10, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 10 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm10_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm11_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 11, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 11 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm11_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm12_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 12, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 12 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm12_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm13_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 13, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 13 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm13_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm14_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 14, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 14 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm14_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm15_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 15, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 15 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm15_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm1_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 1 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm1_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm2_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 2, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 2 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm2_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm3_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 3, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 3 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm3_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm4_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 4, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 4 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm4_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm5_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 5, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 5 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm5_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm6_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 6, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 6 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm6_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm7_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 7, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 7 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm7_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm8_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 8, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 8 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm8_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/dimm9_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0060M", + "ComponentInstance": 9, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read DIMM 9 power consumption", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/dimm9_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/gpu0_core_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0061M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read GPU 0 core temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/gpu0_core_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/gpu0_mem_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0061M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read GPU 0 memory temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/gpu0_mem_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/gpu1_core_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0061M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read GPU 1 core temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/gpu1_core_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/gpu1_mem_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0061M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read GPU 1 memory temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/gpu1_mem_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/gpu2_core_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0061M", + "ComponentInstance": 2, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read GPU 2 core temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/gpu2_core_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/gpu2_mem_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0061M", + "ComponentInstance": 2, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read GPU 2 memory temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/gpu2_mem_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/gpu3_core_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0061M", + "ComponentInstance": 3, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read GPU 3 core temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/gpu3_core_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/gpu3_mem_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0061M", + "ComponentInstance": 3, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read GPU 3 memory temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/gpu3_mem_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/gpu4_core_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0061M", + "ComponentInstance": 4, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read GPU 4 core temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/gpu4_core_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/gpu4_mem_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0061M", + "ComponentInstance": 4, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read GPU 4 memory temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/gpu4_mem_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/gpu5_core_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0061M", + "ComponentInstance": 5, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read GPU 5 core temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/gpu5_core_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/gpu5_mem_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0061M", + "ComponentInstance": 5, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read GPU 5 memory temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/gpu5_mem_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core0_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,0", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 0 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core0_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core10_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,10", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 10 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core10_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core11_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,11", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 11 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core11_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core12_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,12", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 12 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core12_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core13_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,13", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 13 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core13_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core14_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,14", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 14 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core14_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core15_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,15", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 15 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core15_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core16_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,16", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 16 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core16_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core17_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,17", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 17 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core17_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core18_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,18", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 18 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core18_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core19_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,19", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 19 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core19_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core1_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,1", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 1 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core1_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core20_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,20", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 20 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core20_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core21_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,21", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 21 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core21_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core22_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,22", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 22 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core22_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core23_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,23", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 23 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core23_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core2_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,2", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 2 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core2_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core3_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,3", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 3 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core3_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core4_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,4", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 4 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core4_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core5_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,5", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 5 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core5_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core6_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,6", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 6 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core6_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core7_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,7", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 7 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core7_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core8_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,8", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 8 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core8_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_core9_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "0,9", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 core 9 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_core9_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_vcs_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0063M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 VCS voltage regulator temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_vcs_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_vdd_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0063M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 VDD voltage regulator temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_vdd_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_vddr_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0063M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 VDDR voltage regulator temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_vddr_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p0_vdn_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0063M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 0 VDN voltage regulator temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p0_vdn_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core0_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,0", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 0 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core0_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core10_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,10", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 10 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core10_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core11_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,11", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 11 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core11_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core12_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,12", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 12 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core12_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core13_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,13", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 13 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core13_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core14_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,14", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 14 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core14_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core15_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,15", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 15 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core15_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core16_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,16", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 16 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core16_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core17_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,17", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 17 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core17_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core18_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,18", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 18 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core18_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core19_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,19", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 19 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core19_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core1_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,1", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 1 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core1_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core20_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,20", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 20 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core20_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core21_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,21", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 21 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core21_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core22_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,22", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 22 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core22_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core23_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,23", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 23 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core23_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core2_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,2", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 2 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core2_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core3_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,3", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 3 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core3_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core4_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,4", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 4 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core4_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core5_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,5", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 5 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core5_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core6_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,6", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 6 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core6_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core7_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,7", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 7 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core7_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core8_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,8", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 8 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core8_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_core9_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0062M", + "ComponentInstance": "1,9", + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 core 9 temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_core9_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_vcs_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0063M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 VCS voltage regulator temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_vcs_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_vdd_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0063M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 VDD voltage regulator temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_vdd_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_vddr_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0063M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 VDDR voltage regulator temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_vddr_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/temperature/p1_vdn_temp": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0063M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read CPU 1 VDN voltage regulator temperature", + "ReferencedInventory": "/xyz/openbmc_project/sensors/temperature/p1_vdn_temp", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/voltage/ps0_input_voltage": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0031M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read power supply 0 input voltage", + "ReferencedInventory": "/xyz/openbmc_project/sensors/voltage/ps0_input_voltage", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/voltage/ps0_output_voltage": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0032M", + "ComponentInstance": 0, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read power supply 0 output voltage", + "ReferencedInventory": "/xyz/openbmc_project/sensors/voltage/ps0_output_voltage", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/voltage/ps1_input_voltage": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0031M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read power supply 1 input voltage", + "ReferencedInventory": "/xyz/openbmc_project/sensors/voltage/ps1_input_voltage", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/voltage/ps1_output_voltage": { + "AffectedLEDs": null, + "AffectedSubsystem": "Power", + "BMCMessageID": "xyz.openbmc_project.Sensor.Device.ReadFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPPW0032M", + "ComponentInstance": 1, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Communication Failure/Timeout", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read power supply 1 output voltage", + "ReferencedInventory": "/xyz/openbmc_project/sensors/voltage/ps1_output_voltage", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Sensor.Threshold.Error.CriticalHigh||temperature": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.Sensor.Threshold.Error.CriticalHigh", + "CallHomeCandidate": true, + "CommonEventID": "FQPSPCA0072M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Three or more CPU cores have gone over temperature, initiating a thermal shutdown.", + "ReferencedInventory": "temperature", + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Software.Image.Error.InternalFailure": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.Software.Image.Error.InternalFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0027G", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to process the image provided", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Software.Image.Error.ManifestFileFailure": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.Software.Image.Error.ManifestFileFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0025G", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read the manifest file", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Software.Image.Error.UnTarFailure": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.Software.Image.Error.UnTarFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0026G", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to decompress the tar file", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Software.Version.Error.Incompatible": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.Software.Version.Error.Incompatible", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0067M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Not Valid", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The PNOR and BMC code levels are not compatible and the system will not boot", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Software.Version.Error.InternalFailure": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.Software.Version.Error.InternalFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0027G", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to process the image provided", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Software.Version.Error.ManifestFileFailure": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.Software.Version.Error.ManifestFileFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0025G", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to read the manifest file", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.Software.Version.Error.UnTarFailure": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.Software.Version.Error.UnTarFailure", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0026G", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Unable to decompress the tar file", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.State.Host.Error.SoftOffTimeout": { + "AffectedLEDs": null, + "AffectedSubsystem": "Host Operating System", + "BMCMessageID": "xyz.openbmc_project.State.Host.Error.SoftOffTimeout", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPOS0000G", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The soft power off of the host has timed out", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.State.Host.SoftOffTimeout": { + "AffectedLEDs": null, + "AffectedSubsystem": "Host Operating System", + "BMCMessageID": "xyz.openbmc_project.State.Host.SoftOffTimeout", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPOS0000G", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The soft power off of the host has timed out", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.State.Shutdown.Inventory.Error.Fan": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.State.Shutdown.Inventory.Error.Fan", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0067F", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Unrecoverable Hardware Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The system shut down due to not having enough functional fans.", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": false, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.State.Shutdown.Power.Error.Fault": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.State.Shutdown.Power.Error.Fault", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0068F", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The system was shut down due to a power fault being detected.", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": false, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.State.Shutdown.ThermalEvent.Error.GPU": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.State.Shutdown.ThermalEvent.Error.GPU", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0070F", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The system was shut down due to a GPU going over temperature", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": false, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.State.Shutdown.ThermalEvent.Error.Processor": { + "AffectedLEDs": null, + "AffectedSubsystem": "Cooling", + "BMCMessageID": "xyz.openbmc_project.State.Shutdown.ThermalEvent.Error.Processor", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCA0069F", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Environmental", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The system was shut down due to a processor going over temperature", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": false, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.User.Common.Error.NoResource": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.User.Common.Error.NoResource", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0073G", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "Insufficient resources to modify users", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.User.Common.Error.PrivilegeMappingExists": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.User.Common.Error.PrivilegeMappingExists", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0068G", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The specified user privileges already exist", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.User.Common.Error.UserNameDoesNotExist": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.User.Common.Error.UserNameDoesNotExist", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0070G", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The specified user name does not exist", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.User.Common.Error.UserNameExists": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.User.Common.Error.UserNameExists", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0069G", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The specified user name already exists", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.User.Common.Error.UserNameGroupFail": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.User.Common.Error.UserNameGroupFail", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0071G", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The specified user name cannot be assigned to the specified group", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.openbmc_project.User.Common.Error.UserNamePrivFail": { + "AffectedLEDs": null, + "AffectedSubsystem": "Systems Management - Core / Virtual Appliance", + "BMCMessageID": "xyz.openbmc_project.User.Common.Error.UserNamePrivFail", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPCR0072G", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The specified user does not have sufficient privileges", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Warning", + "UserAction": null, + "VMMigrationFlag": null + }, + "xyz.opnbmc_project.State.Host.Error.SoftOffTimeout": { + "AffectedLEDs": null, + "AffectedSubsystem": "Canister/Appliance", + "BMCMessageID": "xyz.opnbmc_project.State.Host.Error.SoftOffTimeout", + "CallHomeCandidate": false, + "CommonEventID": "FQPSPAA0010M", + "ComponentInstance": null, + "DateAdded": null, + "DateReviewed": null, + "EventType": "Firmware/Software Failure", + "Internal": false, + "LengthyDescription": null, + "LogSource": "BMC", + "Message": "The host did not shutdown within the configured time", + "ReferencedInventory": null, + "RelatedEventIDs": {}, + "Serviceable": true, + "Severity": "Critical", + "UserAction": null, + "VMMigrationFlag": null + } + }, + "fileInfo": { + "Entity": "IBM OpenBMC", + "Version": "1.8.3", + "language": "English" + } +} diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/logging/ibm-logging_%.bbappend b/meta-ibm/meta-witherspoon/recipes-phosphor/logging/ibm-logging_%.bbappend index 9b7806995..e5e6f57ee 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/logging/ibm-logging_%.bbappend +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/logging/ibm-logging_%.bbappend @@ -1,2 +1,3 @@ FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" PACKAGECONFIG_append_ibm-ac-server = " policy-interface" +PACKAGECONFIG_append_mihawk = " policy-interface" diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/logging/mihawk-phosphor-logging-callouts-native.bb b/meta-ibm/meta-witherspoon/recipes-phosphor/logging/mihawk-phosphor-logging-callouts-native.bb new file mode 100644 index 000000000..dcd902b1b --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/logging/mihawk-phosphor-logging-callouts-native.bb @@ -0,0 +1,20 @@ +SUMMARY = "Mihawk inventory map for phosphor-ipmi-host" +PR = "r1" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" + +inherit native +inherit phosphor-logging + +SRC_URI += "file://callouts.yaml" + +PROVIDES += "virtual/phosphor-logging-callouts" + +S = "${WORKDIR}" + +do_install() { + DEST=${D}${callouts_datadir} + install -d ${DEST} + install callouts.yaml ${DEST} +} + diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/logging/mihawk-phosphor-logging-callouts/callouts.yaml b/meta-ibm/meta-witherspoon/recipes-phosphor/logging/mihawk-phosphor-logging-callouts/callouts.yaml new file mode 100755 index 000000000..4fd506047 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/logging/mihawk-phosphor-logging-callouts/callouts.yaml @@ -0,0 +1,3 @@ +/sys/devices/platform/gpio-fsi/fsi0/slave@00:00/raw: /system/chassis/motherboard/cpu0 +/sys/devices/platform/gpio-fsi/fsi0/slave@00:00/00:00:00:0a/fsi1/slave@01:00/raw: /system/chassis/motherboard/cpu1 + diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/mboxd/mboxd_%.bbappend b/meta-ibm/meta-witherspoon/recipes-phosphor/mboxd/mboxd_%.bbappend index 69c9d1d54..589405e6c 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/mboxd/mboxd_%.bbappend +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/mboxd/mboxd_%.bbappend @@ -1,4 +1,5 @@ MBOXD_FLASH_SIZE_ibm-ac-server = "64M" +MBOXD_FLASH_SIZE_mihawk = "64M" FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/packagegroups/packagegroup-obmc-apps.bbappend b/meta-ibm/meta-witherspoon/recipes-phosphor/packagegroups/packagegroup-obmc-apps.bbappend index 386c1e6ec..b2e466d76 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/packagegroups/packagegroup-obmc-apps.bbappend +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/packagegroups/packagegroup-obmc-apps.bbappend @@ -1,5 +1,7 @@ RDEPENDS_${PN}-inventory_append_ibm-ac-server = " openpower-fru-vpd openpower-occ-control phosphor-cooling-type virtual/obmc-gpio-presence" +RDEPENDS_${PN}-inventory_append_mihawk = " openpower-fru-vpd openpower-occ-control virtual/obmc-gpio-presence id-button" RDEPENDS_${PN}-fan-control_append_ibm-ac-server = " witherspoon-fan-watchdog" RDEPENDS_${PN}-extras_append_ibm-ac-server = " witherspoon-pfault-analysis witherspoon-power-supply-sync phosphor-webui" +RDEPENDS_${PN}-extras_append_mihawk = " phosphor-webui phosphor-image-signing" ${PN}-software-extras_append_ibm-ac-server = " phosphor-software-manager-sync" diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/settings/phosphor-settings-manager_%.bbappend b/meta-ibm/meta-witherspoon/recipes-phosphor/settings/phosphor-settings-manager_%.bbappend index 99f7ffdef..45c836cda 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/settings/phosphor-settings-manager_%.bbappend +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/settings/phosphor-settings-manager_%.bbappend @@ -1,2 +1,3 @@ FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" SRC_URI_append_ibm-ac-server = " file://TPMEnable-default-true.override.yml" +SRC_URI_append_mihawk = " file://TPMEnable-default-true.override.yml" diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/skeleton/obmc-libobmc-intf/mihawk/gpio_defs.json b/meta-ibm/meta-witherspoon/recipes-phosphor/skeleton/obmc-libobmc-intf/mihawk/gpio_defs.json new file mode 100644 index 000000000..388ae6832 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/skeleton/obmc-libobmc-intf/mihawk/gpio_defs.json @@ -0,0 +1,74 @@ +{ + "gpio_configs": { + + "power_config": { + "power_good_in": "SYS_PWROK_BUFF", + "power_up_outs": [ + {"name": "SOFTWARE_PGOOD", "polarity": true}, + {"name": "BMC_POWER_UP", "polarity": true} + ], + "reset_outs": [ + {"name": "BMC_CP0_RESET_N", "polarity": false} + ] + } + }, + + "gpio_definitions": [ + { + "name": "BMC_POWER_UP", + "pin": "D1", + "direction": "out" + }, + { + "name": "SOFTWARE_PGOOD", + "pin": "R1", + "direction": "out" + }, + { + "name": "SYS_PWROK_BUFF", + "pin": "D2", + "direction": "in" + }, + { + "name": "CHECKSTOP", + "pin": "J2", + "direction": "falling" + }, + { + "name": "BMC_CP0_RESET_N", + "pin": "A1", + "direction": "out" + }, + { + "name": "BMC_VS0_PERST_N", + "pin": "B6", + "direction": "out" + }, + { + "name": "BMC_VS1_PERST_N", + "pin": "B7", + "direction": "out" + }, + { + "name": "BMC_CP0_PERST_ENABLE_R", + "pin": "A3", + "direction": "out" + }, + { + "name": "IDBTN", + "pin": "F1", + "direction": "both" + }, + { + "name": "POWER_BUTTON", + "pin": "I3", + "direction": "both" + }, + { + "name": "RESET_BUTTON", + "pin": "J1", + "direction": "both" + } + ] +} + -- cgit v1.2.3 From cc4ea72ddbce2ab87740aa4efab05d23e08dd8ee Mon Sep 17 00:00:00 2001 From: Matt Spinler Date: Wed, 31 Jul 2019 16:32:52 -0500 Subject: wspoon-128: Enable the OpenPower PEL extension This extension will (when it's complete) create IBM's Platform Event Logs (PELs) for every OpenBMC event log, as well as provide features to exchange them with the host, package them for Redfish, etc. (From meta-ibm rev: 625fc419ae882dd572a1045bdca3286b896a69fe) Change-Id: Ia215ce221ac58037c0f8029362181dde8a94d42e Signed-off-by: Matt Spinler Signed-off-by: Brad Bishop --- .../recipes-phosphor/logging/phosphor-logging_%.bbappend | 1 + 1 file changed, 1 insertion(+) create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/logging/phosphor-logging_%.bbappend (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/logging/phosphor-logging_%.bbappend b/meta-ibm/meta-witherspoon/recipes-phosphor/logging/phosphor-logging_%.bbappend new file mode 100644 index 000000000..5e2dc6c20 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/logging/phosphor-logging_%.bbappend @@ -0,0 +1 @@ +PACKAGECONFIG_append_witherspoon-128 = " openpower-pels" -- cgit v1.2.3 From 537361a6a33b26796e09d2a374be2d955c12177a Mon Sep 17 00:00:00 2001 From: Andrew Geissler Date: Wed, 14 Aug 2019 09:16:41 -0500 Subject: witherspoon: Bump MRW version Pick up new IPMI clear sensor (From meta-ibm rev: 033ecca0a4321aba8000fd289c43aa38721255b2) Change-Id: I5c42bad754157bcae47463a1e8d6c0d1993e45d8 Signed-off-by: Andrew Geissler Signed-off-by: Brad Bishop --- meta-ibm/meta-witherspoon/conf/machine/witherspoon.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/conf/machine/witherspoon.conf b/meta-ibm/meta-witherspoon/conf/machine/witherspoon.conf index 3f7aedcb9..20f515907 100644 --- a/meta-ibm/meta-witherspoon/conf/machine/witherspoon.conf +++ b/meta-ibm/meta-witherspoon/conf/machine/witherspoon.conf @@ -19,7 +19,7 @@ require conf/machine/include/p9.inc PHOSPHOR_MRW_LICENSE = "Apache-2.0" PHOSPHOR_MRW_LIC_FILES_CHKSUM = "file://LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e" PHOSPHOR_MRW_URI = "git://github.com/open-power/witherspoon-xml" -PHOSPHOR_MRW_REV = "e76c2fc5aeb512a0eb33438c239746de5b629885" +PHOSPHOR_MRW_REV = "c622cb5a5dd3ebc2a4eef558d1b70740f914e6f7" # Inhibit phosphor-hwmon-config-mrw VIRTUAL-RUNTIME_phosphor-hwmon-config_df-mrw = "" -- cgit v1.2.3 From fba5121cf3e2e40d2d44ac365ba1afc242f27b99 Mon Sep 17 00:00:00 2001 From: Ben_Pai Date: Mon, 5 Aug 2019 18:34:34 +0800 Subject: Add mihawk sensor, fan control and d-bus monitor Most of mihawk's sensors are different from witherspoon, so I temporarily added the mihawk part and did not change the witherspoon. Add mihawk version of fan control and d-bus monitor. Mihawk does not have a water cooled mode, so another independent folder is added. Tested: 1.Shut down the system if more than three cores have a temperature greater than 100 degrees Celcius. 2.Fan control support cpu core, dimm, Onboard. 3.Confirm that sensor is able to return normally via REST. (From meta-ibm rev: 949f91431bba2f0139cc823d674a741f9590c885) Signed-off-by: Ben Pai Signed-off-by: Brad Bishop Change-Id: Icc401f32c67b622f0f1448e1166112e02c135a8f Signed-off-by: Brad Bishop --- .../recipes-phosphor/dbus/fan-policy.bb | 11 +- .../dbus/fan-policy/mihawk/air-cooled.yaml | 339 ++++++++ .../dbus/fan-policy/mihawk/fan-errors.yaml | 905 +++++++++++++++++++++ .../dbus/phosphor-dbus-monitor-config.bbappend | 4 + .../dbus/phosphor-dbus-monitor_%.bbappend | 1 + .../recipes-phosphor/dbus/thermal-policy.bb | 2 +- .../ibm-ac-server/thermal-policy.yaml | 187 +++++ .../dbus/thermal-policy/mihawk/thermal-policy.yaml | 187 +++++ .../dbus/thermal-policy/thermal-policy.yaml | 187 ----- .../mihawk/events.yaml | 586 +++++++++++++ .../mihawk/fans.yaml | 31 + .../mihawk/zone_conditions.yaml | 9 + .../mihawk/zones.yaml | 42 + .../mihawk/monitor.yaml | 96 +++ .../mihawk/config.yaml | 47 ++ .../obmc/phosphor-fan/phosphor-cooling-type-0.conf | 3 + .../mihawk/phosphor-cooling-type@.service | 15 + .../recipes-phosphor/fans/phosphor-fan_%.bbappend | 11 +- .../packagegroups/packagegroup-obmc-apps.bbappend | 2 +- .../bus@1e78a000/i2c-bus@100/power-supply@58.conf | 4 + .../bus@1e78a000/i2c-bus@100/power-supply@5b.conf | 4 + .../apb/bus@1e78a000/i2c-bus@140/ir35221@70.conf | 11 + .../apb/bus@1e78a000/i2c-bus@140/ir35221@72.conf | 5 + .../apb/bus@1e78a000/i2c-bus@180/ir35221@70.conf | 11 + .../apb/bus@1e78a000/i2c-bus@180/ir35221@72.conf | 5 + .../apb/bus@1e78a000/i2c-bus@400/emc1403@4c.conf | 2 + .../apb/bus@1e78a000/i2c-bus@400/tmp275@48.conf | 2 + .../apb/bus@1e78a000/i2c-bus@400/tmp275@49.conf | 2 + .../i2c-bus@440/pca9545@70/i2c@3/tmp275@48.conf | 2 + .../ahb/apb/pwm-tacho-controller@1e786000.conf | 25 + .../00--00--00--06/sbefifo1-dev0/occ-hwmon.1.conf | 290 +++++++ .../01--01--00--06/sbefifo2-dev0/occ-hwmon.2.conf | 280 +++++++ .../mihawk/obmc/hwmon/iio-hwmon-12v.conf | 2 + .../mihawk/obmc/hwmon/iio-hwmon-3v.conf | 2 + .../mihawk/obmc/hwmon/iio-hwmon-5v.conf | 2 + .../mihawk/obmc/hwmon/iio-hwmon-battery.conf | 9 + .../mihawk/obmc/hwmon/iio-hwmon-vcs0.conf | 2 + .../mihawk/obmc/hwmon/iio-hwmon-vcs1.conf | 2 + .../mihawk/obmc/hwmon/iio-hwmon-vdd0.conf | 2 + .../mihawk/obmc/hwmon/iio-hwmon-vdd1.conf | 2 + .../mihawk/obmc/hwmon/iio-hwmon-vddra.conf | 2 + .../mihawk/obmc/hwmon/iio-hwmon-vddrb.conf | 2 + .../mihawk/obmc/hwmon/iio-hwmon-vddrc.conf | 2 + .../mihawk/obmc/hwmon/iio-hwmon-vddrd.conf | 2 + .../mihawk/obmc/hwmon/iio-hwmon-vdn0.conf | 2 + .../mihawk/obmc/hwmon/iio-hwmon-vdn1.conf | 2 + .../mihawk/obmc/hwmon/iio-hwmon-vio0.conf | 2 + .../mihawk/obmc/hwmon/iio-hwmon-vio1.conf | 2 + .../sensors/phosphor-hwmon_%.bbappend | 31 + 49 files changed, 3185 insertions(+), 193 deletions(-) create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/dbus/fan-policy/mihawk/air-cooled.yaml create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/dbus/fan-policy/mihawk/fan-errors.yaml create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/dbus/thermal-policy/ibm-ac-server/thermal-policy.yaml create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/dbus/thermal-policy/mihawk/thermal-policy.yaml delete mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/dbus/thermal-policy/thermal-policy.yaml create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-control-events-config/mihawk/events.yaml create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-control-fan-config/mihawk/fans.yaml create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-control-zone-conditions-config/mihawk/zone_conditions.yaml create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-control-zone-config/mihawk/zones.yaml create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-monitor-config/mihawk/monitor.yaml create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-presence-config/mihawk/config.yaml create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan/mihawk/obmc/phosphor-fan/phosphor-cooling-type-0.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan/mihawk/phosphor-cooling-type@.service create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@100/power-supply@58.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@100/power-supply@5b.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@140/ir35221@70.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@140/ir35221@72.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@180/ir35221@70.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@180/ir35221@72.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@400/emc1403@4c.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@400/tmp275@48.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@400/tmp275@49.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@440/pca9545@70/i2c@3/tmp275@48.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/pwm-tacho-controller@1e786000.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/devices/platform/gpio-fsi/fsi0/slave@00--00/00--00--00--06/sbefifo1-dev0/occ-hwmon.1.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/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.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-12v.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-3v.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-5v.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-battery.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vcs0.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vcs1.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vdd0.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vdd1.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vddra.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vddrb.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vddrc.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vddrd.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vdn0.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vdn1.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vio0.conf create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vio1.conf (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/fan-policy.bb b/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/fan-policy.bb index 12194640d..e53d9c055 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/fan-policy.bb +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/fan-policy.bb @@ -9,15 +9,20 @@ inherit phosphor-dbus-monitor FILESEXTRAPATHS_prepend := "${THISDIR}/${BPN}:" SRC_URI += "file://air-cooled.yaml" -SRC_URI += "file://water-cooled.yaml" +SRC_URI_append_ibm-ac-server = " file://water-cooled.yaml" SRC_URI += "file://fan-errors.yaml" -do_install() { +do_install_append_ibm-ac-server() { install -D ${WORKDIR}/air-cooled.yaml ${D}${config_dir}/air-cooled.yaml install -D ${WORKDIR}/water-cooled.yaml ${D}${config_dir}/water-cooled.yaml install -D ${WORKDIR}/fan-errors.yaml ${D}${config_dir}/fan-errors.yaml } +do_install_append_mihawk() { + install -D ${WORKDIR}/air-cooled.yaml ${D}${config_dir}/air-cooled.yaml + install -D ${WORKDIR}/fan-errors.yaml ${D}${config_dir}/fan-errors.yaml +} + FILES_${PN} += "${config_dir}/air-cooled.yaml" -FILES_${PN} += "${config_dir}/water-cooled.yaml" +FILES_${PN}_append_ibm-ac-server = " ${config_dir}/water-cooled.yaml" FILES_${PN} += "${config_dir}/fan-errors.yaml" diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/fan-policy/mihawk/air-cooled.yaml b/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/fan-policy/mihawk/air-cooled.yaml new file mode 100644 index 000000000..52232e3f0 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/fan-policy/mihawk/air-cooled.yaml @@ -0,0 +1,339 @@ +# Air cooled mihawk fan policy for PDM. +# +# An air cooled mihawk requires a minimum of three functional fans +# enclosures or six functional fan rotors across all enclosures. +# If the number of functional fan enclosures is below three, soft poweroff +# the system, whereas if the number of fan rotors drop below six, an +# immediate hard poweroff of the system occurs. + +- name: fan enclosures + description: > + 'An air cooled mihawk has 6 fan enclosures to monitor.' + class: group + group: path + members: + - meta: FAN + path: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan0 + - meta: FAN + path: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan1 + - meta: FAN + path: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan2 + - meta: FAN + path: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan3 + - meta: FAN + path: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan4 + - meta: FAN + path: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan5 + +- name: fan rotors + description: > + 'An air cooled Witherspoon has eight fan rotors to monitor.' + class: group + group: path + members: + - meta: FAN + path: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan0/fan0_0 + - meta: FAN + path: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan0/fan0_1 + - meta: FAN + path: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan1/fan1_0 + - meta: FAN + path: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan1/fan1_1 + - meta: FAN + path: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan2/fan2_0 + - meta: FAN + path: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan2/fan2_1 + - meta: FAN + path: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan3/fan3_0 + - meta: FAN + path: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan3/fan3_1 + - meta: FAN + path: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan4/fan4_0 + - meta: FAN + path: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan4/fan4_1 + - meta: FAN + path: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan5/fan5_0 + - meta: FAN + path: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan5/fan5_1 + +- name: chassis state + description: > + 'Witherspoon has a single chassis to monitor.' + class: group + group: path + members: + - meta: CHASSISSTATE + path: /xyz/openbmc_project/state/chassis0 + +- name: chassis + description: > + 'Witherspoon has a single chassis to monitor.' + class: group + group: path + members: + - meta: CHASSIS + path: /xyz/openbmc_project/inventory/system/chassis + +- name: fan present + description: > + 'Monitor the presence state of each fan.' + class: group + group: property + type: boolean + members: + - interface: xyz.openbmc_project.Inventory.Item + meta: PRESENT + property: Present + +- name: fan functional + description: > + 'Monitor the functional state of each fan.' + class: group + group: property + type: boolean + members: + - interface: xyz.openbmc_project.State.Decorator.OperationalStatus + meta: FUNCTIONAL + property: Functional + +- name: chassis powered + description: > + 'Monitor the chassis power state.' + class: group + group: property + type: string + members: + - interface: xyz.openbmc_project.State.Chassis + meta: CHASSIS_STATE + property: CurrentPowerState + +- name: chassis air cooled + description: > + 'Monitor the chassis cooling type.' + class: group + group: property + type: boolean + members: + - interface: xyz.openbmc_project.Inventory.Decorator.CoolingType + meta: COOLING_TYPE + property: WaterCooled + +- name: watch fan present + description: > + 'Trigger logic on fan enclosure presence state changes.' + class: watch + watch: property + paths: fan enclosures + properties: fan present + callback: check cooling type + +- name: watch fan functional + description: > + 'Trigger logic on fan enclosure functional state changes.' + class: watch + watch: property + paths: fan enclosures + properties: fan functional + callback: check cooling type + +- name: watch fan rotor functional + description: > + 'Trigger logic on fan rotor functional state changes.' + class: watch + watch: property + paths: fan rotors + properties: fan functional + callback: check cooling type + +- name: watch chassis state + description: > + 'Trigger logic on chassis power state changes.' + class: watch + watch: property + paths: chassis state + properties: chassis powered + callback: check cooling type + +- name: watch cooling type + description: > + 'Maintain a cache of the chassis cooling type.' + class: watch + watch: property + paths: chassis + properties: chassis air cooled + +- name: check cooling type + description: > + 'If this condition passes the chassis is air cooled.' + class: condition + condition: count + paths: chassis + properties: chassis air cooled + callback: check power + countop: '==' + countbound: 0 + op: '==' + bound: true + +- name: check power + description: > + 'If the chassis has power, check fans.' + class: condition + condition: count + paths: chassis state + properties: chassis powered + callback: check fans + countop: '>' + countbound: 0 + op: '==' + bound: xyz.openbmc_project.State.Chassis.PowerState.On + +- name: check fans + description: > + 'Verify there are at least three functional fan enclosures and at least + six functional fan rotors, power off if not.' + class: callback + callback: group + members: + - check group presence + - check group functional enclosures + - check group functional rotors + +- name: check group presence + description: > + 'If this condition passes more than one fan has been unplugged + for more than 25 seconds. Shut the system down. Count present + fans rather than non-present fans since the latter would pass + if the fan has not been created for some reason. + + For a more detailed definition of unplugged, consult the documentation + of xyz.openbmc_project.Inventory.Item and/or the documentation + of the fan inventory object implementation.' + class: condition + condition: count + paths: fan enclosures + properties: fan present + defer: 25000000us + callback: log and shutdown + countop: '<' + countbound: 6 + op: '==' + bound: true + +- name: check group functional enclosures + description: > + 'If this condition passes more than one fan enclosure in the group has been + marked as nonfunctional for 25 seconds. Shut the system down. + + For a more detailed definition of nonfunctional, consult the documentation + of xyz.openbmc_project.State.Decorator.OperationalStatus and/or the + documentation of the fan inventory object implementation.' + class: condition + condition: count + paths: fan enclosures + properties: fan functional + defer: 25000000us + callback: log and shutdown + countop: '>' + countbound: 1 + op: '==' + bound: false + +- name: check group functional rotors + description: > + 'If this condition passes more than two fan rotors in the group have been + marked as nonfunctional for 25 seconds. Immediately power off. + For a more detailed definition of nonfunctional, consult the documentation + of xyz.openbmc_project.State.Decorator.OperationalStatus and/or the + documentation of the fan inventory object implementation.' + class: condition + condition: count + paths: fan rotors + properties: fan functional + defer: 25000000us + callback: log and poweroff + countop: '>' + countbound: 1 + op: '==' + bound: false + +- name: log and poweroff + description: > + 'Immediately poweroff, log an event in the journal, and create an + error log.' + class: callback + callback: group + members: + - hard poweroff + - log hard poweroff + - create shutdown error + +- name: log and shutdown + description: > + 'Shut the system down, log an event in the journal, and create an + error log.' + class: callback + callback: group + members: + - shutdown + - log shutdown + - create shutdown error + +- name: hard poweroff + description: > + 'Immediately power off the system.' + class: callback + callback: method + service: org.freedesktop.systemd1 + path: /org/freedesktop/systemd1 + interface: org.freedesktop.systemd1.Manager + method: StartUnit + args: + - value: obmc-chassis-hard-poweroff@0.target + type: string + - value: replace + type: string + +- name: shutdown + description: > + 'Shut down the system.' + class: callback + callback: method + service: org.freedesktop.systemd1 + path: /org/freedesktop/systemd1 + interface: org.freedesktop.systemd1.Manager + method: StartUnit + args: + - value: obmc-host-shutdown@0.target + type: string + - value: replace + type: string + +- name: log hard poweroff + description: > + 'Log a hard poweroff event to the systemd journal.' + class: callback + callback: journal + paths: chassis state + properties: chassis powered + severity: ERR + message: Immediate poweroff of system. There are not enough functional fans. + +- name: log shutdown + description: > + 'Log a shutdown event to the systemd journal.' + class: callback + callback: journal + paths: chassis state + properties: chassis powered + severity: ERR + message: Request shutdown of system. There are not enough functional fans. + +- name: create shutdown error + description: > + 'Create a Fan Shutdown Error log.' + class: callback + callback: elog + paths: chassis state + properties: chassis powered + error: xyz::openbmc_project::State::Shutdown::Inventory::Error::Fan diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/fan-policy/mihawk/fan-errors.yaml b/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/fan-policy/mihawk/fan-errors.yaml new file mode 100644 index 000000000..65cfbeb25 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/fan-policy/mihawk/fan-errors.yaml @@ -0,0 +1,905 @@ +# Witherspoon fan error policy for PDM. +# +# * Create a NotPresent error if fan 0, 1, 2, 3, 4, or 5 is not present for more +# than 20 seconds. +# * Create a Nonfunctional error if fan 0, 1, 2, 3, 4, or 5 is not +# functional for any amount of time. +# +# The system must be powered on in both of these cases. +# Note: An error is created each time the chassis powers on. +# +# * Watch for fans to become both present and functional, and then resolve +# their errors + +- name: fan0 + class: group + group: path + members: + - meta: FAN + path: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan0 + +- name: fan1 + class: group + group: path + members: + - meta: FAN + path: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan1 + +- name: fan2 + class: group + group: path + members: + - meta: FAN + path: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan2 + +- name: fan3 + class: group + group: path + members: + - meta: FAN + path: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan3 + +- name: fan4 + class: group + group: path + members: + - meta: FAN + path: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan4 + +- name: fan5 + class: group + group: path + members: + - meta: FAN + path: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan5 + + +- name: chassis state + description: > + 'Witherspoon has a single chassis to monitor.' + class: group + group: path + members: + - meta: CHASSISSTATE + path: /xyz/openbmc_project/state/chassis0 + +- name: chassis + description: > + 'Witherspoon has a single chassis to monitor.' + class: group + group: path + members: + - meta: CHASSIS + path: /xyz/openbmc_project/inventory/system/chassis + + +- name: fan present + description: > + 'Monitor the presence state of each fan.' + class: group + group: property + type: boolean + members: + - interface: xyz.openbmc_project.Inventory.Item + meta: PRESENT + property: Present + +- name: fan functional + description: > + 'Monitor the functional state of each fan.' + class: group + group: property + type: boolean + members: + - interface: xyz.openbmc_project.State.Decorator.OperationalStatus + meta: FUNCTIONAL + property: Functional + +- name: fan present and functional + description: > + 'Monitor the present and functional state of each fan.' + class: group + group: property + type: boolean + members: + - interface: xyz.openbmc_project.Inventory.Item + meta: PRESENT + property: Present + - interface: xyz.openbmc_project.State.Decorator.OperationalStatus + meta: FUNCTIONAL + property: Functional + +- name: chassis powered + description: > + 'Monitor the chassis power state.' + class: group + group: property + type: string + members: + - interface: xyz.openbmc_project.State.Chassis + meta: CHASSIS_STATE + property: CurrentPowerState + +- name: chassis air cooled + description: > + 'The chassis cooling type.' + class: group + group: property + type: boolean + members: + - interface: xyz.openbmc_project.Inventory.Decorator.CoolingType + meta: COOLING_TYPE + property: WaterCooled + +- name: watch chassis state + description: > + 'Trigger logic on chassis power state changes.' + class: watch + watch: property + paths: chassis state + properties: chassis powered + callback: check power + +- name: watch fan0 presence + description: > + 'Trigger logic on fan0 presence state changes.' + class: watch + watch: property + paths: fan0 + properties: fan present + callback: check power fan0 presence + +- name: watch fan0 functional + description: > + 'Trigger logic on fan0 functional state changes.' + class: watch + watch: property + paths: fan0 + properties: fan functional + callback: check power fan0 functional + +- name: watch fan1 presence + description: > + 'Trigger logic on fan1 presence state changes.' + class: watch + watch: property + paths: fan1 + properties: fan present + callback: check power fan1 presence + +- name: watch fan1 functional + description: > + 'Trigger logic on fan1 functional state changes.' + class: watch + watch: property + paths: fan1 + properties: fan functional + callback: check power fan1 functional + +- name: watch fan2 presence + description: > + 'Trigger logic on fan2 presence state changes.' + class: watch + watch: property + paths: fan2 + properties: fan present + callback: check power fan2 presence + +- name: watch fan2 functional + description: > + 'Trigger logic on fan2 functional state changes.' + class: watch + watch: property + paths: fan2 + properties: fan functional + callback: check power fan2 functional + +- name: watch fan3 presence + description: > + 'Trigger logic on fan3 presence state changes.' + class: watch + watch: property + paths: fan3 + properties: fan present + callback: check power fan3 presence + +- name: watch fan3 functional + description: > + 'Trigger logic on fan3 functional state changes.' + class: watch + watch: property + paths: fan3 + properties: fan functional + callback: check power fan3 functional + +- name: watch fan4 presence + description: > + 'Trigger logic on fan4 presence state changes.' + class: watch + watch: property + paths: fan4 + properties: fan present + callback: check power fan4 presence + +- name: watch fan4 functional + description: > + 'Trigger logic on fan4 functional state changes.' + class: watch + watch: property + paths: fan4 + properties: fan functional + callback: check power fan4 functional + +- name: watch fan5 presence + description: > + 'Trigger logic on fan5 presence state changes.' + class: watch + watch: property + paths: fan5 + properties: fan present + callback: check power fan5 presence + +- name: watch fan5 functional + description: > + 'Trigger logic on fan5 functional state changes.' + class: watch + watch: property + paths: fan5 + properties: fan functional + callback: check power fan5 functional + +- name: watch fan0 present and functional for resolving error logs + description: > + 'On fan present or functional state changes, check if errors need to be resolved.' + class: watch + watch: property + paths: fan0 + properties: fan present and functional + callback: resolve fan0 errors if present and functional + +- name: watch fan1 present and functional for resolving error logs + description: > + 'On fan present or functional state changes, check if errors need to be resolved.' + class: watch + watch: property + paths: fan1 + properties: fan present and functional + callback: resolve fan1 errors if present and functional + +- name: watch fan2 present and functional for resolving error logs + description: > + 'On fan present or functional state changes, check if errors need to be resolved.' + class: watch + watch: property + paths: fan2 + properties: fan present and functional + callback: resolve fan2 errors if present and functional + +- name: watch fan3 present and functional for resolving error logs + description: > + 'On fan present or functional state changes, check if errors need to be resolved.' + class: watch + watch: property + paths: fan3 + properties: fan present and functional + callback: resolve fan3 errors if present and functional + +- name: watch fan4 present and functional for resolving error logs + description: > + 'On fan present or functional state changes, check if errors need to be resolved.' + class: watch + watch: property + paths: fan4 + properties: fan present and functional + callback: resolve fan4 errors if present and functional + +- name: watch fan5 present and functional for resolving error logs + description: > + 'On fan present or functional state changes, check if errors need to be resolved.' + class: watch + watch: property + paths: fan5 + properties: fan present and functional + callback: resolve fan5 errors if present and functional + +- name: check power + description: > + 'If the chassis has power, check all fans.' + class: condition + condition: count + paths: chassis state + properties: chassis powered + callback: check fans + countop: '>' + countbound: 0 + op: '==' + bound: xyz.openbmc_project.State.Chassis.PowerState.On + +- name: check power fan0 presence + description: > + 'If the chassis has power, check presence of fan0.' + class: condition + condition: count + paths: chassis state + properties: chassis powered + callback: check fan0 presence + countop: '>' + countbound: 0 + op: '==' + bound: xyz.openbmc_project.State.Chassis.PowerState.On + +- name: check power fan0 functional + description: > + 'If the chassis has power, check functional of fan0.' + class: condition + condition: count + paths: chassis state + properties: chassis powered + callback: check fan0 functional + countop: '>' + countbound: 0 + op: '==' + bound: xyz.openbmc_project.State.Chassis.PowerState.On + +- name: check power fan1 presence + description: > + 'If the chassis has power, check presence of fan1.' + class: condition + condition: count + paths: chassis state + properties: chassis powered + callback: check fan1 presence + countop: '>' + countbound: 0 + op: '==' + bound: xyz.openbmc_project.State.Chassis.PowerState.On + +- name: check power fan1 functional + description: > + 'If the chassis has power, check functional of fan1.' + class: condition + condition: count + paths: chassis state + properties: chassis powered + callback: check fan1 functional + countop: '>' + countbound: 0 + op: '==' + bound: xyz.openbmc_project.State.Chassis.PowerState.On + +- name: check power fan2 presence + description: > + 'If the chassis has power, check presence of fan2.' + class: condition + condition: count + paths: chassis state + properties: chassis powered + callback: check fan2 presence + countop: '>' + countbound: 0 + op: '==' + bound: xyz.openbmc_project.State.Chassis.PowerState.On + +- name: check power fan2 functional + description: > + 'If the chassis has power, check functional of fan2.' + class: condition + condition: count + paths: chassis state + properties: chassis powered + callback: check fan2 functional + countop: '>' + countbound: 0 + op: '==' + bound: xyz.openbmc_project.State.Chassis.PowerState.On + +- name: check power fan3 presence + description: > + 'If the chassis has power, check presence of fan3.' + class: condition + condition: count + paths: chassis state + properties: chassis powered + callback: check fan3 presence + countop: '>' + countbound: 0 + op: '==' + bound: xyz.openbmc_project.State.Chassis.PowerState.On + +- name: check power fan3 functional + description: > + 'If the chassis has power, check functional of fan3.' + class: condition + condition: count + paths: chassis state + properties: chassis powered + callback: check fan3 functional + countop: '>' + countbound: 0 + op: '==' + bound: xyz.openbmc_project.State.Chassis.PowerState.On + +- name: check power fan4 presence + description: > + 'If the chassis has power, check presence of fan4.' + class: condition + condition: count + paths: chassis state + properties: chassis powered + callback: check fan4 presence + countop: '>' + countbound: 0 + op: '==' + bound: xyz.openbmc_project.State.Chassis.PowerState.On + +- name: check power fan4 functional + description: > + 'If the chassis has power, check functional of fan4.' + class: condition + condition: count + paths: chassis state + properties: chassis powered + callback: check fan4 functional + countop: '>' + countbound: 0 + op: '==' + bound: xyz.openbmc_project.State.Chassis.PowerState.On + +- name: check power fan5 presence + description: > + 'If the chassis has power, check presence of fan5.' + class: condition + condition: count + paths: chassis state + properties: chassis powered + callback: check fan5 presence + countop: '>' + countbound: 0 + op: '==' + bound: xyz.openbmc_project.State.Chassis.PowerState.On + +- name: check power fan5 functional + description: > + 'If the chassis has power, check functional of fan5.' + class: condition + condition: count + paths: chassis state + properties: chassis powered + callback: check fan5 functional + countop: '>' + countbound: 0 + op: '==' + bound: xyz.openbmc_project.State.Chassis.PowerState.On + +- name: check fans + description: > + 'Verify each of the 12 fans are present.' + class: callback + callback: group + members: + - check fan0 presence + - check fan1 presence + - check fan2 presence + - check fan3 presence + - check fan4 presence + - check fan5 presence + - check fan0 functional + - check fan1 functional + - check fan2 functional + - check fan3 functional + - check fan4 functional + - check fan5 functional + +- name: check fan0 presence + description: > + 'If this condition passes fan0 has been unplugged for more than 20 seconds.' + class: condition + condition: count + paths: fan0 + properties: fan present + defer: 20000000us + callback: notpresent fan0 error + countop: '<' + countbound: 1 + op: '==' + bound: true + +- name: check fan0 functional + description: > + 'If this condition passes fan0 has been marked as nonfunctional.' + class: condition + condition: count + paths: fan0 + properties: fan functional + callback: nonfunctional fan0 error + countop: '>' + countbound: 0 + op: '==' + bound: false + +- name: check fan1 presence + description: > + 'If this condition passes fan1 has been unplugged for more than 20 seconds.' + class: condition + condition: count + paths: fan1 + properties: fan present + defer: 20000000us + callback: notpresent fan1 error + countop: '<' + countbound: 1 + op: '==' + bound: true + +- name: check fan1 functional + description: > + 'If this condition passes fan1 has been marked as nonfunctional.' + class: condition + condition: count + paths: fan1 + properties: fan functional + callback: nonfunctional fan1 error + countop: '>' + countbound: 0 + op: '==' + bound: false + +- name: check fan2 presence + description: > + 'If this condition passes fan2 has been unplugged for more than 20 seconds.' + class: condition + condition: count + paths: fan2 + properties: fan present + defer: 20000000us + callback: notpresent fan2 error + countop: '<' + countbound: 1 + op: '==' + bound: true + +- name: check fan2 functional + description: > + 'If this condition passes fan2 has been marked as nonfunctional.' + class: condition + condition: count + paths: fan2 + properties: fan functional + callback: nonfunctional fan2 error + countop: '>' + countbound: 0 + op: '==' + bound: false + +- name: check fan3 presence + description: > + 'If this condition passes fan3 has been unplugged for more than 20 seconds.' + class: condition + condition: count + paths: fan3 + properties: fan present + defer: 20000000us + callback: notpresent fan3 error + countop: '<' + countbound: 1 + op: '==' + bound: true + +- name: check fan3 functional + description: > + 'If this condition passes fan3 has been marked as nonfunctional.' + class: condition + condition: count + paths: fan3 + properties: fan functional + callback: nonfunctional fan3 error + countop: '>' + countbound: 0 + op: '==' + bound: false + +- name: check fan4 presence + description: > + 'If this condition passes fan4 has been unplugged for more than 20 seconds.' + class: condition + condition: count + paths: fan4 + properties: fan present + defer: 20000000us + callback: notpresent fan4 error + countop: '<' + countbound: 1 + op: '==' + bound: true + +- name: check fan4 functional + description: > + 'If this condition passes fan4 has been marked as nonfunctional.' + class: condition + condition: count + paths: fan4 + properties: fan functional + callback: nonfunctional fan4 error + countop: '>' + countbound: 0 + op: '==' + bound: false + +- name: check fan5 presence + description: > + 'If this condition passes fan5 has been unplugged for more than 20 seconds.' + class: condition + condition: count + paths: fan5 + properties: fan present + defer: 20000000us + callback: notpresent fan5 error + countop: '<' + countbound: 1 + op: '==' + bound: true + +- name: check fan5 functional + description: > + 'If this condition passes fan5 has been marked as nonfunctional.' + class: condition + condition: count + paths: fan5 + properties: fan functional + callback: nonfunctional fan5 error + countop: '>' + countbound: 0 + op: '==' + bound: false + +- name: notpresent fan0 error + class: callback + callback: elog + paths: fan0 + properties: fan present + error: xyz::openbmc_project::Inventory::Error::NotPresent + metadata: + - name: xyz::openbmc_project::Inventory::NotPresent::CALLOUT_INVENTORY_PATH + value: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan0 + type: string + +- name: nonfunctional fan0 error + class: callback + callback: elog + paths: fan0 + properties: fan functional + error: xyz::openbmc_project::Inventory::Error::Nonfunctional + metadata: + - name: xyz::openbmc_project::Inventory::Nonfunctional::CALLOUT_INVENTORY_PATH + value: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan0 + type: string + +- name: notpresent fan1 error + class: callback + callback: elog + paths: fan1 + properties: fan present + error: xyz::openbmc_project::Inventory::Error::NotPresent + metadata: + - name: xyz::openbmc_project::Inventory::NotPresent::CALLOUT_INVENTORY_PATH + value: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan1 + type: string + +- name: nonfunctional fan1 error + class: callback + callback: elog + paths: fan1 + properties: fan functional + error: xyz::openbmc_project::Inventory::Error::Nonfunctional + metadata: + - name: xyz::openbmc_project::Inventory::Nonfunctional::CALLOUT_INVENTORY_PATH + value: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan1 + type: string + +- name: notpresent fan2 error + class: callback + callback: elog + paths: fan2 + properties: fan present + error: xyz::openbmc_project::Inventory::Error::NotPresent + metadata: + - name: xyz::openbmc_project::Inventory::NotPresent::CALLOUT_INVENTORY_PATH + value: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan2 + type: string + +- name: nonfunctional fan2 error + class: callback + callback: elog + paths: fan2 + properties: fan functional + error: xyz::openbmc_project::Inventory::Error::Nonfunctional + metadata: + - name: xyz::openbmc_project::Inventory::Nonfunctional::CALLOUT_INVENTORY_PATH + value: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan2 + type: string + +- name: notpresent fan3 error + class: callback + callback: elog + paths: fan3 + properties: fan present + error: xyz::openbmc_project::Inventory::Error::NotPresent + metadata: + - name: xyz::openbmc_project::Inventory::NotPresent::CALLOUT_INVENTORY_PATH + value: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan3 + type: string + +- name: nonfunctional fan3 error + class: callback + callback: elog + paths: fan3 + properties: fan functional + error: xyz::openbmc_project::Inventory::Error::Nonfunctional + metadata: + - name: xyz::openbmc_project::Inventory::Nonfunctional::CALLOUT_INVENTORY_PATH + value: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan3 + type: string + +- name: notpresent fan4 error + class: callback + callback: elog + paths: fan4 + properties: fan present + error: xyz::openbmc_project::Inventory::Error::NotPresent + metadata: + - name: xyz::openbmc_project::Inventory::NotPresent::CALLOUT_INVENTORY_PATH + value: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan4 + type: string + +- name: nonfunctional fan4 error + class: callback + callback: elog + paths: fan4 + properties: fan functional + error: xyz::openbmc_project::Inventory::Error::Nonfunctional + metadata: + - name: xyz::openbmc_project::Inventory::Nonfunctional::CALLOUT_INVENTORY_PATH + value: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan4 + type: string + +- name: notpresent fan5 error + class: callback + callback: elog + paths: fan5 + properties: fan present + error: xyz::openbmc_project::Inventory::Error::NotPresent + metadata: + - name: xyz::openbmc_project::Inventory::NotPresent::CALLOUT_INVENTORY_PATH + value: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan5 + type: string + +- name: nonfunctional fan5 error + class: callback + callback: elog + paths: fan5 + properties: fan functional + error: xyz::openbmc_project::Inventory::Error::Nonfunctional + metadata: + - name: xyz::openbmc_project::Inventory::Nonfunctional::CALLOUT_INVENTORY_PATH + value: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan5 + type: string + +- name: resolve fan0 errors if present and functional + description: > + 'If fan0 is present and functional, call the resolve fan0 errors callback.' + class: condition + condition: count + paths: fan0 + properties: fan present and functional + callback: resolve fan0 errors + countop: '==' + countbound: 2 + op: '==' + bound: true + +- name: resolve fan1 errors if present and functional + description: > + 'If fan1 is present and functional, call the resolve fan1 errors callback.' + class: condition + condition: count + paths: fan1 + properties: fan present and functional + callback: resolve fan1 errors + countop: '==' + countbound: 2 + op: '==' + bound: true + +- name: resolve fan2 errors if present and functional + description: > + 'If fan2 is present and functional, call the resolve fan2 errors callback.' + class: condition + condition: count + paths: fan2 + properties: fan present and functional + callback: resolve fan2 errors + countop: '==' + countbound: 2 + op: '==' + bound: true + +- name: resolve fan3 errors if present and functional + description: > + 'If fan3 is present and functional, call the resolve fan3 errors callback.' + class: condition + condition: count + paths: fan3 + properties: fan present and functional + callback: resolve fan3 errors + countop: '==' + countbound: 2 + op: '==' + bound: true + +- name: resolve fan4 errors if present and functional + description: > + 'If fan4 is present and functional, call the resolve fan4 errors callback.' + class: condition + condition: count + paths: fan4 + properties: fan present and functional + callback: resolve fan4 errors + countop: '==' + countbound: 2 + op: '==' + bound: true + +- name: resolve fan5 errors if present and functional + description: > + 'If fan5 is present and functional, call the resolve fan5 errors callback.' + class: condition + condition: count + paths: fan5 + properties: fan present and functional + callback: resolve fan5 errors + countop: '==' + countbound: 2 + op: '==' + bound: true + +- name: resolve fan0 errors + class: callback + callback: resolve callout + paths: fan0 + properties: fan present and functional + callout: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan0 + +- name: resolve fan1 errors + class: callback + callback: resolve callout + paths: fan1 + properties: fan present and functional + callout: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan1 + +- name: resolve fan2 errors + class: callback + callback: resolve callout + paths: fan2 + properties: fan present and functional + callout: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan2 + +- name: resolve fan3 errors + class: callback + callback: resolve callout + paths: fan3 + properties: fan present and functional + callout: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan3 + +- name: resolve fan4 errors + class: callback + callback: resolve callout + paths: fan4 + properties: fan present and functional + callout: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan4 + +- name: resolve fan5 errors + class: callback + callback: resolve callout + paths: fan5 + properties: fan present and functional + callout: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan5 diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/phosphor-dbus-monitor-config.bbappend b/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/phosphor-dbus-monitor-config.bbappend index 185db1033..3a18960ea 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/phosphor-dbus-monitor-config.bbappend +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/phosphor-dbus-monitor-config.bbappend @@ -2,3 +2,7 @@ PHOSPHOR_DBUS_MONITOR_CONFIGS_append_ibm-ac-server = " fan-policy" PHOSPHOR_DBUS_MONITOR_CONFIGS_append_ibm-ac-server = " thermal-policy" PHOSPHOR_DBUS_MONITOR_CONFIGS_append_ibm-ac-server = " power-supply-policy" PHOSPHOR_DBUS_MONITOR_CONFIGS_append_ibm-ac-server = " events-policy" +PHOSPHOR_DBUS_MONITOR_CONFIGS_append_mihawk = " fan-policy" +PHOSPHOR_DBUS_MONITOR_CONFIGS_append_mihawk = " thermal-policy" +PHOSPHOR_DBUS_MONITOR_CONFIGS_append_mihawk = " power-supply-policy" +PHOSPHOR_DBUS_MONITOR_CONFIGS_append_mihawk = " events-policy" diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/phosphor-dbus-monitor_%.bbappend b/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/phosphor-dbus-monitor_%.bbappend index 8e1bf41fa..5c9d0b15c 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/phosphor-dbus-monitor_%.bbappend +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/phosphor-dbus-monitor_%.bbappend @@ -1 +1,2 @@ SYSTEMD_LINK_phosphor-msl-verify_append_ibm-ac-server = " ../phosphor-msl-verify.service:obmc-chassis-poweron@0.target.requires/phosphor-msl-verify.service" +SYSTEMD_LINK_phosphor-msl-verify_append_mihawk = " ../phosphor-msl-verify.service:obmc-chassis-poweron@0.target.requires/phosphor-msl-verify.service" diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/thermal-policy.bb b/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/thermal-policy.bb index 9fb7d252b..5631ec493 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/thermal-policy.bb +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/thermal-policy.bb @@ -8,7 +8,7 @@ inherit phosphor-dbus-monitor FILESEXTRAPATHS_prepend := "${THISDIR}/${BPN}:" -SRC_URI += "file://thermal-policy.yaml" +SRC_URI = "file://thermal-policy.yaml" do_install() { install -D ${WORKDIR}/thermal-policy.yaml ${D}${config_dir}/thermal-policy.yaml diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/thermal-policy/ibm-ac-server/thermal-policy.yaml b/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/thermal-policy/ibm-ac-server/thermal-policy.yaml new file mode 100644 index 000000000..7c48509c5 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/thermal-policy/ibm-ac-server/thermal-policy.yaml @@ -0,0 +1,187 @@ +# Machine thermal policy for PDM. +# +# Shut down the system if more than three cores +# have a temperature greater than 115 degrees Celcius. + + +- name: core sensors + description: > + 'The machine has two processor chips with 24 cores each.' + class: group + group: path + members: + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core0_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core1_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core2_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core3_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core4_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core5_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core6_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core7_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core8_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core9_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core10_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core11_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core12_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core13_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core14_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core15_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core16_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core17_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core18_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core19_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core20_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core21_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core22_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core23_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core0_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core1_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core2_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core3_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core4_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core5_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core6_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core7_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core8_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core9_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core10_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core11_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core12_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core13_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core14_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core15_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core16_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core17_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core18_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core19_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core20_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core21_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core22_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core23_temp + +- name: core temp + description: > + 'Monitor the temperature of each core.' + class: group + group: property + type: int64 + members: + - interface: xyz.openbmc_project.Sensor.Value + meta: TEMP + property: Value + +- name: watch core temps + description: > + 'Trigger logic on core temp changes.' + class: watch + watch: property + paths: core sensors + properties: core temp + callback: check temps + +- name: check temps + description: > + 'If this condition passes at least three cores are running + too hot. Shut the system down.' + class: condition + condition: count + paths: core sensors + properties: core temp + callback: log and shutdown + countop: '>=' + countbound: 3 + op: '>=' + bound: 115000 + oneshot: true + +- name: log and shutdown + description: > + 'Shut the system down and log an event.' + class: callback + callback: group + members: + - shutdown + - create criticalhigh error + - create shutdown error + +- name: shutdown + description: > + 'Shut down the system.' + class: callback + callback: method + service: org.freedesktop.systemd1 + path: /org/freedesktop/systemd1 + interface: org.freedesktop.systemd1.Manager + method: StartUnit + args: + - value: obmc-chassis-hard-poweroff@0.target + type: string + - value: replace + type: string + +- name: create criticalhigh error + description: > + 'Create a CriticalHigh Error log.' + class: callback + callback: elog_with_metadata + paths: core sensors + properties: core temp + error: xyz::openbmc_project::Sensor::Threshold::Error::CriticalHigh + metadata: xyz::openbmc_project::Sensor::Threshold::CriticalHigh::SENSOR_DATA + +- name: create shutdown error + description: > + 'Create a SystemShutdown Error log.' + class: callback + callback: elog + paths: core sensors + properties: core temp + error: xyz::openbmc_project::State::Shutdown::ThermalEvent::Error::Processor diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/thermal-policy/mihawk/thermal-policy.yaml b/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/thermal-policy/mihawk/thermal-policy.yaml new file mode 100644 index 000000000..f8e89b2ed --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/thermal-policy/mihawk/thermal-policy.yaml @@ -0,0 +1,187 @@ +# Mihawk thermal policy for PDM. +# +# Shut down the system if more than three cores +# have a temperature greater than 100 degrees Celcius. + + +- name: core sensors + description: > + 'The machine has two processor chips with 24 cores each.' + class: group + group: path + members: + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core0_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core1_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core2_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core3_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core4_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core5_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core6_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core7_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core8_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core9_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core10_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core11_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core12_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core13_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core14_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core15_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core16_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core17_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core18_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core19_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core20_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core21_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core22_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p0_core23_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core0_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core1_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core2_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core3_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core4_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core5_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core6_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core7_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core8_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core9_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core10_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core11_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core12_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core13_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core14_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core15_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core16_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core17_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core18_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core19_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core20_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core21_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core22_temp + - meta: SENSOR + path: /xyz/openbmc_project/sensors/temperature/p1_core23_temp + +- name: core temp + description: > + 'Monitor the temperature of each core.' + class: group + group: property + type: int64 + members: + - interface: xyz.openbmc_project.Sensor.Value + meta: TEMP + property: Value + +- name: watch core temps + description: > + 'Trigger logic on core temp changes.' + class: watch + watch: property + paths: core sensors + properties: core temp + callback: check temps + +- name: check temps + description: > + 'If this condition passes at least three cores are running + too hot. Shut the system down.' + class: condition + condition: count + paths: core sensors + properties: core temp + callback: log and shutdown + countop: '>=' + countbound: 3 + op: '>=' + bound: 115000 + oneshot: true + +- name: log and shutdown + description: > + 'Shut the system down and log an event.' + class: callback + callback: group + members: + - shutdown + - create criticalhigh error + - create shutdown error + +- name: shutdown + description: > + 'Shut down the system.' + class: callback + callback: method + service: org.freedesktop.systemd1 + path: /org/freedesktop/systemd1 + interface: org.freedesktop.systemd1.Manager + method: StartUnit + args: + - value: obmc-chassis-hard-poweroff@0.target + type: string + - value: replace + type: string + +- name: create criticalhigh error + description: > + 'Create a CriticalHigh Error log.' + class: callback + callback: elog_with_metadata + paths: core sensors + properties: core temp + error: xyz::openbmc_project::Sensor::Threshold::Error::CriticalHigh + metadata: xyz::openbmc_project::Sensor::Threshold::CriticalHigh::SENSOR_DATA + +- name: create shutdown error + description: > + 'Create a SystemShutdown Error log.' + class: callback + callback: elog + paths: core sensors + properties: core temp + error: xyz::openbmc_project::State::Shutdown::ThermalEvent::Error::Processor diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/thermal-policy/thermal-policy.yaml b/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/thermal-policy/thermal-policy.yaml deleted file mode 100644 index 7c48509c5..000000000 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/thermal-policy/thermal-policy.yaml +++ /dev/null @@ -1,187 +0,0 @@ -# Machine thermal policy for PDM. -# -# Shut down the system if more than three cores -# have a temperature greater than 115 degrees Celcius. - - -- name: core sensors - description: > - 'The machine has two processor chips with 24 cores each.' - class: group - group: path - members: - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p0_core0_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p0_core1_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p0_core2_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p0_core3_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p0_core4_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p0_core5_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p0_core6_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p0_core7_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p0_core8_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p0_core9_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p0_core10_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p0_core11_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p0_core12_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p0_core13_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p0_core14_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p0_core15_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p0_core16_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p0_core17_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p0_core18_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p0_core19_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p0_core20_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p0_core21_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p0_core22_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p0_core23_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p1_core0_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p1_core1_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p1_core2_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p1_core3_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p1_core4_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p1_core5_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p1_core6_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p1_core7_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p1_core8_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p1_core9_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p1_core10_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p1_core11_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p1_core12_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p1_core13_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p1_core14_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p1_core15_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p1_core16_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p1_core17_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p1_core18_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p1_core19_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p1_core20_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p1_core21_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p1_core22_temp - - meta: SENSOR - path: /xyz/openbmc_project/sensors/temperature/p1_core23_temp - -- name: core temp - description: > - 'Monitor the temperature of each core.' - class: group - group: property - type: int64 - members: - - interface: xyz.openbmc_project.Sensor.Value - meta: TEMP - property: Value - -- name: watch core temps - description: > - 'Trigger logic on core temp changes.' - class: watch - watch: property - paths: core sensors - properties: core temp - callback: check temps - -- name: check temps - description: > - 'If this condition passes at least three cores are running - too hot. Shut the system down.' - class: condition - condition: count - paths: core sensors - properties: core temp - callback: log and shutdown - countop: '>=' - countbound: 3 - op: '>=' - bound: 115000 - oneshot: true - -- name: log and shutdown - description: > - 'Shut the system down and log an event.' - class: callback - callback: group - members: - - shutdown - - create criticalhigh error - - create shutdown error - -- name: shutdown - description: > - 'Shut down the system.' - class: callback - callback: method - service: org.freedesktop.systemd1 - path: /org/freedesktop/systemd1 - interface: org.freedesktop.systemd1.Manager - method: StartUnit - args: - - value: obmc-chassis-hard-poweroff@0.target - type: string - - value: replace - type: string - -- name: create criticalhigh error - description: > - 'Create a CriticalHigh Error log.' - class: callback - callback: elog_with_metadata - paths: core sensors - properties: core temp - error: xyz::openbmc_project::Sensor::Threshold::Error::CriticalHigh - metadata: xyz::openbmc_project::Sensor::Threshold::CriticalHigh::SENSOR_DATA - -- name: create shutdown error - description: > - 'Create a SystemShutdown Error log.' - class: callback - callback: elog - paths: core sensors - properties: core temp - error: xyz::openbmc_project::State::Shutdown::ThermalEvent::Error::Processor diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-control-events-config/mihawk/events.yaml b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-control-events-config/mihawk/events.yaml new file mode 100644 index 000000000..b7fd1f761 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-control-events-config/mihawk/events.yaml @@ -0,0 +1,586 @@ +groups: + - name: zone0_control_mode + description: Thermal control mode for zone 0 + service: xyz.openbmc_project.Control.Thermal + type: /xyz/openbmc_project/control/thermal + members: + - /0 + - name: air_cooled_zone0_fans + description: Group of fan inventory objects for air cooled zone 0 + type: /xyz/openbmc_project/inventory + members: + - /system/chassis/motherboard/fan0 + - /system/chassis/motherboard/fan1 + - /system/chassis/motherboard/fan2 + - /system/chassis/motherboard/fan3 + - /system/chassis/motherboard/fan4 + - /system/chassis/motherboard/fan5 + - name: zone0_ambient + description: Group of ambient temperature sensors for zone 0 + type: /xyz/openbmc_project/sensors + members: + - /temperature/ambient_temp + - name: occ0_object + description: Dbus object containing OCC0 properties + type: /org/open_power/control + members: + - /occ0 + - name: occ1_object + description: Dbus object containing OCC1 properties + type: /org/open_power/control + members: + - /occ1 + - name: zone0_cores + description: Group of core temperature sensors for zone 0 + type: /xyz/openbmc_project/sensors + members: + - /temperature/p0_core0_temp + - /temperature/p0_core1_temp + - /temperature/p0_core2_temp + - /temperature/p0_core3_temp + - /temperature/p0_core4_temp + - /temperature/p0_core5_temp + - /temperature/p0_core6_temp + - /temperature/p0_core7_temp + - /temperature/p0_core8_temp + - /temperature/p0_core9_temp + - /temperature/p0_core10_temp + - /temperature/p0_core11_temp + - /temperature/p0_core12_temp + - /temperature/p0_core13_temp + - /temperature/p0_core14_temp + - /temperature/p0_core15_temp + - /temperature/p0_core16_temp + - /temperature/p0_core17_temp + - /temperature/p0_core18_temp + - /temperature/p0_core19_temp + - /temperature/p0_core20_temp + - /temperature/p0_core21_temp + - /temperature/p0_core22_temp + - /temperature/p0_core23_temp + - /temperature/p1_core0_temp + - /temperature/p1_core1_temp + - /temperature/p1_core2_temp + - /temperature/p1_core3_temp + - /temperature/p1_core4_temp + - /temperature/p1_core5_temp + - /temperature/p1_core6_temp + - /temperature/p1_core7_temp + - /temperature/p1_core8_temp + - /temperature/p1_core9_temp + - /temperature/p1_core10_temp + - /temperature/p1_core11_temp + - /temperature/p1_core12_temp + - /temperature/p1_core13_temp + - /temperature/p1_core14_temp + - /temperature/p1_core15_temp + - /temperature/p1_core16_temp + - /temperature/p1_core17_temp + - /temperature/p1_core18_temp + - /temperature/p1_core19_temp + - /temperature/p1_core20_temp + - /temperature/p1_core21_temp + - /temperature/p1_core22_temp + - /temperature/p1_core23_temp + - name: zone0_dimms + description: Group of dimm temperature sensors for zone 0 + type: /xyz/openbmc_project/sensors + members: + - /temperature/dimm0_temp + - /temperature/dimm1_temp + - /temperature/dimm2_temp + - /temperature/dimm3_temp + - /temperature/dimm4_temp + - /temperature/dimm5_temp + - /temperature/dimm6_temp + - /temperature/dimm7_temp + - /temperature/dimm8_temp + - /temperature/dimm9_temp + - /temperature/dimm10_temp + - /temperature/dimm11_temp + - /temperature/dimm12_temp + - /temperature/dimm13_temp + - /temperature/dimm14_temp + - /temperature/dimm15_temp + - /temperature/dimm16_temp + - /temperature/dimm17_temp + - /temperature/dimm18_temp + - /temperature/dimm19_temp + - /temperature/dimm20_temp + - /temperature/dimm21_temp + - /temperature/dimm22_temp + - /temperature/dimm23_temp + - /temperature/dimm24_temp + - /temperature/dimm25_temp + - /temperature/dimm26_temp + - /temperature/dimm27_temp + - /temperature/dimm28_temp + - /temperature/dimm29_temp + - /temperature/dimm30_temp + - /temperature/dimm31_temp + - name: zone0_onboard + description: Group of onboard temperature sensors for zone 0 + type: /xyz/openbmc_project/sensors + members: + - /temperature/p0_pcie_temp + - /temperature/p1_pcie_temp + - name: zone0_vrd + description: Group of vrd temperature sensors for zone 0 + type: /xyz/openbmc_project/sensors + members: + - /temperature/p0_vcs_temp + - /temperature/p0_vdn_temp + - /temperature/p1_vcs_temp + - /temperature/p1_vdn_temp + - /temperature/p0_vdd_temp + - /temperature/p1_vdd_temp +matches: + - name: propertiesChanged + description: > + A property changed match + parameters: + - object + - interface + signal: propertySignal + - name: interfacesAdded + description: > + An interfaces added match + parameters: + - object + signal: objectSignal + - name: interfacesRemoved + description: > + An interfaces removed match + parameters: + - object + signal: + name: objectSignal + parameters: + - object + - interface + handler: removeInterface + - name: nameOwnerChanged + description: > + A name owner changed match + parameters: + - object + - interface + signal: ownerSignal + +signals: + - name: propertySignal + description: > + Handle property signals + parameters: + - type + - object + - interface + - property + handler: setProperty + - name: objectSignal + description: > + Handle object signals + parameters: + - type + - object + - interface + - property + handler: setProperty + - name: ownerSignal + description: > + Handle owner signals + parameters: + - object + - interface + handler: setService + +handlers: + - name: setProperty + description: > + Sets a value for the given object/interface/property + parameters: + - type + - object + - interface + - property + - name: setService + description: > + Sets the service name and ownership status for the given group + parameters: + - group + - name: removeInterface + description: > + Removes an interface(and all associated properties) on the + given object from use within all event actions + parameters: + - object + - interface + +preconditions: + - name: property_states_match + description: > + All defined properties must match the values given to + enable a set speed event otherwise fan speeds are set to full + parameters: + - groups + +actions: + - name: call_actions_based_on_timer + description: > + Sets up a list of actions to be invoked when the defined timer + expires (or for each expiration of a repeating timer) + parameters: + - timer + - actions + - name: default_floor_on_missing_owner + description: > + Set the fan floor to the default floor + - name: set_speed_on_missing_owner + description: > + Set fans to the given speed when any service within the group + no longer exists + parameters: + - speed + - name: set_request_speed_base_with_max + description: > + Set the base request speed of a zone to the max value of a group for + calculating a new target speed + - name: count_state_before_speed + description: Set the speed when a number of properties at a state + parameters: + - count + - property + - speed + - name: set_floor_from_average_sensor_value + description: Set floor speed from first entry with average less than key + parameters: + - map + - name: set_ceiling_from_average_sensor_value + description: Set ceiling speed based on key transition values with average + parameters: + - map + - name: set_net_increase_speed + description: > + Set the speed increase delta based on a factor applied to + the delta increase size times the given value and property's + value difference + parameters: + - property + - factor + - delta + - name: set_net_decrease_speed + description: > + Set the speed decrease delta based on a factor applied to + the delta decrease size times the given value and property's + value difference + parameters: + - property + - factor + - delta + - name: use_alternate_events_on_state + description: > + Replaces a set of default events with an alternate set of events + when all the group properties are at a given state + parameters: + - property + - defevents + - altevents + +events: + - name: missing_before_high_speed_air + groups: + - name: air_cooled_zone0_fans + zone_conditions: + - name: air_cooled_chassis + zones: + - 0 + interface: xyz.openbmc_project.Inventory.Item + property: + name: Present + type: bool + matches: + - name: interfacesAdded + - name: propertiesChanged + actions: + - name: count_state_before_speed + count: 1 + property: + value: false + type: bool + speed: + value: 255 + type: uint64_t + - name: fails_before_high_speed_air + groups: + - name: air_cooled_zone0_fans + zone_conditions: + - name: air_cooled_chassis + zones: + - 0 + interface: xyz.openbmc_project.State.Decorator.OperationalStatus + property: + name: Functional + type: bool + matches: + - name: propertiesChanged + actions: + - name: count_state_before_speed + count: 1 + property: + value: false + type: bool + speed: + value: 255 + type: uint64_t + - name: set_air_cooled_speed_boundaries_based_on_ambient + groups: + - name: zone0_control_mode + zone_conditions: + - name: air_cooled_chassis + zones: + - 0 + interface: xyz.openbmc_project.Control.ThermalMode + property: + name: Current + type: std::string + matches: + - name: propertiesChanged + actions: + - name: use_alternate_events_on_state + property: + value: CUSTOM + type: std::string + defevents: + - name: default_floor_boundary + groups: + - name: zone0_ambient + zone_conditions: + - name: air_cooled_chassis + zones: + - 0 + interface: xyz.openbmc_project.Sensor.Value + property: + name: Value + type: int64_t + matches: + - name: propertiesChanged + actions: + - name: set_floor_from_average_sensor_value + map: + value: + - 25000: 85 + - 26000: 85 + - 28000: 97 + - 31000: 116 + - 33000: 128 + - 36000: 148 + - 38000: 160 + - 41000: 255 + type: std::map + - name: set_ceiling_from_average_sensor_value + map: + value: + - 25000: 255 + - 27000: 255 + type: std::map + altevents: + - name: alternate_floor_boundary + groups: + - name: zone0_ambient + zone_conditions: + - name: air_cooled_chassis + zones: + - 0 + interface: xyz.openbmc_project.Sensor.Value + property: + name: Value + type: int64_t + matches: + - name: propertiesChanged + actions: + - name: set_floor_from_average_sensor_value + map: + value: + - 25000: 255 + - 26000: 255 + - 28000: 255 + - 31000: 255 + - 33000: 255 + - 36000: 255 + - 38000: 255 + - 41000: 255 + type: std::map + - name: set_ceiling_from_average_sensor_value + map: + value: + - 25000: 255 + - 27000: 255 + type: std::map + - name: occ_active_speed_changes + precondition: + name: property_states_match + groups: + - name: occ0_object + interface: org.open_power.OCC.Status + property: + name: OccActive + type: bool + value: true + - name: occ1_object + interface: org.open_power.OCC.Status + property: + name: OccActive + type: bool + value: true + matches: + - name: interfacesAdded + - name: propertiesChanged + events: + - name: speed_changes_based_on_core_temps + groups: + - name: zone0_cores + zone_conditions: + - name: air_cooled_chassis + zones: + - 0 + interface: xyz.openbmc_project.Sensor.Value + property: + name: Value + type: int64_t + matches: + - name: interfacesAdded + - name: propertiesChanged + - name: interfacesRemoved + actions: + - name: set_net_increase_speed + property: + value: 75000 + type: int64_t + factor: + value: 1000 + type: int64_t + delta: + value: 13 + type: uint64_t + - name: set_net_decrease_speed + property: + value: 70000 + type: int64_t + factor: + value: 7000 + type: int64_t + delta: + value: 5 + type: uint64_t + timer: + interval: 1 + - name: speed_changes_based_on_dimm_temps + groups: + - name: zone0_dimms + interface: xyz.openbmc_project.Sensor.Value + property: + name: Value + type: int64_t + matches: + - name: interfacesAdded + - name: propertiesChanged + - name: interfacesRemoved + actions: + - name: set_net_increase_speed + property: + value: 80000 + type: int64_t + factor: + value: 1000 + type: int64_t + delta: + value: 8 + type: uint64_t + - name: set_net_decrease_speed + property: + value: 75000 + type: int64_t + factor: + value: 3000 + type: int64_t + delta: + value: 3 + type: uint64_t + timer: + interval: 5 + - name: speed_changes_based_on_onboard_temps + groups: + - name: zone0_onboard + zone_conditions: + - name: air_cooled_chassis + zones: + - 0 + interface: xyz.openbmc_project.Sensor.Value + property: + name: Value + type: int64_t + matches: + - name: interfacesAdded + - name: propertiesChanged + - name: interfacesRemoved + actions: + - name: set_net_increase_speed + property: + value: 50000 + type: int64_t + factor: + value: 1000 + type: int64_t + delta: + value: 8 + type: uint64_t + - name: set_net_decrease_speed + property: + value: 47000 + type: int64_t + factor: + value: 3000 + type: int64_t + delta: + value: 3 + type: uint64_t + timer: + interval: 10 + - name: speed_changes_based_on_vrd_temps + groups: + - name: zone0_vrd + zone_conditions: + - name: air_cooled_chassis + zones: + - 0 + interface: xyz.openbmc_project.Sensor.Value + property: + name: Value + type: int64_t + matches: + - name: interfacesAdded + - name: propertiesChanged + - name: interfacesRemoved + actions: + - name: set_net_increase_speed + property: + value: 90000 + type: int64_t + factor: + value: 1000 + type: int64_t + delta: + value: 5 + type: uint64_t + - name: set_net_decrease_speed + property: + value: 85000 + type: int64_t + factor: + value: 3000 + type: int64_t + delta: + value: 3 + type: uint64_t + timer: + interval: 10 diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-control-fan-config/mihawk/fans.yaml b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-control-fan-config/mihawk/fans.yaml new file mode 100644 index 000000000..9133fa1fa --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-control-fan-config/mihawk/fans.yaml @@ -0,0 +1,31 @@ +fans: + - inventory: /system/chassis/motherboard/fan0 + cooling_zone: 0 + sensors: + - fan0_0 + target_interface: xyz.openbmc_project.Control.FanPwm + - inventory: /system/chassis/motherboard/fan1 + cooling_zone: 0 + sensors: + - fan1_0 + target_interface: xyz.openbmc_project.Control.FanPwm + - inventory: /system/chassis/motherboard/fan2 + cooling_zone: 0 + sensors: + - fan2_0 + target_interface: xyz.openbmc_project.Control.FanPwm + - inventory: /system/chassis/motherboard/fan3 + cooling_zone: 0 + sensors: + - fan3_0 + target_interface: xyz.openbmc_project.Control.FanPwm + - inventory: /system/chassis/motherboard/fan4 + cooling_zone: 0 + sensors: + - fan4_0 + target_interface: xyz.openbmc_project.Control.FanPwm + - inventory: /system/chassis/motherboard/fan5 + cooling_zone: 0 + sensors: + - fan5_0 + target_interface: xyz.openbmc_project.Control.FanPwm diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-control-zone-conditions-config/mihawk/zone_conditions.yaml b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-control-zone-conditions-config/mihawk/zone_conditions.yaml new file mode 100644 index 000000000..7dc99b6a2 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-control-zone-conditions-config/mihawk/zone_conditions.yaml @@ -0,0 +1,9 @@ +conditions: + - name: air_cooled_chassis + type: getProperty + properties: + - property: WaterCooled + interface: xyz.openbmc_project.Inventory.Decorator.CoolingType + path: /xyz/openbmc_project/inventory/system/chassis + type: bool + value: false diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-control-zone-config/mihawk/zones.yaml b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-control-zone-config/mihawk/zones.yaml new file mode 100644 index 000000000..4deb2523e --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-control-zone-config/mihawk/zones.yaml @@ -0,0 +1,42 @@ +manager_configuration: + power_on_delay: 20 + +zone_configuration: + +#Air cooled zones +- zone_conditions: + - name: air_cooled_chassis + + zones: + - zone: 0 + cooling_profiles: + - air + - all + full_speed: 255 + default_floor: 195 + increase_delay: 5 + decrease_interval: 30 + interfaces: + - name: xyz.openbmc_project.Control.ThermalMode + properties: + - name: Supported + type: array[string] + values: + - value: DEFAULT + description: > + Default thermal control mode + - value: CUSTOM + description: > + Custom thermal control mode for handling the use of + optical cables located behind the GPU exhaust that + could produce overtemp warnings without this mode + enabled. + - name: Current + type: string + persist: true + values: + - value: DEFAULT + description: > + Set current thermal control mode to the + default which will be replaced on startup if + another selected mode was persisted. \ No newline at end of file diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-monitor-config/mihawk/monitor.yaml b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-monitor-config/mihawk/monitor.yaml new file mode 100644 index 000000000..076349de5 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-monitor-config/mihawk/monitor.yaml @@ -0,0 +1,96 @@ +fans: + - inventory: /system/chassis/motherboard/fan0 + allowed_out_of_range_time: 10 + deviation: 15 + num_sensors_nonfunc_for_fan_nonfunc: 1 + sensors: + - name: fan0_0 + has_target: true + target_interface: xyz.openbmc_project.Control.FanPwm + factor: 70 + offset: 1200 + - name: fan0_1 + has_target: false + target_interface: xyz.openbmc_project.Control.FanPwm + factor: 70 + offset: 1200 + + - inventory: /system/chassis/motherboard/fan1 + allowed_out_of_range_time: 10 + deviation: 15 + num_sensors_nonfunc_for_fan_nonfunc: 1 + sensors: + - name: fan1_0 + has_target: true + target_interface: xyz.openbmc_project.Control.FanPwm + factor: 70 + offset: 1200 + - name: fan1_1 + has_target: false + target_interface: xyz.openbmc_project.Control.FanPwm + factor: 70 + offset: 1200 + + - inventory: /system/chassis/motherboard/fan2 + allowed_out_of_range_time: 10 + deviation: 15 + num_sensors_nonfunc_for_fan_nonfunc: 1 + sensors: + - name: fan2_0 + has_target: true + target_interface: xyz.openbmc_project.Control.FanPwm + factor: 70 + offset: 1200 + - name: fan2_1 + has_target: false + target_interface: xyz.openbmc_project.Control.FanPwm + factor: 70 + offset: 1200 + + - inventory: /system/chassis/motherboard/fan3 + allowed_out_of_range_time: 10 + deviation: 15 + num_sensors_nonfunc_for_fan_nonfunc: 1 + sensors: + - name: fan3_0 + has_target: true + target_interface: xyz.openbmc_project.Control.FanPwm + factor: 70 + offset: 1200 + - name: fan3_1 + has_target: false + target_interface: xyz.openbmc_project.Control.FanPwm + factor: 70 + offset: 1200 + + - inventory: /system/chassis/motherboard/fan4 + allowed_out_of_range_time: 10 + deviation: 15 + num_sensors_nonfunc_for_fan_nonfunc: 1 + sensors: + - name: fan4_0 + has_target: true + target_interface: xyz.openbmc_project.Control.FanPwm + factor: 70 + offset: 1200 + - name: fan4_1 + has_target: false + target_interface: xyz.openbmc_project.Control.FanPwm + factor: 70 + offset: 1200 + + - inventory: /system/chassis/motherboard/fan5 + allowed_out_of_range_time: 10 + deviation: 15 + num_sensors_nonfunc_for_fan_nonfunc: 1 + sensors: + - name: fan5_0 + has_target: true + target_interface: xyz.openbmc_project.Control.FanPwm + factor: 70 + offset: 1200 + - name: fan5_1 + has_target: false + target_interface: xyz.openbmc_project.Control.FanPwm + factor: 70 + offset: 1200 diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-presence-config/mihawk/config.yaml b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-presence-config/mihawk/config.yaml new file mode 100644 index 000000000..9cb5ecddb --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-presence-config/mihawk/config.yaml @@ -0,0 +1,47 @@ +- name: fan0 + path: /system/chassis/motherboard/fan0 + methods: + - type: gpio + key: 9 + physpath: /sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a100.i2c-bus/i2c-3/3-0060 + devpath: /dev/input/by-path/platform-gpio-keys-polled-event + +- name: fan1 + path: /system/chassis/motherboard/fan1 + methods: + - type: gpio + key: 10 + physpath: /sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a100.i2c-bus/i2c-3/3-0060 + devpath: /dev/input/by-path/platform-gpio-keys-polled-event + +- name: fan2 + path: /system/chassis/motherboard/fan2 + methods: + - type: gpio + key: 11 + physpath: /sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a100.i2c-bus/i2c-3/3-0060 + devpath: /dev/input/by-path/platform-gpio-keys-polled-event + +- name: fan3 + path: /system/chassis/motherboard/fan3 + methods: + - type: gpio + key: 12 + physpath: /sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a100.i2c-bus/i2c-3/3-0060 + devpath: /dev/input/by-path/platform-gpio-keys-polled-event + +- name: fan4 + path: /system/chassis/motherboard/fan4 + methods: + - type: gpio + key: 13 + physpath: /sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a100.i2c-bus/i2c-3/3-0060 + devpath: /dev/input/by-path/platform-gpio-keys-polled-event + +- name: fan5 + path: /system/chassis/motherboard/fan5 + methods: + - type: gpio + key: 14 + physpath: /sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a100.i2c-bus/i2c-3/3-0060 + devpath: /dev/input/by-path/platform-gpio-keys-polled-event diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan/mihawk/obmc/phosphor-fan/phosphor-cooling-type-0.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan/mihawk/obmc/phosphor-fan/phosphor-cooling-type-0.conf new file mode 100644 index 000000000..21fcfcb49 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan/mihawk/obmc/phosphor-fan/phosphor-cooling-type-0.conf @@ -0,0 +1,3 @@ +OBJPATH="--path=/system/chassis" +AIR="--air" + diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan/mihawk/phosphor-cooling-type@.service b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan/mihawk/phosphor-cooling-type@.service new file mode 100644 index 000000000..9232b13fc --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan/mihawk/phosphor-cooling-type@.service @@ -0,0 +1,15 @@ +[Unit] +Description=Phosphor Cooling Type +Wants=mapper-wait@-xyz-openbmc_project-inventory.service +After=mapper-wait@-xyz-openbmc_project-inventory.service +ConditionPathExists={envfiledir}/obmc/phosphor-fan/phosphor-cooling-type-%i.conf + +[Service] +Type=oneshot +RemainAfterExit=yes +EnvironmentFile={envfiledir}/obmc/phosphor-fan/phosphor-cooling-type-%i.conf +ExecStart=/usr/bin/env phosphor-cooling-type ${{OBJPATH}} ${{AIR}} +SyslogIdentifier=phosphor-cooling-type + +[Install] +RequiredBy=multi-user.target diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan_%.bbappend b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan_%.bbappend index 88c32ffa6..085857c31 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan_%.bbappend +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan_%.bbappend @@ -3,9 +3,14 @@ FILESEXTRAPATHS_prepend := "${THISDIR}/${BPN}:" # Package configuration FAN_PACKAGES_append_ibm-ac-server = " \ phosphor-cooling-type \ -" + " + +FAN_PACKAGES_append_mihawk = " \ + phosphor-cooling-type \ + " PACKAGECONFIG_append_ibm-ac-server = " cooling-type" +PACKAGECONFIG_append_mihawk = " cooling-type" TMPL_COOLING = "phosphor-cooling-type@.service" INSTFMT_COOLING = "phosphor-cooling-type@{0}.service" @@ -15,10 +20,14 @@ FMT_COOLING = "../${TMPL_COOLING}:${COOLING_TGT}.requires/${INSTFMT_COOLING}" FILES_phosphor-cooling-type_append_ibm-ac-server = " ${bindir}/phosphor-cooling-type" SYSTEMD_SERVICE_phosphor-cooling-type_append_ibm-ac-server = " ${TMPL_COOLING}" SYSTEMD_LINK_phosphor-cooling-type_append_ibm-ac-server = " ${@compose_list(d, 'FMT_COOLING', 'OBMC_CHASSIS_INSTANCES')}" +FILES_phosphor-cooling-type_append_mihawk = " ${bindir}/phosphor-cooling-type" +SYSTEMD_SERVICE_phosphor-cooling-type_append_mihawk = " ${TMPL_COOLING}" +SYSTEMD_LINK_phosphor-cooling-type_append_mihawk = " ${@compose_list(d, 'FMT_COOLING', 'OBMC_CHASSIS_INSTANCES')}" COOLING_ENV_FMT = "obmc/phosphor-fan/phosphor-cooling-type-{0}.conf" SYSTEMD_ENVIRONMENT_FILE_phosphor-cooling-type_append_ibm-ac-server = " ${@compose_list(d, 'COOLING_ENV_FMT', 'OBMC_CHASSIS_INSTANCES')}" +SYSTEMD_ENVIRONMENT_FILE_phosphor-cooling-type_append_mihawk = " ${@compose_list(d, 'COOLING_ENV_FMT', 'OBMC_CHASSIS_INSTANCES')}" #These services are protected by the watchdog SYSTEMD_OVERRIDE_phosphor-fan-control_witherspoon += "fan-watchdog-monitor.conf:phosphor-fan-control-init@0.service.d/fan-watchdog-monitor.conf" diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/packagegroups/packagegroup-obmc-apps.bbappend b/meta-ibm/meta-witherspoon/recipes-phosphor/packagegroups/packagegroup-obmc-apps.bbappend index b2e466d76..f32ba3eb5 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/packagegroups/packagegroup-obmc-apps.bbappend +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/packagegroups/packagegroup-obmc-apps.bbappend @@ -1,5 +1,5 @@ RDEPENDS_${PN}-inventory_append_ibm-ac-server = " openpower-fru-vpd openpower-occ-control phosphor-cooling-type virtual/obmc-gpio-presence" -RDEPENDS_${PN}-inventory_append_mihawk = " openpower-fru-vpd openpower-occ-control virtual/obmc-gpio-presence id-button" +RDEPENDS_${PN}-inventory_append_mihawk = " openpower-fru-vpd openpower-occ-control virtual/obmc-gpio-presence id-button phosphor-cooling-type" RDEPENDS_${PN}-fan-control_append_ibm-ac-server = " witherspoon-fan-watchdog" RDEPENDS_${PN}-extras_append_ibm-ac-server = " witherspoon-pfault-analysis witherspoon-power-supply-sync phosphor-webui" RDEPENDS_${PN}-extras_append_mihawk = " phosphor-webui phosphor-image-signing" diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@100/power-supply@58.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@100/power-supply@58.conf new file mode 100644 index 000000000..61b4253bf --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@100/power-supply@58.conf @@ -0,0 +1,4 @@ +LABEL_in1="ps1_input_voltage" +LABEL_in2="ps1_output_voltage" +LABEL_curr1="ps1_output_current" +LABEL_power1="ps1_input_power" diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@100/power-supply@5b.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@100/power-supply@5b.conf new file mode 100644 index 000000000..92838e1d0 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@100/power-supply@5b.conf @@ -0,0 +1,4 @@ +LABEL_in1="ps0_input_voltage" +LABEL_in2="ps0_output_voltage" +LABEL_curr1="ps0_output_current" +LABEL_power1="ps0_input_power" diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@140/ir35221@70.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@140/ir35221@70.conf new file mode 100644 index 000000000..3c25a4a01 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@140/ir35221@70.conf @@ -0,0 +1,11 @@ +LABEL_temp1 = "p0_vdd_temp" +WARNHI_temp1 = "100000" +WARNLO_temp1 = "0" +CRITHI_temp1 = "105000" +CRITLO_temp1 = "0" + +LABEL_temp2 = "p0_vcs_temp" +WARNHI_temp2 = "100000" +WARNLO_temp2 = "0" +CRITHI_temp2 = "105000" +CRITLO_temp2 = "0" diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@140/ir35221@72.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@140/ir35221@72.conf new file mode 100644 index 000000000..7f1f4d871 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@140/ir35221@72.conf @@ -0,0 +1,5 @@ +LABEL_temp1 = "p0_vdn_temp" +WARNHI_temp1 = "100000" +WARNLO_temp1 = "0" +CRITHI_temp1 = "105000" +CRITLO_temp1 = "0" diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@180/ir35221@70.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@180/ir35221@70.conf new file mode 100644 index 000000000..5f0985d7c --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@180/ir35221@70.conf @@ -0,0 +1,11 @@ +LABEL_temp1 = "p1_vdd_temp" +WARNHI_temp1 = "100000" +WARNLO_temp1 = "0" +CRITHI_temp1 = "105000" +CRITLO_temp1 = "0" + +LABEL_temp2 = "p1_vcs_temp" +WARNHI_temp2 = "100000" +WARNLO_temp2 = "0" +CRITHI_temp2 = "105000" +CRITLO_temp2 = "0" \ No newline at end of file diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@180/ir35221@72.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@180/ir35221@72.conf new file mode 100644 index 000000000..438372837 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@180/ir35221@72.conf @@ -0,0 +1,5 @@ +LABEL_temp1 = "p1_vdn_temp" +WARNHI_temp1 = "100000" +WARNLO_temp1 = "0" +CRITHI_temp1 = "105000" +CRITLO_temp1 = "0" \ No newline at end of file diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@400/emc1403@4c.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@400/emc1403@4c.conf new file mode 100644 index 000000000..7c7b24811 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@400/emc1403@4c.conf @@ -0,0 +1,2 @@ +LABEL_temp2 = "ambient_temp" + diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@400/tmp275@48.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@400/tmp275@48.conf new file mode 100644 index 000000000..4f89e7f34 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@400/tmp275@48.conf @@ -0,0 +1,2 @@ +LABEL_temp1 = "p1_pcie_temp" + diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@400/tmp275@49.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@400/tmp275@49.conf new file mode 100644 index 000000000..959c66f9d --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@400/tmp275@49.conf @@ -0,0 +1,2 @@ +LABEL_temp1 = "p0_pcie_temp" + diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@440/pca9545@70/i2c@3/tmp275@48.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@440/pca9545@70/i2c@3/tmp275@48.conf new file mode 100644 index 000000000..82f065818 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/bus@1e78a000/i2c-bus@440/pca9545@70/i2c@3/tmp275@48.conf @@ -0,0 +1,2 @@ +LABEL_temp1 = "M2_riser_temp" + diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/pwm-tacho-controller@1e786000.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/pwm-tacho-controller@1e786000.conf new file mode 100644 index 000000000..5d14ebc94 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/ahb/apb/pwm-tacho-controller@1e786000.conf @@ -0,0 +1,25 @@ +LABEL_fan1 = "fan0_0" +LABEL_fan2 = "fan0_1" +LABEL_fan3 = "fan1_0" +LABEL_fan4 = "fan1_1" +LABEL_fan5 = "fan2_0" +LABEL_fan6 = "fan2_1" +LABEL_fan7 = "fan3_0" +LABEL_fan8 = "fan3_1" +LABEL_fan9 = "fan4_0" +LABEL_fan10 = "fan4_1" +LABEL_fan11 = "fan5_0" +LABEL_fan12 = "fan5_1" + +PWM_TARGET_fan1 = "1" +PWM_TARGET_fan2 = "1" +PWM_TARGET_fan3 = "2" +PWM_TARGET_fan4 = "2" +PWM_TARGET_fan5 = "3" +PWM_TARGET_fan6 = "3" +PWM_TARGET_fan7 = "4" +PWM_TARGET_fan8 = "4" +PWM_TARGET_fan9 = "5" +PWM_TARGET_fan10 = "5" +PWM_TARGET_fan11 = "6" +PWM_TARGET_fan12 = "6" \ No newline at end of file diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/devices/platform/gpio-fsi/fsi0/slave@00--00/00--00--00--06/sbefifo1-dev0/occ-hwmon.1.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/devices/platform/gpio-fsi/fsi0/slave@00--00/00--00--00--06/sbefifo1-dev0/occ-hwmon.1.conf new file mode 100644 index 000000000..f47b49a82 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/devices/platform/gpio-fsi/fsi0/slave@00--00/00--00--00--06/sbefifo1-dev0/occ-hwmon.1.conf @@ -0,0 +1,290 @@ +MODE_temp1 = "label" +MODE_temp2 = "label" +MODE_temp3 = "label" +MODE_temp4 = "label" +MODE_temp5 = "label" +MODE_temp6 = "label" +MODE_temp7 = "label" +MODE_temp8 = "label" +MODE_temp9 = "label" +MODE_temp10 = "label" +MODE_temp11 = "label" +MODE_temp12 = "label" +MODE_temp13 = "label" +MODE_temp14 = "label" +MODE_temp15 = "label" +MODE_temp16 = "label" +MODE_temp17 = "label" +MODE_temp18 = "label" +MODE_temp19 = "label" +MODE_temp20 = "label" +MODE_temp21 = "label" +MODE_temp22 = "label" +MODE_temp23 = "label" +MODE_temp24 = "label" +MODE_temp25 = "label" +MODE_temp26 = "label" +MODE_temp27 = "label" +MODE_temp28 = "label" +MODE_temp29 = "label" +MODE_temp30 = "label" +MODE_temp31 = "label" +MODE_temp32 = "label" +MODE_temp33 = "label" +MODE_temp34 = "label" +MODE_temp35 = "label" +MODE_temp36 = "label" +MODE_temp37 = "label" +MODE_temp38 = "label" +MODE_temp39 = "label" +MODE_temp40 = "label" +LABEL_temp17 = "p0_core0_temp" +WARNHI_temp17 = "85000" +WARNLO_temp17 = "0" +CRITHI_temp17 = "90000" +CRITLO_temp17 = "0" + +LABEL_temp20 = "p0_core1_temp" +WARNHI_temp20 = "85000" +WARNLO_temp20 = "0" +CRITHI_temp20 = "90000" +CRITLO_temp20 = "0" + +LABEL_temp23 = "p0_core2_temp" +WARNHI_temp23 = "85000" +WARNLO_temp23 = "0" +CRITHI_temp23 = "90000" +CRITLO_temp23 = "0" + +LABEL_temp26 = "p0_core3_temp" +WARNHI_temp26 = "85000" +WARNLO_temp26 = "0" +CRITHI_temp26 = "90000" +CRITLO_temp26 = "0" + +LABEL_temp29 = "p0_core4_temp" +WARNHI_temp29 = "85000" +WARNLO_temp29 = "0" +CRITHI_temp29 = "90000" +CRITLO_temp29 = "0" + +LABEL_temp32 = "p0_core5_temp" +WARNHI_temp32 = "85000" +WARNLO_temp32 = "0" +CRITHI_temp32 = "90000" +CRITLO_temp32 = "0" + +LABEL_temp35 = "p0_core6_temp" +WARNHI_temp35 = "85000" +WARNLO_temp35 = "0" +CRITHI_temp35 = "90000" +CRITLO_temp35 = "0" + +LABEL_temp38 = "p0_core7_temp" +WARNHI_temp38 = "85000" +WARNLO_temp38 = "0" +CRITHI_temp38 = "90000" +CRITLO_temp38 = "0" + +LABEL_temp41 = "p0_core8_temp" +WARNHI_temp41 = "85000" +WARNLO_temp41 = "0" +CRITHI_temp41 = "90000" +CRITLO_temp41 = "0" + +LABEL_temp44 = "p0_core9_temp" +WARNHI_temp44 = "85000" +WARNLO_temp44 = "0" +CRITHI_temp44 = "90000" +CRITLO_temp44 = "0" + +LABEL_temp47 = "p0_core10_temp" +WARNHI_temp47 = "85000" +WARNLO_temp47 = "0" +CRITHI_temp47 = "90000" +CRITLO_temp47 = "0" + +LABEL_temp50 = "p0_core11_temp" +WARNHI_temp50 = "85000" +WARNLO_temp50 = "0" +CRITHI_temp50 = "90000" +CRITLO_temp50 = "0" + +LABEL_temp53 = "p0_core12_temp" +WARNHI_temp53 = "85000" +WARNLO_temp53 = "0" +CRITHI_temp53 = "90000" +CRITLO_temp53 = "0" + +LABEL_temp56 = "p0_core13_temp" +WARNHI_temp56 = "85000" +WARNLO_temp56 = "0" +CRITHI_temp56 = "90000" +CRITLO_temp56 = "0" + +LABEL_temp59 = "p0_core14_temp" +WARNHI_temp59 = "85000" +WARNLO_temp59 = "0" +CRITHI_temp59 = "90000" +CRITLO_temp59 = "0" + +LABEL_temp62 = "p0_core15_temp" +WARNHI_temp62 = "85000" +WARNLO_temp62 = "0" +CRITHI_temp62 = "90000" +CRITLO_temp62 = "0" + +LABEL_temp65 = "p0_core16_temp" +WARNHI_temp65 = "85000" +WARNLO_temp65 = "0" +CRITHI_temp65 = "90000" +CRITLO_temp65 = "0" + +LABEL_temp68 = "p0_core17_temp" +WARNHI_temp68 = "85000" +WARNLO_temp68 = "0" +CRITHI_temp68 = "90000" +CRITLO_temp68 = "0" + +LABEL_temp71 = "p0_core18_temp" +WARNHI_temp71 = "85000" +WARNLO_temp71 = "0" +CRITHI_temp71 = "90000" +CRITLO_temp71 = "0" + +LABEL_temp74 = "p0_core19_temp" +WARNHI_temp74 = "85000" +WARNLO_temp74 = "0" +CRITHI_temp74 = "90000" +CRITLO_temp74 = "0" + +LABEL_temp77 = "p0_core20_temp" +WARNHI_temp77 = "85000" +WARNLO_temp77 = "0" +CRITHI_temp77 = "90000" +CRITLO_temp77 = "0" + +LABEL_temp80 = "p0_core21_temp" +WARNHI_temp80 = "85000" +WARNLO_temp80 = "0" +CRITHI_temp80 = "90000" +CRITLO_temp80 = "0" + +LABEL_temp83 = "p0_core22_temp" +WARNHI_temp83 = "85000" +WARNLO_temp83 = "0" +CRITHI_temp83 = "90000" +CRITLO_temp83 = "0" + +LABEL_temp86 = "p0_core23_temp" +WARNHI_temp86 = "85000" +WARNLO_temp86 = "0" +CRITHI_temp86 = "90000" +CRITLO_temp86 = "0" + +LABEL_temp165 = "dimm0_temp" +WARNHI_temp165 = "85000" +WARNLO_temp165 = "0" +CRITHI_temp165 = "95000" +CRITLO_temp165 = "0" + +LABEL_temp167 = "dimm1_temp" +WARNHI_temp167 = "85000" +WARNLO_temp167 = "0" +CRITHI_temp167 = "95000" +CRITLO_temp167 = "0" + +LABEL_temp169 = "dimm2_temp" +WARNHI_temp169 = "85000" +WARNLO_temp169 = "0" +CRITHI_temp169 = "95000" +CRITLO_temp169 = "0" + +LABEL_temp171 = "dimm3_temp" +WARNHI_temp171 = "85000" +WARNLO_temp171 = "0" +CRITHI_temp171 = "95000" +CRITLO_temp171 = "0" + +LABEL_temp173 = "dimm4_temp" +WARNHI_temp173 = "85000" +WARNLO_temp173 = "0" +CRITHI_temp173 = "95000" +CRITLO_temp173 = "0" + +LABEL_temp175 = "dimm5_temp" +WARNHI_temp175 = "85000" +WARNLO_temp175 = "0" +CRITHI_temp175 = "95000" +CRITLO_temp175 = "0" + +LABEL_temp177 = "dimm6_temp" +WARNHI_temp177 = "85000" +WARNLO_temp177 = "0" +CRITHI_temp177 = "95000" +CRITLO_temp177 = "0" + +LABEL_temp179 = "dimm7_temp" +WARNHI_temp179 = "85000" +WARNLO_temp179 = "0" +CRITHI_temp179 = "95000" +CRITLO_temp179 = "0" + +LABEL_temp197 = "dimm16_temp" +WARNHI_temp197 = "85000" +WARNLO_temp197 = "0" +CRITHI_temp197 = "95000" +CRITLO_temp197 = "0" + +LABEL_temp199 = "dimm17_temp" +WARNHI_temp199 = "85000" +WARNLO_temp199 = "0" +CRITHI_temp199 = "95000" +CRITLO_temp199 = "0" + +LABEL_temp201 = "dimm18_temp" +WARNHI_temp201 = "85000" +WARNLO_temp201 = "0" +CRITHI_temp201 = "95000" +CRITLO_temp201 = "0" + +LABEL_temp203 = "dimm19_temp" +WARNHI_temp203 = "85000" +WARNLO_temp203 = "0" +CRITHI_temp203 = "95000" +CRITLO_temp203 = "0" + +LABEL_temp205 = "dimm20_temp" +WARNHI_temp205 = "85000" +WARNLO_temp205 = "0" +CRITHI_temp205 = "95000" +CRITLO_temp205 = "0" + +LABEL_temp207 = "dimm21_temp" +WARNHI_temp207 = "85000" +WARNLO_temp207 = "0" +CRITHI_temp207 = "95000" +CRITLO_temp207 = "0" + +LABEL_temp209 = "dimm22_temp" +WARNHI_temp209 = "85000" +WARNLO_temp209 = "0" +CRITHI_temp209 = "95000" +CRITLO_temp209 = "0" + +LABEL_temp211 = "dimm23_temp" +WARNHI_temp211 = "85000" +WARNLO_temp211 = "0" +CRITHI_temp211 = "95000" +CRITLO_temp211 = "0" + +LABEL_power2 = "io_b_power" +LABEL_power3 = "io_a_power" +LABEL_power4 = "p1_mem_power" +LABEL_power5 = "p1_vdd_power" +LABEL_power6 = "p0_mem_power" +LABEL_power7 = "p0_vdd_power" +LABEL_power8 = "fans_power" +LABEL_power9 = "storage_b_power" +LABEL_power10 = "storage_a_power" +LABEL_power11 = "gpu0_power" diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/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.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/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.conf new file mode 100644 index 000000000..ba53cd95d --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/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.conf @@ -0,0 +1,280 @@ +MODE_temp1 = "label" +MODE_temp2 = "label" +MODE_temp3 = "label" +MODE_temp4 = "label" +MODE_temp5 = "label" +MODE_temp6 = "label" +MODE_temp7 = "label" +MODE_temp8 = "label" +MODE_temp9 = "label" +MODE_temp10 = "label" +MODE_temp11 = "label" +MODE_temp12 = "label" +MODE_temp13 = "label" +MODE_temp14 = "label" +MODE_temp15 = "label" +MODE_temp16 = "label" +MODE_temp17 = "label" +MODE_temp18 = "label" +MODE_temp19 = "label" +MODE_temp20 = "label" +MODE_temp21 = "label" +MODE_temp22 = "label" +MODE_temp23 = "label" +MODE_temp24 = "label" +MODE_temp25 = "label" +MODE_temp26 = "label" +MODE_temp27 = "label" +MODE_temp28 = "label" +MODE_temp29 = "label" +MODE_temp30 = "label" +MODE_temp31 = "label" +MODE_temp32 = "label" +MODE_temp33 = "label" +MODE_temp34 = "label" +MODE_temp35 = "label" +MODE_temp36 = "label" +MODE_temp37 = "label" +MODE_temp38 = "label" +MODE_temp39 = "label" +MODE_temp40 = "label" +LABEL_temp91 = "p1_core0_temp" +WARNHI_temp91 = "85000" +WARNLO_temp91 = "0" +CRITHI_temp91 = "90000" +CRITLO_temp91 = "0" + +LABEL_temp94 = "p1_core1_temp" +WARNHI_temp94 = "85000" +WARNLO_temp94 = "0" +CRITHI_temp94 = "90000" +CRITLO_temp94 = "0" + +LABEL_temp97 = "p1_core2_temp" +WARNHI_temp97 = "85000" +WARNLO_temp97 = "0" +CRITHI_temp97 = "90000" +CRITLO_temp97 = "0" + +LABEL_temp100 = "p1_core3_temp" +WARNHI_temp100 = "85000" +WARNLO_temp100 = "0" +CRITHI_temp100 = "90000" +CRITLO_temp100 = "0" + +LABEL_temp103 = "p1_core4_temp" +WARNHI_temp103 = "85000" +WARNLO_temp103 = "0" +CRITHI_temp103 = "90000" +CRITLO_temp103 = "0" + +LABEL_temp106 = "p1_core5_temp" +WARNHI_temp106 = "85000" +WARNLO_temp106 = "0" +CRITHI_temp106 = "90000" +CRITLO_temp106 = "0" + +LABEL_temp109 = "p1_core6_temp" +WARNHI_temp109 = "85000" +WARNLO_temp109 = "0" +CRITHI_temp109 = "90000" +CRITLO_temp109 = "0" + +LABEL_temp112 = "p1_core7_temp" +WARNHI_temp112 = "85000" +WARNLO_temp112 = "0" +CRITHI_temp112 = "90000" +CRITLO_temp112 = "0" + +LABEL_temp115 = "p1_core8_temp" +WARNHI_temp115 = "85000" +WARNLO_temp115 = "0" +CRITHI_temp115 = "90000" +CRITLO_temp115 = "0" + +LABEL_temp118 = "p1_core9_temp" +WARNHI_temp118 = "85000" +WARNLO_temp118 = "0" +CRITHI_temp118 = "90000" +CRITLO_temp118 = "0" + +LABEL_temp121 = "p1_core10_temp" +WARNHI_temp121 = "85000" +WARNLO_temp121 = "0" +CRITHI_temp121 = "90000" +CRITLO_temp121 = "0" + +LABEL_temp124 = "p1_core11_temp" +WARNHI_temp124 = "85000" +WARNLO_temp124 = "0" +CRITHI_temp124 = "90000" +CRITLO_temp124 = "0" + +LABEL_temp127 = "p1_core12_temp" +WARNHI_temp127 = "85000" +WARNLO_temp127 = "0" +CRITHI_temp127 = "90000" +CRITLO_temp127 = "0" + +LABEL_temp130 = "p1_core13_temp" +WARNHI_temp130 = "85000" +WARNLO_temp130 = "0" +CRITHI_temp130 = "90000" +CRITLO_temp130 = "0" + +LABEL_temp133 = "p1_core14_temp" +WARNHI_temp133 = "85000" +WARNLO_temp133 = "0" +CRITHI_temp133 = "90000" +CRITLO_temp133 = "0" + +LABEL_temp136 = "p1_core15_temp" +WARNHI_temp136 = "85000" +WARNLO_temp136 = "0" +CRITHI_temp136 = "90000" +CRITLO_temp136 = "0" + +LABEL_temp139 = "p1_core16_temp" +WARNHI_temp139 = "85000" +WARNLO_temp139 = "0" +CRITHI_temp139 = "90000" +CRITLO_temp139 = "0" + +LABEL_temp142 = "p1_core17_temp" +WARNHI_temp142 = "85000" +WARNLO_temp142 = "0" +CRITHI_temp142 = "90000" +CRITLO_temp142 = "0" + +LABEL_temp145 = "p1_core18_temp" +WARNHI_temp145 = "85000" +WARNLO_temp145 = "0" +CRITHI_temp145 = "90000" +CRITLO_temp145 = "0" + +LABEL_temp148 = "p1_core19_temp" +WARNHI_temp148 = "85000" +WARNLO_temp148 = "0" +CRITHI_temp148 = "90000" +CRITLO_temp148 = "0" + +LABEL_temp151 = "p1_core20_temp" +WARNHI_temp151 = "85000" +WARNLO_temp151 = "0" +CRITHI_temp151 = "90000" +CRITLO_temp151 = "0" + +LABEL_temp154 = "p1_core21_temp" +WARNHI_temp154 = "85000" +WARNLO_temp154 = "0" +CRITHI_temp154 = "90000" +CRITLO_temp154 = "0" + +LABEL_temp157 = "p1_core22_temp" +WARNHI_temp157 = "85000" +WARNLO_temp157 = "0" +CRITHI_temp157 = "90000" +CRITLO_temp157 = "0" + +LABEL_temp160 = "p1_core23_temp" +WARNHI_temp160 = "85000" +WARNLO_temp160 = "0" +CRITHI_temp160 = "90000" +CRITLO_temp160 = "0" + +LABEL_temp181 = "dimm8_temp" +WARNHI_temp181 = "85000" +WARNLO_temp181 = "0" +CRITHI_temp181 = "95000" +CRITLO_temp181 = "0" + +LABEL_temp183 = "dimm9_temp" +WARNHI_temp183 = "85000" +WARNLO_temp183 = "0" +CRITHI_temp183 = "95000" +CRITLO_temp183 = "0" + +LABEL_temp185 = "dimm10_temp" +WARNHI_temp185 = "85000" +WARNLO_temp185 = "0" +CRITHI_temp185 = "95000" +CRITLO_temp185 = "0" + +LABEL_temp187 = "dimm11_temp" +WARNHI_temp187 = "85000" +WARNLO_temp187 = "0" +CRITHI_temp187 = "95000" +CRITLO_temp187 = "0" + +LABEL_temp189 = "dimm12_temp" +WARNHI_temp189 = "85000" +WARNLO_temp189 = "0" +CRITHI_temp189 = "95000" +CRITLO_temp189 = "0" + +LABEL_temp191 = "dimm13_temp" +WARNHI_temp191 = "85000" +WARNLO_temp191 = "0" +CRITHI_temp191 = "95000" +CRITLO_temp191 = "0" + +LABEL_temp193 = "dimm14_temp" +WARNHI_temp193 = "85000" +WARNLO_temp193 = "0" +CRITHI_temp193 = "95000" +CRITLO_temp193 = "0" + +LABEL_temp195 = "dimm15_temp" +WARNHI_temp195 = "85000" +WARNLO_temp195 = "0" +CRITHI_temp195 = "95000" +CRITLO_temp195 = "0" + +LABEL_temp213 = "dimm24_temp" +WARNHI_temp213 = "85000" +WARNLO_temp213 = "0" +CRITHI_temp213 = "95000" +CRITLO_temp213 = "0" + +LABEL_temp215 = "dimm25_temp" +WARNHI_temp215 = "85000" +WARNLO_temp215 = "0" +CRITHI_temp215 = "95000" +CRITLO_temp215 = "0" + +LABEL_temp217 = "dimm26_temp" +WARNHI_temp217 = "85000" +WARNLO_temp217 = "0" +CRITHI_temp217 = "95000" +CRITLO_temp217 = "0" + +LABEL_temp219 = "dimm27_temp" +WARNHI_temp219 = "85000" +WARNLO_temp219 = "0" +CRITHI_temp219 = "95000" +CRITLO_temp219 = "0" + +LABEL_temp221 = "dimm28_temp" +WARNHI_temp221 = "85000" +WARNLO_temp221 = "0" +CRITHI_temp221 = "95000" +CRITLO_temp221 = "0" + +LABEL_temp223 = "dimm29_temp" +WARNHI_temp223 = "85000" +WARNLO_temp223 = "0" +CRITHI_temp223 = "95000" +CRITLO_temp223 = "0" + +LABEL_temp225 = "dimm30_temp" +WARNHI_temp225 = "85000" +WARNLO_temp225 = "0" +CRITHI_temp225 = "95000" +CRITLO_temp225 = "0" + +LABEL_temp227 = "dimm31_temp" +WARNHI_temp227 = "85000" +WARNLO_temp227 = "0" +CRITHI_temp227 = "95000" +CRITLO_temp227 = "0" + diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-12v.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-12v.conf new file mode 100644 index 000000000..81d3aa519 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-12v.conf @@ -0,0 +1,2 @@ +LABEL_in1=12V +GAIN_in1=7.5 \ No newline at end of file diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-3v.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-3v.conf new file mode 100644 index 000000000..d7e4a92e8 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-3v.conf @@ -0,0 +1,2 @@ +LABEL_in1=3V +GAIN_in1=3 \ No newline at end of file diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-5v.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-5v.conf new file mode 100644 index 000000000..b9ea49ef0 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-5v.conf @@ -0,0 +1,2 @@ +LABEL_in1=5V +GAIN_in1=3 \ No newline at end of file diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-battery.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-battery.conf new file mode 100644 index 000000000..6f7341cd5 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-battery.conf @@ -0,0 +1,9 @@ +LABEL_in1=vbat +GAIN_in1=2.368 + +# GPIOR3 needs to be pulled high for battery voltage reading +GPIOCHIP_in1=0 +GPIO_in1=139 + +# Read it every day so it does not impact battery life +INTERVAL=86400000000 \ No newline at end of file diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vcs0.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vcs0.conf new file mode 100644 index 000000000..4b8261f40 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vcs0.conf @@ -0,0 +1,2 @@ +LABEL_in1=vcs0 +GAIN_in1=1 diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vcs1.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vcs1.conf new file mode 100644 index 000000000..02732c677 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vcs1.conf @@ -0,0 +1,2 @@ +LABEL_in1=vcs1 +GAIN_in1=1 \ No newline at end of file diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vdd0.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vdd0.conf new file mode 100644 index 000000000..f91914057 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vdd0.conf @@ -0,0 +1,2 @@ +LABEL_in1=vdd0 +GAIN_in1=1 diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vdd1.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vdd1.conf new file mode 100644 index 000000000..fe188856b --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vdd1.conf @@ -0,0 +1,2 @@ +LABEL_in1=vdd1 +GAIN_in1=1 \ No newline at end of file diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vddra.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vddra.conf new file mode 100644 index 000000000..3a11fd246 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vddra.conf @@ -0,0 +1,2 @@ +LABEL_in1=vddra +GAIN_in1=1 diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vddrb.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vddrb.conf new file mode 100644 index 000000000..e9811cb1e --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vddrb.conf @@ -0,0 +1,2 @@ +LABEL_in1=vddrb +GAIN_in1=1 \ No newline at end of file diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vddrc.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vddrc.conf new file mode 100644 index 000000000..1753d93a5 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vddrc.conf @@ -0,0 +1,2 @@ +LABEL_in1=vddrc +GAIN_in1=1 diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vddrd.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vddrd.conf new file mode 100644 index 000000000..8fbfcd330 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vddrd.conf @@ -0,0 +1,2 @@ +LABEL_in1=vddrd +GAIN_in1=1 \ No newline at end of file diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vdn0.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vdn0.conf new file mode 100644 index 000000000..afe6fcead --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vdn0.conf @@ -0,0 +1,2 @@ +LABEL_in1=vdn0 +GAIN_in1=1 diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vdn1.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vdn1.conf new file mode 100644 index 000000000..5141b2969 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vdn1.conf @@ -0,0 +1,2 @@ +LABEL_in1=vdn1 +GAIN_in1=1 \ No newline at end of file diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vio0.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vio0.conf new file mode 100644 index 000000000..bf8e352e5 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vio0.conf @@ -0,0 +1,2 @@ +LABEL_in1=vio0 +GAIN_in1=1 diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vio1.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vio1.conf new file mode 100644 index 000000000..d81958530 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/iio-hwmon-vio1.conf @@ -0,0 +1,2 @@ +LABEL_in1=vio1 +GAIN_in1=1 \ No newline at end of file diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon_%.bbappend b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon_%.bbappend index d9d606bd2..420c0e049 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon_%.bbappend +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon_%.bbappend @@ -34,9 +34,38 @@ CHIPS_append_swift = " \ bus@1e78a000/i2c-bus@3c0/ir35221@71 \ bus@1e78a000/i2c-bus@3c0/ir35221@72 \ " +CHIPS_mihawk = " \ + bus@1e78a000/i2c-bus@100/power-supply@58 \ + bus@1e78a000/i2c-bus@100/power-supply@5b \ + bus@1e78a000/i2c-bus@140/ir35221@70 \ + bus@1e78a000/i2c-bus@140/ir35221@72 \ + bus@1e78a000/i2c-bus@180/ir35221@70 \ + bus@1e78a000/i2c-bus@180/ir35221@72 \ + bus@1e78a000/i2c-bus@400/tmp275@48 \ + bus@1e78a000/i2c-bus@400/tmp275@49 \ + pwm-tacho-controller@1e786000 \ + bus@1e78a000/i2c-bus@400/emc1403@4c \ + bus@1e78a000/i2c-bus@440/pca9545@70/i2c@3/tmp275@48 \ + " ITEMSFMT = "ahb/apb/{0}.conf" ITEMS = "${@compose_list(d, 'ITEMSFMT', 'CHIPS')}" +ITEMS_append_mihawk += " iio-hwmon-vdd0.conf" +ITEMS_append_mihawk += " iio-hwmon-vdd1.conf" +ITEMS_append_mihawk += " iio-hwmon-vcs0.conf" +ITEMS_append_mihawk += " iio-hwmon-vcs1.conf" +ITEMS_append_mihawk += " iio-hwmon-vdn0.conf" +ITEMS_append_mihawk += " iio-hwmon-vdn1.conf" +ITEMS_append_mihawk += " iio-hwmon-vio0.conf" +ITEMS_append_mihawk += " iio-hwmon-vio1.conf" +ITEMS_append_mihawk += " iio-hwmon-vddra.conf" +ITEMS_append_mihawk += " iio-hwmon-vddrb.conf" +ITEMS_append_mihawk += " iio-hwmon-vddrc.conf" +ITEMS_append_mihawk += " iio-hwmon-vddrd.conf" +ITEMS_append_mihawk += " iio-hwmon-12v.conf" +ITEMS_append_mihawk += " iio-hwmon-5v.conf" +ITEMS_append_mihawk += " iio-hwmon-3v.conf" +ITEMS_append_mihawk += " iio-hwmon-battery.conf" OCCS = " \ 00--00--00--06/sbefifo1-dev0/occ-hwmon.1 \ @@ -48,6 +77,8 @@ OCCITEMS = "${@compose_list(d, 'OCCSFMT', 'OCCS')}" ENVS = "obmc/hwmon/{0}" SYSTEMD_ENVIRONMENT_FILE_${PN}_append_ibm-ac-server = " ${@compose_list(d, 'ENVS', 'ITEMS')}" SYSTEMD_ENVIRONMENT_FILE_${PN}_append_ibm-ac-server = " ${@compose_list(d, 'ENVS', 'OCCITEMS')}" +SYSTEMD_ENVIRONMENT_FILE_${PN}_append_mihawk = " ${@compose_list(d, 'ENVS', 'ITEMS')}" +SYSTEMD_ENVIRONMENT_FILE_${PN}_append_mihawk = " ${@compose_list(d, 'ENVS', 'OCCITEMS')}" SYSTEMD_ENVIRONMENT_FILE_max31785-msl_append_ibm-ac-server = " obmc/hwmon-max31785/max31785.conf" SYSTEMD_LINK_max31785-msl_append_ibm-ac-server = " ../phosphor-max31785-msl@.service:multi-user.target.wants/phosphor-max31785-msl@${MACHINE}.service" -- cgit v1.2.3 From 0178703d47cae6f3c75dfddc4e0d6fccd653e177 Mon Sep 17 00:00:00 2001 From: Ben_Pai Date: Thu, 22 Aug 2019 17:07:01 +0800 Subject: meta-ibm: Enable mac2 on mihawk platform Since mihawk has share and dedicated two ports, so use two mac addresses. Tested:Use ip a command to see two mac addresses (From meta-ibm rev: ed92ee6fa8847511fbf2049e02ef3f8f0d7a7c70) Signed-off-by: Ben Pai Change-Id: I43b3b78f7efd7e339e91bdc356283f6b9ffe1a5c Signed-off-by: Brad Bishop --- meta-ibm/meta-witherspoon/conf/machine/mihawk.conf | 1 + 1 file changed, 1 insertion(+) (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/conf/machine/mihawk.conf b/meta-ibm/meta-witherspoon/conf/machine/mihawk.conf index 08d9ab74d..53a9f5b9c 100644 --- a/meta-ibm/meta-witherspoon/conf/machine/mihawk.conf +++ b/meta-ibm/meta-witherspoon/conf/machine/mihawk.conf @@ -12,6 +12,7 @@ require conf/machine/include/ast2500.inc require conf/machine/include/obmc-bsp-common.inc require conf/machine/include/openpower.inc require conf/machine/include/p9.inc +require conf/distro/include/phosphor-aspeednic-use-mac2.inc PHOSPHOR_MRW_LICENSE = "Apache-2.0" PHOSPHOR_MRW_LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327" -- cgit v1.2.3 From 424e68f459977a762f813d89044a402d7862e0c2 Mon Sep 17 00:00:00 2001 From: Ben_Pai Date: Wed, 4 Sep 2019 15:48:18 +0800 Subject: meta-ibm: Mihawk use negative-errno-on-fail config Enable this config for mihawk so the fan sensors are working, otherwise hwmon will fail and exit when fans are not working. Tested: Verify that the fan_tach sensors return -ETIMEOUT when host is powered off and do not exit with failure. (From meta-ibm rev: 2e39633c12f7914b1a4a398bbff9b467930bb731) Signed-off-by: Ben Pai Change-Id: I0a7e881de5d5baa8d4db3cac9ca3cb46ec08faf4 Signed-off-by: Brad Bishop --- .../meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon_%.bbappend | 2 ++ 1 file changed, 2 insertions(+) (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon_%.bbappend b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon_%.bbappend index 420c0e049..4d60a74c2 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon_%.bbappend +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon_%.bbappend @@ -1,5 +1,7 @@ FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" +EXTRA_OECONF_append_mihawk = " --enable-negative-errno-on-fail" + SRC_URI_append_ibm-ac-server = " \ file://70-hwmon.rules \ file://70-max31785-hwmon.rules \ -- cgit v1.2.3 From 7a73e4b09637172f6110f96cdc59b29a385d3724 Mon Sep 17 00:00:00 2001 From: Tom Joseph Date: Fri, 30 Aug 2019 01:37:01 -0500 Subject: Create WS specific channel_config.json Witherspoon has only one LAN interface which is channel number 1. The json file provided by the phosphor layer has channel information for two LAN interfaces. The phosphor layer config file is modified to mark the channel number 2 as reserved. (From meta-ibm rev: 48dc78b5e8b6deba59e4aa200b8d88f10e277b69) Change-Id: I4af0b7e682d2ec266831c7053926d1515f62c726 Signed-off-by: Tom Joseph Signed-off-by: Brad Bishop --- .../ibm-ac-server/channel_config.json | 178 +++++++++++++++++++++ 1 file changed, 178 insertions(+) create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/ipmi/phosphor-ipmi-config/ibm-ac-server/channel_config.json (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/ipmi/phosphor-ipmi-config/ibm-ac-server/channel_config.json b/meta-ibm/meta-witherspoon/recipes-phosphor/ipmi/phosphor-ipmi-config/ibm-ac-server/channel_config.json new file mode 100644 index 000000000..3f4746e56 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/ipmi/phosphor-ipmi-config/ibm-ac-server/channel_config.json @@ -0,0 +1,178 @@ +{ + "0" : { + "name" : "IPMB", + "is_valid" : true, + "active_sessions" : 0, + "channel_info" : { + "medium_type" : "ipmb", + "protocol_type" : "ipmb-1.0", + "session_supported" : "session-less", + "is_ipmi" : true + } + }, + "1" : { + "name" : "eth0", + "is_valid" : true, + "active_sessions" : 0, + "channel_info" : { + "medium_type" : "lan-802.3", + "protocol_type" : "ipmb-1.0", + "session_supported" : "multi-session", + "is_ipmi" : true + } + }, + "2" : { + "name" : "RESERVED", + "is_valid" : false, + "active_sessions" : 0, + "channel_info" : { + "medium_type" : "reserved", + "protocol_type" : "na", + "session_supported" : "session-less", + "is_ipmi" : true + } + }, + "3" : { + "name" : "RESERVED", + "is_valid" : false, + "active_sessions" : 0, + "channel_info" : { + "medium_type" : "reserved", + "protocol_type" : "na", + "session_supported" : "session-less", + "is_ipmi" : true + } + }, + "4" : { + "name" : "RESERVED", + "is_valid" : false, + "active_sessions" : 0, + "channel_info" : { + "medium_type" : "reserved", + "protocol_type" : "na", + "session_supported" : "session-less", + "is_ipmi" : true + } + }, + "5" : { + "name" : "RESERVED", + "is_valid" : false, + "active_sessions" : 0, + "channel_info" : { + "medium_type" : "reserved", + "protocol_type" : "na", + "session_supported" : "session-less", + "is_ipmi" : true + } + }, + "6" : { + "name" : "RESERVED", + "is_valid" : false, + "active_sessions" : 0, + "channel_info" : { + "medium_type" : "reserved", + "protocol_type" : "na", + "session_supported" : "session-less", + "is_ipmi" : true + } + }, + "7" : { + "name" : "RESERVED", + "is_valid" : false, + "active_sessions" : 0, + "channel_info" : { + "medium_type" : "reserved", + "protocol_type" : "na", + "session_supported" : "session-less", + "is_ipmi" : true + } + }, + "8" : { + "name" : "INTRABMC", + "is_valid" : true, + "active_sessions" : 0, + "channel_info" : { + "medium_type" : "oem", + "protocol_type" : "oem", + "session_supported" : "session-less", + "is_ipmi" : true + } + }, + "9" : { + "name" : "RESERVED", + "is_valid" : false, + "active_sessions" : 0, + "channel_info" : { + "medium_type" : "reserved", + "protocol_type" : "na", + "session_supported" : "session-less", + "is_ipmi" : true + } + }, + "10" : { + "name" : "RESERVED", + "is_valid" : false, + "active_sessions" : 0, + "channel_info" : { + "medium_type" : "reserved", + "protocol_type" : "na", + "session_supported" : "session-less", + "is_ipmi" : true + } + }, + "11" : { + "name" : "RESERVED", + "is_valid" : false, + "active_sessions" : 0, + "channel_info" : { + "medium_type" : "reserved", + "protocol_type" : "na", + "session_supported" : "session-less", + "is_ipmi" : true + } + }, + "12" : { + "name" : "RESERVED", + "is_valid" : false, + "active_sessions" : 0, + "channel_info" : { + "medium_type" : "reserved", + "protocol_type" : "na", + "session_supported" : "session-less", + "is_ipmi" : true + } + }, + "13" : { + "name" : "RESERVED", + "is_valid" : false, + "active_sessions" : 0, + "channel_info" : { + "medium_type" : "reserved", + "protocol_type" : "na", + "session_supported" : "session-less", + "is_ipmi" : true + } + }, + "14" : { + "name" : "SELF", + "is_valid" : false, + "active_sessions" : 0, + "channel_info" : { + "medium_type" : "ipmb", + "protocol_type" : "ipmb-1.0", + "session_supported" : "session-less", + "is_ipmi" : true + } + }, + "15" : { + "name" : "SMS", + "is_valid" : true, + "active_sessions" : 0, + "channel_info" : { + "medium_type" : "system-interface", + "protocol_type" : "kcs", + "session_supported" : "session-less", + "is_ipmi" : true + } + } +} -- cgit v1.2.3 From 89e6501fb0445ac501389074d00440a61f60d01c Mon Sep 17 00:00:00 2001 From: Ben_Pai Date: Wed, 21 Aug 2019 18:04:55 +0800 Subject: meta-ibm: Add mihawk ipmi yaml. Add mihawk's ipmi sensor and fru yaml. Tested: Use ipmi command to get the sensor list and fru data. (From meta-ibm rev: 05c9a2734de75271837313f0e1794c58df50e990) Signed-off-by: Ben Pai Change-Id: Ic85af9b0cc1b44a3377fa919e63ab04dbff7a31c Signed-off-by: Brad Bishop --- .../configuration/acx22-yaml-config.bb | 15 +- .../mihawk/acx22-ipmi-fru-bmc.yaml | 102 +++++ .../mihawk/acx22-ipmi-hwmon-sensors.yaml | 483 +++++++++++++++++++++ .../ipmi/openpower-ipmi-oem_%.bbappend | 4 + .../ipmi/phosphor-ipmi-fru_%.bbappend | 5 + .../ipmi/phosphor-ipmi-host_%.bbappend | 6 + 6 files changed, 612 insertions(+), 3 deletions(-) create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/configuration/acx22-yaml-config/mihawk/acx22-ipmi-fru-bmc.yaml create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/configuration/acx22-yaml-config/mihawk/acx22-ipmi-hwmon-sensors.yaml (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/configuration/acx22-yaml-config.bb b/meta-ibm/meta-witherspoon/recipes-phosphor/configuration/acx22-yaml-config.bb index d0dbd60d8..245693ac8 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/configuration/acx22-yaml-config.bb +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/configuration/acx22-yaml-config.bb @@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd inherit allarch inherit mrw-xml -SRC_URI = " \ +SRC_URI_ibm-ac-server = " \ file://acx22-ipmi-fru-bmc.yaml \ file://acx22-ipmi-fru-not-sent-by-host.yaml \ file://acx22-ipmi-hwmon-sensors.yaml \ @@ -14,7 +14,13 @@ SRC_URI = " \ file://acx22-ipmi-occ-sensors.yaml \ file://acx22-ipmi-sensors-mrw.yaml \ " - +SRC_URI_mihawk = " \ + file://acx22-ipmi-fru-bmc.yaml \ + file://acx22-ipmi-hwmon-sensors.yaml \ + file://acx22-ipmi-inventory-sensors.yaml \ + file://acx22-ipmi-occ-sensors.yaml \ + file://acx22-ipmi-sensors-mrw.yaml \ + " DEPENDS = " \ mrw-native \ mrw-perl-tools-native \ @@ -23,10 +29,13 @@ DEPENDS = " \ S = "${WORKDIR}" -ACx22_IPMI_EXTRA_FRU_READ_YAMLS = " \ +ACx22_IPMI_EXTRA_FRU_READ_YAMLS_ibm-ac-server = " \ acx22-ipmi-fru-bmc.yaml \ acx22-ipmi-fru-not-sent-by-host.yaml \ " +ACx22_IPMI_EXTRA_FRU_READ_YAMLS_mihawk = " \ + acx22-ipmi-fru-bmc.yaml \ + " ACx22_IPMI_EXTRA_SENSOR_YAMLS = " \ acx22-ipmi-hwmon-sensors.yaml \ acx22-ipmi-occ-sensors.yaml \ diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/configuration/acx22-yaml-config/mihawk/acx22-ipmi-fru-bmc.yaml b/meta-ibm/meta-witherspoon/recipes-phosphor/configuration/acx22-yaml-config/mihawk/acx22-ipmi-fru-bmc.yaml new file mode 100644 index 000000000..57adcaf77 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/configuration/acx22-yaml-config/mihawk/acx22-ipmi-fru-bmc.yaml @@ -0,0 +1,102 @@ +50: + /system/chassis/motherboard/fan0: + entityID: 29 + entityInstance: 1 + interfaces: + xyz.openbmc_project.Inventory.Item: + PrettyName: + IPMIFruProperty: Product Name + IPMIFruSection: Product +51: + /system/chassis/motherboard/fan1: + entityID: 29 + entityInstance: 2 + interfaces: + xyz.openbmc_project.Inventory.Item: + PrettyName: + IPMIFruProperty: Product Name + IPMIFruSection: Product +52: + /system/chassis/motherboard/fan2: + entityID: 29 + entityInstance: 3 + interfaces: + xyz.openbmc_project.Inventory.Item: + PrettyName: + IPMIFruProperty: Product Name + IPMIFruSection: Product +53: + /system/chassis/motherboard/fan3: + entityID: 29 + entityInstance: 4 + interfaces: + xyz.openbmc_project.Inventory.Item: + PrettyName: + IPMIFruProperty: Product Name + IPMIFruSection: Product +54: + /system/chassis/motherboard/fan4: + entityID: 29 + entityInstance: 5 + interfaces: + xyz.openbmc_project.Inventory.Item: + PrettyName: + IPMIFruProperty: Product Name + IPMIFruSection: Product +55: + /system/chassis/motherboard/fan5: + entityID: 29 + entityInstance: 6 + interfaces: + xyz.openbmc_project.Inventory.Item: + PrettyName: + IPMIFruProperty: Product Name + IPMIFruSection: Product +75: + /system/chassis/motherboard/powersupply0: + entityID: 10 + entityInstance: 1 + interfaces: + xyz.openbmc_project.Inventory.Item: + PrettyName: + IPMIFruProperty: Board Name + IPMIFruSection: Board + PartNumber: + IPMIFruProperty: Part Number + IPMIFruSection: Board + SerialNumber: + IPMIFruProperty: Serial Number + IPMIFruSection: Board + Model: + IPMIFruProperty: Model Number + IPMIFruSection: Board + Manufacturer: + IPMIFruProperty: Manufacturer + IPMIFruSection: Board + BuildDate: + IPMIFruProperty: Mfg Date + IPMIFruSection: Board +76: + /system/chassis/motherboard/powersupply1: + entityID: 10 + entityInstance: 2 + interfaces: + xyz.openbmc_project.Inventory.Item: + PrettyName: + IPMIFruProperty: Board Name + IPMIFruSection: Board + PartNumber: + IPMIFruProperty: Part Number + IPMIFruSection: Board + SerialNumber: + IPMIFruProperty: Serial Number + IPMIFruSection: Board + Model: + IPMIFruProperty: Model Number + IPMIFruSection: Board + Manufacturer: + IPMIFruProperty: Manufacturer + IPMIFruSection: Board + BuildDate: + IPMIFruProperty: Mfg Date + IPMIFruSection: Board diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/configuration/acx22-yaml-config/mihawk/acx22-ipmi-hwmon-sensors.yaml b/meta-ibm/meta-witherspoon/recipes-phosphor/configuration/acx22-yaml-config/mihawk/acx22-ipmi-hwmon-sensors.yaml new file mode 100644 index 000000000..03b9700dc --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/configuration/acx22-yaml-config/mihawk/acx22-ipmi-hwmon-sensors.yaml @@ -0,0 +1,483 @@ +232: + bExp: 0 + entityID: 29 + entityInstance: 1 + interfaces: + xyz.openbmc_project.Sensor.Value: + Value: + Offsets: + 255: + type: int64_t + multiplierM: 100 + offsetB: 0 + path: /xyz/openbmc_project/sensors/fan_tach/fan0_0 + rExp: 0 + readingType: readingData + scale: 0 + sensorNamePattern: nameLeaf + sensorReadingType: 1 + sensorType: 4 + serviceInterface: org.freedesktop.DBus.Properties + unit: xyz.openbmc_project.Sensor.Value.Unit.RPMS +233: + bExp: 0 + entityID: 29 + entityInstance: 3 + interfaces: + xyz.openbmc_project.Sensor.Value: + Value: + Offsets: + 255: + type: int64_t + multiplierM: 100 + offsetB: 0 + path: /xyz/openbmc_project/sensors/fan_tach/fan1_0 + rExp: 0 + readingType: readingData + scale: 0 + sensorNamePattern: nameLeaf + sensorReadingType: 1 + sensorType: 4 + serviceInterface: org.freedesktop.DBus.Properties + unit: xyz.openbmc_project.Sensor.Value.Unit.RPMS +234: + bExp: 0 + entityID: 29 + entityInstance: 5 + interfaces: + xyz.openbmc_project.Sensor.Value: + Value: + Offsets: + 255: + type: int64_t + multiplierM: 100 + offsetB: 0 + path: /xyz/openbmc_project/sensors/fan_tach/fan2_0 + rExp: 0 + readingType: readingData + scale: 0 + sensorNamePattern: nameLeaf + sensorReadingType: 1 + sensorType: 4 + serviceInterface: org.freedesktop.DBus.Properties + unit: xyz.openbmc_project.Sensor.Value.Unit.RPMS +235: + bExp: 0 + entityID: 29 + entityInstance: 7 + interfaces: + xyz.openbmc_project.Sensor.Value: + Value: + Offsets: + 255: + type: int64_t + multiplierM: 100 + offsetB: 0 + path: /xyz/openbmc_project/sensors/fan_tach/fan3_0 + rExp: 0 + readingType: readingData + scale: 0 + sensorNamePattern: nameLeaf + sensorReadingType: 1 + sensorType: 4 + serviceInterface: org.freedesktop.DBus.Properties + unit: xyz.openbmc_project.Sensor.Value.Unit.RPMS +236: + bExp: 0 + entityID: 29 + entityInstance: 9 + interfaces: + xyz.openbmc_project.Sensor.Value: + Value: + Offsets: + 255: + type: int64_t + multiplierM: 100 + offsetB: 0 + path: /xyz/openbmc_project/sensors/fan_tach/fan4_0 + rExp: 0 + readingType: readingData + scale: 0 + sensorNamePattern: nameLeaf + sensorReadingType: 1 + sensorType: 4 + serviceInterface: org.freedesktop.DBus.Properties + unit: xyz.openbmc_project.Sensor.Value.Unit.RPMS +237: + bExp: 0 + entityID: 29 + entityInstance: 11 + interfaces: + xyz.openbmc_project.Sensor.Value: + Value: + Offsets: + 255: + type: int64_t + multiplierM: 100 + offsetB: 0 + path: /xyz/openbmc_project/sensors/fan_tach/fan5_0 + rExp: 0 + readingType: readingData + scale: 0 + sensorNamePattern: nameLeaf + sensorReadingType: 1 + sensorType: 4 + serviceInterface: org.freedesktop.DBus.Properties + unit: xyz.openbmc_project.Sensor.Value.Unit.RPMS +238: + bExp: 0 + entityID: 10 + entityInstance: 1 + interfaces: + xyz.openbmc_project.Sensor.Value: + Value: + Offsets: + 255: + type: int64_t + multiplierM: 2 + offsetB: 0 + path: /xyz/openbmc_project/sensors/power/storage_a_power + rExp: 0 + readingType: readingData + scale: -6 + sensorNamePattern: nameLeaf + sensorReadingType: 1 + sensorType: 8 + serviceInterface: org.freedesktop.DBus.Properties + unit: xyz.openbmc_project.Sensor.Value.Unit.Watts +239: + bExp: 0 + entityID: 10 + entityInstance: 2 + interfaces: + xyz.openbmc_project.Sensor.Value: + Value: + Offsets: + 255: + type: int64_t + multiplierM: 2 + offsetB: 0 + path: /xyz/openbmc_project/sensors/power/storage_b_power + rExp: 0 + readingType: readingData + scale: -6 + sensorNamePattern: nameLeaf + sensorReadingType: 1 + sensorType: 8 + serviceInterface: org.freedesktop.DBus.Properties + unit: xyz.openbmc_project.Sensor.Value.Unit.Watts +240: + bExp: 0 + entityID: 10 + entityInstance: 3 + interfaces: + xyz.openbmc_project.Sensor.Value: + Value: + Offsets: + 255: + type: int64_t + multiplierM: 2 + offsetB: 0 + path: /xyz/openbmc_project/sensors/power/p0_vdd_power + rExp: 0 + readingType: readingData + scale: -6 + sensorNamePattern: nameLeaf + sensorReadingType: 1 + sensorType: 8 + serviceInterface: org.freedesktop.DBus.Properties + unit: xyz.openbmc_project.Sensor.Value.Unit.Watts +241: + bExp: 0 + entityID: 10 + entityInstance: 4 + interfaces: + xyz.openbmc_project.Sensor.Value: + Value: + Offsets: + 255: + type: int64_t + multiplierM: 2 + offsetB: 0 + path: /xyz/openbmc_project/sensors/power/p1_vdd_power + rExp: 0 + readingType: readingData + scale: -6 + sensorNamePattern: nameLeaf + sensorReadingType: 1 + sensorType: 8 + serviceInterface: org.freedesktop.DBus.Properties + unit: xyz.openbmc_project.Sensor.Value.Unit.Watts +242: + bExp: 0 + entityID: 10 + entityInstance: 5 + interfaces: + xyz.openbmc_project.Sensor.Value: + Value: + Offsets: + 255: + type: int64_t + multiplierM: 2 + offsetB: 0 + path: /xyz/openbmc_project/sensors/power/p0_mem_power + rExp: 0 + readingType: readingData + scale: -6 + sensorNamePattern: nameLeaf + sensorReadingType: 1 + sensorType: 8 + serviceInterface: org.freedesktop.DBus.Properties + unit: xyz.openbmc_project.Sensor.Value.Unit.Watts +243: + bExp: 0 + entityID: 10 + entityInstance: 6 + interfaces: + xyz.openbmc_project.Sensor.Value: + Value: + Offsets: + 255: + type: int64_t + multiplierM: 2 + offsetB: 0 + path: /xyz/openbmc_project/sensors/power/p1_mem_power + rExp: 0 + readingType: readingData + scale: -6 + sensorNamePattern: nameLeaf + sensorReadingType: 1 + sensorType: 8 + serviceInterface: org.freedesktop.DBus.Properties + unit: xyz.openbmc_project.Sensor.Value.Unit.Watts +244: + bExp: 0 + entityID: 10 + entityInstance: 7 + interfaces: + xyz.openbmc_project.Sensor.Value: + Value: + Offsets: + 255: + type: int64_t + multiplierM: 2 + offsetB: 0 + path: /xyz/openbmc_project/sensors/power/ps0_input_power + rExp: 0 + readingType: readingData + scale: -6 + sensorNamePattern: nameLeaf + sensorReadingType: 1 + sensorType: 8 + serviceInterface: org.freedesktop.DBus.Properties + unit: xyz.openbmc_project.Sensor.Value.Unit.Watts +245: + bExp: 0 + entityID: 10 + entityInstance: 8 + interfaces: + xyz.openbmc_project.Sensor.Value: + Value: + Offsets: + 255: + type: int64_t + multiplierM: 2 + offsetB: 0 + path: /xyz/openbmc_project/sensors/power/ps1_input_power + rExp: 0 + readingType: readingData + scale: -6 + sensorNamePattern: nameLeaf + sensorReadingType: 1 + sensorType: 8 + serviceInterface: org.freedesktop.DBus.Properties + unit: xyz.openbmc_project.Sensor.Value.Unit.Watts +246: + bExp: 0 + entityID: 10 + entityInstance: 9 + interfaces: + xyz.openbmc_project.Sensor.Value: + Value: + Offsets: + 255: + type: int64_t + multiplierM: 2 + offsetB: 0 + path: /xyz/openbmc_project/sensors/voltage/ps0_input_voltage + rExp: 0 + readingType: readingData + scale: -3 + sensorNamePattern: nameLeaf + sensorReadingType: 1 + sensorType: 2 + serviceInterface: org.freedesktop.DBus.Properties + unit: xyz.openbmc_project.Sensor.Value.Unit.Volts +247: + bExp: 0 + entityID: 10 + entityInstance: 10 + interfaces: + xyz.openbmc_project.Sensor.Value: + Value: + Offsets: + 255: + type: int64_t + multiplierM: 2 + offsetB: 0 + path: /xyz/openbmc_project/sensors/voltage/ps1_input_voltage + rExp: 0 + readingType: readingData + scale: -3 + sensorNamePattern: nameLeaf + sensorReadingType: 1 + sensorType: 2 + serviceInterface: org.freedesktop.DBus.Properties + unit: xyz.openbmc_project.Sensor.Value.Unit.Volts +248: + bExp: 0 + entityID: 10 + entityInstance: 11 + interfaces: + xyz.openbmc_project.Sensor.Value: + Value: + Offsets: + 255: + type: int64_t + multiplierM: 10 + offsetB: 0 + path: /xyz/openbmc_project/sensors/voltage/ps0_output_voltage + rExp: -2 + readingType: readingData + scale: -3 + sensorNamePattern: nameLeaf + sensorReadingType: 1 + sensorType: 2 + serviceInterface: org.freedesktop.DBus.Properties + unit: xyz.openbmc_project.Sensor.Value.Unit.Volts +249: + bExp: 0 + entityID: 10 + entityInstance: 12 + interfaces: + xyz.openbmc_project.Sensor.Value: + Value: + Offsets: + 255: + type: int64_t + multiplierM: 10 + offsetB: 0 + path: /xyz/openbmc_project/sensors/voltage/ps1_output_voltage + rExp: -2 + readingType: readingData + scale: -3 + sensorNamePattern: nameLeaf + sensorReadingType: 1 + sensorType: 2 + serviceInterface: org.freedesktop.DBus.Properties + unit: xyz.openbmc_project.Sensor.Value.Unit.Volts +250: + bExp: 0 + entityID: 10 + entityInstance: 13 + interfaces: + xyz.openbmc_project.Sensor.Value: + Value: + Offsets: + 255: + type: int64_t + multiplierM: 1 + offsetB: 0 + path: /xyz/openbmc_project/sensors/current/ps0_output_current + rExp: 0 + readingType: readingData + scale: -3 + sensorNamePattern: nameLeaf + sensorReadingType: 1 + sensorType: 3 + serviceInterface: org.freedesktop.DBus.Properties + unit: xyz.openbmc_project.Sensor.Value.Unit.Amperes +251: + bExp: 0 + entityID: 10 + entityInstance: 14 + interfaces: + xyz.openbmc_project.Sensor.Value: + Value: + Offsets: + 255: + type: int64_t + multiplierM: 1 + offsetB: 0 + path: /xyz/openbmc_project/sensors/current/ps1_output_current + rExp: 0 + readingType: readingData + scale: -3 + sensorNamePattern: nameLeaf + sensorReadingType: 1 + sensorType: 3 + serviceInterface: org.freedesktop.DBus.Properties + unit: xyz.openbmc_project.Sensor.Value.Unit.Amperes +252: + bExp: 0 + entityID: 35 + entityInstance: 1 + interfaces: + xyz.openbmc_project.Sensor.Value: + Value: + Offsets: + 255: + type: int64_t + multiplierM: 30 + offsetB: 0 + path: /xyz/openbmc_project/sensors/temperature/p0_pcie_temp + rExp: -2 + readingType: readingData + scale: -3 + sensorNamePattern: nameLeaf + sensorReadingType: 1 + sensorType: 1 + serviceInterface: org.freedesktop.DBus.Properties + unit: xyz.openbmc_project.Sensor.Value.Unit.DegreesC +253: + bExp: 0 + entityID: 35 + entityInstance: 2 + interfaces: + xyz.openbmc_project.Sensor.Value: + Value: + Offsets: + 255: + type: int64_t + multiplierM: 30 + offsetB: 0 + path: /xyz/openbmc_project/sensors/temperature/p1_pcie_temp + rExp: -2 + readingType: readingData + scale: -3 + sensorNamePattern: nameLeaf + sensorReadingType: 1 + sensorType: 1 + serviceInterface: org.freedesktop.DBus.Properties + unit: xyz.openbmc_project.Sensor.Value.Unit.DegreesC +254: + bExp: 0 + entityID: 64 + entityInstance: 1 + interfaces: + xyz.openbmc_project.Sensor.Value: + Value: + Offsets: + 255: + type: int64_t + multiplierM: 20 + offsetB: 0 + path: /xyz/openbmc_project/sensors/temperature/ambient_temp + rExp: -2 + readingType: readingData + scale: -3 + sensorNamePattern: nameLeaf + sensorReadingType: 1 + sensorType: 1 + serviceInterface: org.freedesktop.DBus.Properties + unit: xyz.openbmc_project.Sensor.Value.Unit.DegreesC diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/ipmi/openpower-ipmi-oem_%.bbappend b/meta-ibm/meta-witherspoon/recipes-phosphor/ipmi/openpower-ipmi-oem_%.bbappend index ae379af3f..fd27f7dce 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/ipmi/openpower-ipmi-oem_%.bbappend +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/ipmi/openpower-ipmi-oem_%.bbappend @@ -1,5 +1,9 @@ DEPENDS_append_ibm-ac-server = " acx22-yaml-config" +DEPENDS_append_mihawk = " acx22-yaml-config" EXTRA_OECONF_ibm-ac-server = " \ INVSENSOR_YAML_GEN=${STAGING_DIR_HOST}${datadir}/acx22-yaml-config/ipmi-inventory-sensors.yaml \ " +EXTRA_OECONF_mihawk = " \ + INVSENSOR_YAML_GEN=${STAGING_DIR_HOST}${datadir}/acx22-yaml-config/ipmi-inventory-sensors.yaml \ + " \ No newline at end of file diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/ipmi/phosphor-ipmi-fru_%.bbappend b/meta-ibm/meta-witherspoon/recipes-phosphor/ipmi/phosphor-ipmi-fru_%.bbappend index 2da9493df..6efe241bc 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/ipmi/phosphor-ipmi-fru_%.bbappend +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/ipmi/phosphor-ipmi-fru_%.bbappend @@ -1,6 +1,11 @@ DEPENDS_append_ibm-ac-server = " acx22-yaml-config" +DEPENDS_append_mihawk = " acx22-yaml-config" EXTRA_OECONF_ibm-ac-server = " \ YAML_GEN=${STAGING_DIR_HOST}${datadir}/acx22-yaml-config/ipmi-fru-read.yaml \ PROP_YAML=${STAGING_DIR_HOST}${datadir}/acx22-yaml-config/ipmi-extra-properties.yaml \ " +EXTRA_OECONF_mihawk = " \ + YAML_GEN=${STAGING_DIR_HOST}${datadir}/acx22-yaml-config/ipmi-fru-read.yaml \ + PROP_YAML=${STAGING_DIR_HOST}${datadir}/acx22-yaml-config/ipmi-extra-properties.yaml \ + " diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/ipmi/phosphor-ipmi-host_%.bbappend b/meta-ibm/meta-witherspoon/recipes-phosphor/ipmi/phosphor-ipmi-host_%.bbappend index 3fdcada43..8d51478af 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/ipmi/phosphor-ipmi-host_%.bbappend +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/ipmi/phosphor-ipmi-host_%.bbappend @@ -1,7 +1,13 @@ DEPENDS_append_ibm-ac-server = " acx22-yaml-config" +DEPENDS_append_mihawk = " acx22-yaml-config" EXTRA_OECONF_ibm-ac-server = " \ SENSOR_YAML_GEN=${STAGING_DIR_HOST}${datadir}/acx22-yaml-config/ipmi-sensors.yaml \ INVSENSOR_YAML_GEN=${STAGING_DIR_HOST}${datadir}/acx22-yaml-config/ipmi-inventory-sensors.yaml \ FRU_YAML_GEN=${STAGING_DIR_HOST}${datadir}/acx22-yaml-config/ipmi-fru-read.yaml \ " +EXTRA_OECONF_mihawk = " \ + SENSOR_YAML_GEN=${STAGING_DIR_HOST}${datadir}/acx22-yaml-config/ipmi-sensors.yaml \ + INVSENSOR_YAML_GEN=${STAGING_DIR_HOST}${datadir}/acx22-yaml-config/ipmi-inventory-sensors.yaml \ + FRU_YAML_GEN=${STAGING_DIR_HOST}${datadir}/acx22-yaml-config/ipmi-fru-read.yaml \ + " \ No newline at end of file -- cgit v1.2.3 From 36ac4439edfd6d1802099f1c9ea070ddb5383a51 Mon Sep 17 00:00:00 2001 From: asmithakarun Date: Mon, 24 Jun 2019 05:51:59 -0500 Subject: Registering REST and Redfish services for Discovery Creating and Registering service files with additional text data to uniquely identify IBM BMCs in a network. (From meta-ibm rev: 2c2b286604e82f89edd973bc15aee78ecf4b9a7f) Change-Id: I3b843684f5df6a9b2cbe8a3709ee1203fb44ce42 Signed-off-by: asmithakarun Signed-off-by: Brad Bishop --- meta-ibm/recipes-phosphor/interfaces/bmcweb_%.bbappend | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 meta-ibm/recipes-phosphor/interfaces/bmcweb_%.bbappend (limited to 'meta-ibm') diff --git a/meta-ibm/recipes-phosphor/interfaces/bmcweb_%.bbappend b/meta-ibm/recipes-phosphor/interfaces/bmcweb_%.bbappend new file mode 100644 index 000000000..68b7fa2c8 --- /dev/null +++ b/meta-ibm/recipes-phosphor/interfaces/bmcweb_%.bbappend @@ -0,0 +1,4 @@ +inherit obmc-phosphor-discovery-service + +REGISTERED_SERVICES_${PN} += "obmc_redfish:tcp:443:" +REGISTERED_SERVICES_${PN} += "obmc_rest:tcp:443:" -- cgit v1.2.3 From 12ce8edf406a1f3d58fd9c8db21a46c629d8c6ef Mon Sep 17 00:00:00 2001 From: Ben_Pai Date: Tue, 3 Sep 2019 14:17:12 +0800 Subject: Fix mihawk fan event build error Now the mihawk fan event will build error on openbmc master. So I made some changes in order to solve the problem. Tested: Verify fan control functionality of mihawk image (From meta-ibm rev: 3e3ec10428cabe6917ea982159565024fcd21f9b) Signed-off-by: Ben Pai Change-Id: I84aa7e8fd85dba15a5a84bbf7944bb286e5ba9ae Signed-off-by: Brad Bishop --- .../mihawk/events.yaml | 485 ++++++++++++--------- 1 file changed, 282 insertions(+), 203 deletions(-) (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-control-events-config/mihawk/events.yaml b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-control-events-config/mihawk/events.yaml index b7fd1f761..bce203777 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-control-events-config/mihawk/events.yaml +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-control-events-config/mihawk/events.yaml @@ -136,63 +136,63 @@ groups: - /temperature/p1_vdd_temp matches: - name: propertiesChanged - description: > - A property changed match parameters: - object - interface - signal: propertySignal - name: interfacesAdded - description: > - An interfaces added match parameters: - object - signal: objectSignal - name: interfacesRemoved - description: > - An interfaces removed match parameters: - object - signal: - name: objectSignal - parameters: - - object - - interface - handler: removeInterface - name: nameOwnerChanged - description: > - A name owner changed match parameters: - object - interface - signal: ownerSignal signals: - - name: propertySignal + - name: propertiesChanged description: > - Handle property signals + A property changed match parameters: - type - object - interface - property - handler: setProperty - - name: objectSignal + match: propertiesChanged + - name: interfacesAdded description: > - Handle object signals + An interfaces added match parameters: - type - object - interface - property - handler: setProperty - - name: ownerSignal + match: interfacesAdded + - name: interfacesRemoved description: > - Handle owner signals + An interfaces removed match parameters: - object - interface - handler: setService + match: interfacesRemoved + - name: nameOwnerChanged + description: > + A name owner changed match + parameters: + match: nameOwnerChanged + +methods: + - name: getProperties + description: > + Get the property values of the given group members + by performing a `GetProperty` method call on each + parameters: + - type + - name: nameHasOwner + description: > + A NameHasOwner method call to be performed on all event group members + parameters: handlers: - name: setProperty @@ -200,9 +200,6 @@ handlers: Sets a value for the given object/interface/property parameters: - type - - object - - interface - - property - name: setService description: > Sets the service name and ownership status for the given group @@ -223,6 +220,11 @@ preconditions: enable a set speed event otherwise fan speeds are set to full parameters: - groups + - name: services_missing_owner + description: > + Any services missing an owner enable the events given otherwise + the events are removed/disabled + parameters: actions: - name: call_actions_based_on_timer @@ -287,7 +289,7 @@ actions: - altevents events: - - name: missing_before_high_speed_air + - name: missing_or_fails_before_high_speed_air groups: - name: air_cooled_zone0_fans zone_conditions: @@ -298,20 +300,6 @@ events: property: name: Present type: bool - matches: - - name: interfacesAdded - - name: propertiesChanged - actions: - - name: count_state_before_speed - count: 1 - property: - value: false - type: bool - speed: - value: 255 - type: uint64_t - - name: fails_before_high_speed_air - groups: - name: air_cooled_zone0_fans zone_conditions: - name: air_cooled_chassis @@ -321,8 +309,13 @@ events: property: name: Functional type: bool - matches: - - name: propertiesChanged + triggers: + - name: init + method: getProperties + handler: setProperty + - name: signal + signal: propertiesChanged + handler: setProperty actions: - name: count_state_before_speed count: 1 @@ -343,8 +336,13 @@ events: property: name: Current type: std::string - matches: - - name: propertiesChanged + triggers: + - name: init + method: getProperties + handler: setProperty + - name: signal + signal: propertiesChanged + handler: setProperty actions: - name: use_alternate_events_on_state property: @@ -362,8 +360,13 @@ events: property: name: Value type: int64_t - matches: - - name: propertiesChanged + triggers: + - name: init + method: getProperties + handler: setProperty + - name: signal + signal: propertiesChanged + handler: setProperty actions: - name: set_floor_from_average_sensor_value map: @@ -395,8 +398,13 @@ events: property: name: Value type: int64_t - matches: - - name: propertiesChanged + triggers: + - name: init + method: getProperties + handler: setProperty + - name: signal + signal: propertiesChanged + handler: setProperty actions: - name: set_floor_from_average_sensor_value map: @@ -432,155 +440,226 @@ events: name: OccActive type: bool value: true - matches: - - name: interfacesAdded - - name: propertiesChanged + triggers: + - name: init + method: getProperties + handler: setProperty + - name: signal + signal: interfacesAdded + handler: setProperty + - name: signal + signal: propertiesChanged + handler: setProperty events: - - name: speed_changes_based_on_core_temps - groups: - - name: zone0_cores - zone_conditions: - - name: air_cooled_chassis - zones: - - 0 - interface: xyz.openbmc_project.Sensor.Value - property: - name: Value - type: int64_t - matches: - - name: interfacesAdded - - name: propertiesChanged - - name: interfacesRemoved - actions: - - name: set_net_increase_speed - property: - value: 75000 - type: int64_t - factor: - value: 1000 - type: int64_t - delta: - value: 13 - type: uint64_t - - name: set_net_decrease_speed - property: - value: 70000 - type: int64_t - factor: - value: 7000 - type: int64_t - delta: - value: 5 - type: uint64_t - timer: - interval: 1 - - name: speed_changes_based_on_dimm_temps - groups: - - name: zone0_dimms - interface: xyz.openbmc_project.Sensor.Value - property: - name: Value - type: int64_t - matches: - - name: interfacesAdded - - name: propertiesChanged - - name: interfacesRemoved - actions: - - name: set_net_increase_speed - property: - value: 80000 - type: int64_t - factor: - value: 1000 - type: int64_t - delta: - value: 8 - type: uint64_t - - name: set_net_decrease_speed - property: - value: 75000 - type: int64_t - factor: - value: 3000 - type: int64_t - delta: - value: 3 - type: uint64_t - timer: - interval: 5 - - name: speed_changes_based_on_onboard_temps - groups: - - name: zone0_onboard - zone_conditions: - - name: air_cooled_chassis - zones: - - 0 - interface: xyz.openbmc_project.Sensor.Value - property: - name: Value - type: int64_t - matches: - - name: interfacesAdded - - name: propertiesChanged - - name: interfacesRemoved - actions: - - name: set_net_increase_speed - property: - value: 50000 - type: int64_t - factor: - value: 1000 - type: int64_t - delta: - value: 8 - type: uint64_t - - name: set_net_decrease_speed - property: - value: 47000 - type: int64_t - factor: - value: 3000 - type: int64_t - delta: - value: 3 - type: uint64_t - timer: - interval: 10 - - name: speed_changes_based_on_vrd_temps - groups: - - name: zone0_vrd - zone_conditions: - - name: air_cooled_chassis - zones: - - 0 - interface: xyz.openbmc_project.Sensor.Value - property: - name: Value - type: int64_t - matches: - - name: interfacesAdded - - name: propertiesChanged - - name: interfacesRemoved - actions: - - name: set_net_increase_speed - property: - value: 90000 - type: int64_t - factor: - value: 1000 - type: int64_t - delta: - value: 5 - type: uint64_t - - name: set_net_decrease_speed - property: - value: 85000 - type: int64_t - factor: - value: 3000 - type: int64_t - delta: - value: 3 - type: uint64_t - timer: - interval: 10 + - name: speed_control_sensors + groups: + - name: zone0_onboard + interface: xyz.openbmc_project.Sensor.Value + property: + name: Value + type: int64_t + - name: zone0_vrd + interface: xyz.openbmc_project.Sensor.Value + property: + name: Value + type: int64_t + - name: zone0_cores + interface: xyz.openbmc_project.Sensor.Value + property: + name: Value + type: int64_t + - name: zone0_dimms + interface: xyz.openbmc_project.Sensor.Value + property: + name: Value + type: int64_t + triggers: + - name: init + method: getProperties + handler: setProperty + - name: signal + signal: interfacesAdded + handler: setProperty + - name: signal + signal: propertiesChanged + handler: setProperty + - name: signal + signal: interfacesRemoved + handler: removeInterface + - name: fails_before_high_speed_air + groups: + - name: zone0_cores + interface: xyz.openbmc_project.State.Decorator.OperationalStatus + property: + name: Functional + type: bool + - name: zone0_dimms + interface: xyz.openbmc_project.State.Decorator.OperationalStatus + property: + name: Functional + type: bool + triggers: + - name: init + method: getProperties + handler: setProperty + - name: signal + signal: interfacesAdded + handler: setProperty + - name: signal + signal: propertiesChanged + handler: setProperty + actions: + - name: count_state_before_speed + count: 1 + property: + value: false + type: bool + speed: + value: 255 + type: uint64_t + - name: 1sec_speed_change_request_sampling + triggers: + - name: timer + interval: 1000000 + type: repeating + actions: + # Speed changes based on onboard temps + - name: set_net_increase_speed + groups: + - name: zone0_onboard + interface: xyz.openbmc_project.Sensor.Value + property: + name: Value + type: int64_t + property: + value: 50000 + type: int64_t + factor: + value: 1000 + type: int64_t + delta: + value: 8 + type: uint64_t + - name: set_net_decrease_speed + groups: + - name: zone0_onboard + interface: xyz.openbmc_project.Sensor.Value + property: + name: Value + type: int64_t + property: + value: 47000 + type: int64_t + factor: + value: 3000 + type: int64_t + delta: + value: 3 + type: uint64_t + # Speed changes based on vrd temps + - name: set_net_increase_speed + groups: + - name: zone0_vrd + interface: xyz.openbmc_project.Sensor.Value + property: + name: Value + type: int64_t + property: + value: 90000 + type: int64_t + factor: + value: 1000 + type: int64_t + delta: + value: 5 + type: uint64_t + - name: set_net_decrease_speed + groups: + - name: zone0_vrd + interface: xyz.openbmc_project.Sensor.Value + property: + name: Value + type: int64_t + property: + value: 85000 + type: int64_t + factor: + value: 3000 + type: int64_t + delta: + value: 3 + type: uint64_t + # Speed changes based on core temps + - name: set_net_increase_speed + groups: + - name: zone0_cores + zone_conditions: + - name: air_cooled_chassis + zones: + - 0 + interface: xyz.openbmc_project.Sensor.Value + property: + name: Value + type: int64_t + property: + value: 75000 + type: int64_t + factor: + value: 1000 + type: int64_t + delta: + value: 13 + type: uint64_t + - name: set_net_decrease_speed + groups: + - name: zone0_cores + zone_conditions: + - name: air_cooled_chassis + zones: + - 0 + interface: xyz.openbmc_project.Sensor.Value + property: + name: Value + type: int64_t + property: + value: 70000 + type: int64_t + factor: + value: 7000 + type: int64_t + delta: + value: 5 + type: uint64_t + # Speed changes based on dimm temps + - name: set_net_increase_speed + groups: + - name: zone0_dimms + interface: xyz.openbmc_project.Sensor.Value + property: + name: Value + type: int64_t + property: + value: 80000 + type: int64_t + factor: + value: 1000 + type: int64_t + delta: + value: 8 + type: uint64_t + - name: set_net_decrease_speed + groups: + - name: zone0_dimms + interface: xyz.openbmc_project.Sensor.Value + property: + name: Value + type: int64_t + property: + value: 75000 + type: int64_t + factor: + value: 3000 + type: int64_t + delta: + value: 3 + type: uint64_t -- cgit v1.2.3 From 283f4a7bb09618c6dcdb41b67258f2aa27100105 Mon Sep 17 00:00:00 2001 From: Brad Bishop Date: Sun, 25 Aug 2019 07:08:32 -0400 Subject: meta-ibm: add tacoma system The tacoma card is a boxelder replacement (witherspoon bmc card) with an ast2600 on it. By default use core-image-minimal as the initramfs. To add the full OpenBMC userspace set INITRAMFS_IMAGE="obmc-phosphor-image" in local.conf. Build instructions: TEMPLATECONF=meta-ibm/meta-witherspoon/conf . oe-init-build-env MACHINE=witherspoon-tacoma DISTRO=openbmc-openpower bitbake aspeed-image-norootfs (From meta-ibm rev: 77e917a89fd591bdc614aab362138f563460a316) Change-Id: I75374dbb3a01a66b2c70d96e56587a818262ebf8 Signed-off-by: Brad Bishop --- .../conf/machine/witherspoon-tacoma.conf | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 meta-ibm/meta-witherspoon/conf/machine/witherspoon-tacoma.conf (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/conf/machine/witherspoon-tacoma.conf b/meta-ibm/meta-witherspoon/conf/machine/witherspoon-tacoma.conf new file mode 100644 index 000000000..98d1978ee --- /dev/null +++ b/meta-ibm/meta-witherspoon/conf/machine/witherspoon-tacoma.conf @@ -0,0 +1,24 @@ +KERNEL_DEVICETREE = "aspeed-bmc-opp-tacoma.dtb" +UBOOT_MACHINE = "evb-ast2600_defconfig" + +MACHINEOVERRIDES =. "ibm-ac-server:witherspoon:" +require conf/machine/include/ast2600.inc +require conf/machine/include/openpower.inc +require conf/machine/include/p9.inc + +IMAGE_FSTYPES = "cpio.lzma" + +SERIAL_CONSOLES = "115200;ttyS4" + +MRW_XML = "witherspoon.xml" +PHOSPHOR_MRW_LICENSE = "Apache-2.0" +PHOSPHOR_MRW_LIC_FILES_CHKSUM = "file://LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e" +PHOSPHOR_MRW_URI = "git://github.com/open-power/witherspoon-xml" +PHOSPHOR_MRW_REV = "c622cb5a5dd3ebc2a4eef558d1b70740f914e6f7" + +VIRTUAL-RUNTIME_phosphor-hwmon-config_df-mrw = "" + +PREFERRED_PROVIDER_virtual/phosphor-fan-control-fan-config_df-mrw = \ + "phosphor-fan-control-fan-config" +PREFERRED_PROVIDER_virtual/phosphor-fan-presence-config_df-mrw = \ + "phosphor-fan-presence-config" -- cgit v1.2.3 From af04d19514726cead1f7cfbaa5731a737d132f0d Mon Sep 17 00:00:00 2001 From: Alvin Wang Date: Wed, 28 Aug 2019 15:18:15 +0800 Subject: Add Mihawk mac address sync (From meta-ibm rev: effd83bdc65d9ae8f9d000205f8d55e0c29557e4) Change-Id: I5d8fb1cd15e0b0bf2c2360631be8f259f42be98f Signed-off-by: Alvin Wang Signed-off-by: Brad Bishop --- meta-ibm/meta-witherspoon/conf/machine/mihawk.conf | 5 ++++- .../images/obmc-phosphor-image.bbappend | 2 +- .../network/first-boot-set-mac_%.bbappend | 1 + .../vpd/mihawk-openpower-fru-inventory-native.bb | 19 +++++++++++++++++++ .../vpd/mihawk-openpower-fru-inventory/inventory | 3 +++ .../vpd/mihawk-openpower-fru-vpd-layout-native.bb | 20 ++++++++++++++++++++ .../vpd/mihawk-openpower-fru-vpd-layout/layout.yaml | 17 +++++++++++++++++ 7 files changed, 65 insertions(+), 2 deletions(-) create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/vpd/mihawk-openpower-fru-inventory-native.bb create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/vpd/mihawk-openpower-fru-inventory/inventory create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/vpd/mihawk-openpower-fru-vpd-layout-native.bb create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/vpd/mihawk-openpower-fru-vpd-layout/layout.yaml (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/conf/machine/mihawk.conf b/meta-ibm/meta-witherspoon/conf/machine/mihawk.conf index 53a9f5b9c..7a6fd8778 100644 --- a/meta-ibm/meta-witherspoon/conf/machine/mihawk.conf +++ b/meta-ibm/meta-witherspoon/conf/machine/mihawk.conf @@ -7,6 +7,7 @@ UBOOT_MACHINE = "ast_g5_ncsi_config" OBMC_POWER_SUPPLY_INSTANCES = "0 1" PREFERRED_PROVIDER_virtual/p9-vcs-workaround = '' +PREFERRED_PROVIDER_virtual/openpower-fru-vpd-layout = "mihawk-openpower-fru-vpd-layout-native" require conf/machine/include/ast2500.inc require conf/machine/include/obmc-bsp-common.inc @@ -36,4 +37,6 @@ PREFERRED_PROVIDER_virtual/phosphor-fan-control-fan-config_df-mrw = \ PREFERRED_PROVIDER_virtual/phosphor-led-manager-config-native_df-mrw = \ "mihawk-led-manager-config-native" -PREFERRED_PROVIDER_virtual/phosphor-logging-callouts_df-mrw = "mihawk-phosphor-logging-callouts-native" \ No newline at end of file +PREFERRED_PROVIDER_virtual/phosphor-logging-callouts_df-mrw = "mihawk-phosphor-logging-callouts-native" + +PREFERRED_PROVIDER_virtual/openpower-fru-inventory_df-mrw = "mihawk-openpower-fru-inventory-native" diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/images/obmc-phosphor-image.bbappend b/meta-ibm/meta-witherspoon/recipes-phosphor/images/obmc-phosphor-image.bbappend index 199d2c465..c66cc4efc 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/images/obmc-phosphor-image.bbappend +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/images/obmc-phosphor-image.bbappend @@ -1,2 +1,2 @@ OBMC_IMAGE_EXTRA_INSTALL_append_ibm-ac-server = " mboxd max31785-msl phosphor-msl-verify liberation-fonts uart-render-controller first-boot-set-mac first-boot-set-hostname" -OBMC_IMAGE_EXTRA_INSTALL_append_mihawk = " mboxd liberation-fonts uart-render-controller" +OBMC_IMAGE_EXTRA_INSTALL_append_mihawk = " mboxd liberation-fonts uart-render-controller first-boot-set-mac" diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/network/first-boot-set-mac_%.bbappend b/meta-ibm/meta-witherspoon/recipes-phosphor/network/first-boot-set-mac_%.bbappend index cb167ee3f..fc8f6b861 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/network/first-boot-set-mac_%.bbappend +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/network/first-boot-set-mac_%.bbappend @@ -1 +1,2 @@ SYSTEMD_SERVICE_${PN}_append_ibm-ac-server = " first-boot-set-mac@eth0.service" +SYSTEMD_SERVICE_${PN}_append_mihawk = " first-boot-set-mac@eth0.service first-boot-set-mac@eth1.service" \ No newline at end of file diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/vpd/mihawk-openpower-fru-inventory-native.bb b/meta-ibm/meta-witherspoon/recipes-phosphor/vpd/mihawk-openpower-fru-inventory-native.bb new file mode 100644 index 000000000..e868fe99b --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/vpd/mihawk-openpower-fru-inventory-native.bb @@ -0,0 +1,19 @@ +SUMMARY = "Mihawk Inventory config for openpower-vpd-parser" +PR = "r1" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" + +inherit native +inherit openpower-fru-vpd + +SRC_URI += "file://inventory" + +PROVIDES += "virtual/openpower-fru-inventory" + +S = "${WORKDIR}" + +do_install() { + DEST=${D}${inventory_datadir_native} + install -d ${DEST} + install inventory ${DEST} +} diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/vpd/mihawk-openpower-fru-inventory/inventory b/meta-ibm/meta-witherspoon/recipes-phosphor/vpd/mihawk-openpower-fru-inventory/inventory new file mode 100644 index 000000000..5ae35ff9b --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/vpd/mihawk-openpower-fru-inventory/inventory @@ -0,0 +1,3 @@ +FRUS=ETHERNET,ETHERNET1 +PATHS=/system/chassis/motherboard/bmc/eth0,/system/chassis/motherboard/bmc/eth1 +EEPROM=/sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a340.i2c-bus/i2c-8/8-0050/eeprom diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/vpd/mihawk-openpower-fru-vpd-layout-native.bb b/meta-ibm/meta-witherspoon/recipes-phosphor/vpd/mihawk-openpower-fru-vpd-layout-native.bb new file mode 100644 index 000000000..0b9d6a785 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/vpd/mihawk-openpower-fru-vpd-layout-native.bb @@ -0,0 +1,20 @@ +SUMMARY = "Mihawk VPD layout for openpower-fru-vpd" +PR = "r1" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" + +inherit native +inherit openpower-fru-vpd + +SRC_URI += "file://layout.yaml" + +PROVIDES += "virtual/openpower-fru-vpd-layout" + +S = "${WORKDIR}" + +do_install() { + DEST=${D}${vpdlayout_datadir} + + install -d ${DEST} + install layout.yaml ${DEST} +} diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/vpd/mihawk-openpower-fru-vpd-layout/layout.yaml b/meta-ibm/meta-witherspoon/recipes-phosphor/vpd/mihawk-openpower-fru-vpd-layout/layout.yaml new file mode 100644 index 000000000..5bceb2f72 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/vpd/mihawk-openpower-fru-vpd-layout/layout.yaml @@ -0,0 +1,17 @@ +BMC: + xyz.openbmc_project.Inventory.Decorator.Asset: + OPFR,VP: PartNumber + OPFR,VS: SerialNumber + OPFR,VN: Manufacturer + xyz.openbmc_project.Inventory.Item: + VINI,DR: PrettyName + xyz.openbmc_project.Inventory.Item.Bmc: +ETHERNET: + xyz.openbmc_project.Inventory.Item.NetworkInterface: + VINI,B1: MACAddress + xyz.openbmc_project.Inventory.Item.Ethernet: +ETHERNET1: + xyz.openbmc_project.Inventory.Item.NetworkInterface: + OPFR,B1: MACAddress + xyz.openbmc_project.Inventory.Item.Ethernet: + -- cgit v1.2.3 From a91c80cd8ec6223d8ab651bc882466ced120a656 Mon Sep 17 00:00:00 2001 From: Lei YU Date: Tue, 17 Sep 2019 10:32:20 +0800 Subject: meta-romulus: Remove cooling-type The cooling-type in phosphor-fan is optional, and Romulus is a air-cooled system and does not require cooling-type application at all. Remove the cooling-type app and the related configuration files. Tested: Verify the generated phosphor-fan related hpp and cpp files are identical as before, and the system is able to power on and do fan monitor/control without problem. (From meta-ibm rev: 3168f5e5fb59bd37eed1600d42a8d6fc02875fea) Change-Id: I30f47ef63f4ff5bea89f31966273930baaf070ea Signed-off-by: Lei YU Signed-off-by: Brad Bishop --- ...phor-fan-control-zone-conditions-config.bbappend | 1 - .../zone_conditions.yaml | 9 --------- .../obmc/phosphor-fan/phosphor-cooling-type-0.conf | 3 --- .../phosphor-fan/phosphor-cooling-type@.service | 15 --------------- .../recipes-phosphor/fans/phosphor-fan_%.bbappend | 21 --------------------- .../packagegroups/packagegroup-obmc-apps.bbappend | 2 +- 6 files changed, 1 insertion(+), 50 deletions(-) delete mode 100644 meta-ibm/meta-romulus/recipes-phosphor/fans/phosphor-fan-control-zone-conditions-config.bbappend delete mode 100644 meta-ibm/meta-romulus/recipes-phosphor/fans/phosphor-fan-control-zone-conditions-config/zone_conditions.yaml delete mode 100644 meta-ibm/meta-romulus/recipes-phosphor/fans/phosphor-fan/obmc/phosphor-fan/phosphor-cooling-type-0.conf delete mode 100644 meta-ibm/meta-romulus/recipes-phosphor/fans/phosphor-fan/phosphor-cooling-type@.service delete mode 100644 meta-ibm/meta-romulus/recipes-phosphor/fans/phosphor-fan_%.bbappend (limited to 'meta-ibm') diff --git a/meta-ibm/meta-romulus/recipes-phosphor/fans/phosphor-fan-control-zone-conditions-config.bbappend b/meta-ibm/meta-romulus/recipes-phosphor/fans/phosphor-fan-control-zone-conditions-config.bbappend deleted file mode 100644 index 781af4fcf..000000000 --- a/meta-ibm/meta-romulus/recipes-phosphor/fans/phosphor-fan-control-zone-conditions-config.bbappend +++ /dev/null @@ -1 +0,0 @@ -FILESEXTRAPATHS_prepend_romulus := "${THISDIR}/${BPN}:" diff --git a/meta-ibm/meta-romulus/recipes-phosphor/fans/phosphor-fan-control-zone-conditions-config/zone_conditions.yaml b/meta-ibm/meta-romulus/recipes-phosphor/fans/phosphor-fan-control-zone-conditions-config/zone_conditions.yaml deleted file mode 100644 index 7dc99b6a2..000000000 --- a/meta-ibm/meta-romulus/recipes-phosphor/fans/phosphor-fan-control-zone-conditions-config/zone_conditions.yaml +++ /dev/null @@ -1,9 +0,0 @@ -conditions: - - name: air_cooled_chassis - type: getProperty - properties: - - property: WaterCooled - interface: xyz.openbmc_project.Inventory.Decorator.CoolingType - path: /xyz/openbmc_project/inventory/system/chassis - type: bool - value: false diff --git a/meta-ibm/meta-romulus/recipes-phosphor/fans/phosphor-fan/obmc/phosphor-fan/phosphor-cooling-type-0.conf b/meta-ibm/meta-romulus/recipes-phosphor/fans/phosphor-fan/obmc/phosphor-fan/phosphor-cooling-type-0.conf deleted file mode 100644 index 21fcfcb49..000000000 --- a/meta-ibm/meta-romulus/recipes-phosphor/fans/phosphor-fan/obmc/phosphor-fan/phosphor-cooling-type-0.conf +++ /dev/null @@ -1,3 +0,0 @@ -OBJPATH="--path=/system/chassis" -AIR="--air" - diff --git a/meta-ibm/meta-romulus/recipes-phosphor/fans/phosphor-fan/phosphor-cooling-type@.service b/meta-ibm/meta-romulus/recipes-phosphor/fans/phosphor-fan/phosphor-cooling-type@.service deleted file mode 100644 index 9232b13fc..000000000 --- a/meta-ibm/meta-romulus/recipes-phosphor/fans/phosphor-fan/phosphor-cooling-type@.service +++ /dev/null @@ -1,15 +0,0 @@ -[Unit] -Description=Phosphor Cooling Type -Wants=mapper-wait@-xyz-openbmc_project-inventory.service -After=mapper-wait@-xyz-openbmc_project-inventory.service -ConditionPathExists={envfiledir}/obmc/phosphor-fan/phosphor-cooling-type-%i.conf - -[Service] -Type=oneshot -RemainAfterExit=yes -EnvironmentFile={envfiledir}/obmc/phosphor-fan/phosphor-cooling-type-%i.conf -ExecStart=/usr/bin/env phosphor-cooling-type ${{OBJPATH}} ${{AIR}} -SyslogIdentifier=phosphor-cooling-type - -[Install] -RequiredBy=multi-user.target diff --git a/meta-ibm/meta-romulus/recipes-phosphor/fans/phosphor-fan_%.bbappend b/meta-ibm/meta-romulus/recipes-phosphor/fans/phosphor-fan_%.bbappend deleted file mode 100644 index 3ec031946..000000000 --- a/meta-ibm/meta-romulus/recipes-phosphor/fans/phosphor-fan_%.bbappend +++ /dev/null @@ -1,21 +0,0 @@ -FILESEXTRAPATHS_prepend_romulus := "${THISDIR}/${BPN}:" - -# Package configuration -FAN_PACKAGES += " \ - phosphor-cooling-type \ -" - -PACKAGECONFIG_append_romulus = " cooling-type" - -TMPL_COOLING = "phosphor-cooling-type@.service" -INSTFMT_COOLING = "phosphor-cooling-type@{0}.service" -COOLING_TGT = "multi-user.target" -FMT_COOLING = "../${TMPL_COOLING}:${COOLING_TGT}.requires/${INSTFMT_COOLING}" - -FILES_phosphor-cooling-type = "${bindir}/phosphor-cooling-type" -SYSTEMD_SERVICE_phosphor-cooling-type += "${TMPL_COOLING}" -SYSTEMD_LINK_phosphor-cooling-type += "${@compose_list(d, 'FMT_COOLING', 'OBMC_CHASSIS_INSTANCES')}" - -COOLING_ENV_FMT = "obmc/phosphor-fan/phosphor-cooling-type-{0}.conf" - -SYSTEMD_ENVIRONMENT_FILE_phosphor-cooling-type_append_romulus = " ${@compose_list(d, 'COOLING_ENV_FMT', 'OBMC_CHASSIS_INSTANCES')}" diff --git a/meta-ibm/meta-romulus/recipes-phosphor/packagegroups/packagegroup-obmc-apps.bbappend b/meta-ibm/meta-romulus/recipes-phosphor/packagegroups/packagegroup-obmc-apps.bbappend index 920e529a5..6380ac256 100644 --- a/meta-ibm/meta-romulus/recipes-phosphor/packagegroups/packagegroup-obmc-apps.bbappend +++ b/meta-ibm/meta-romulus/recipes-phosphor/packagegroups/packagegroup-obmc-apps.bbappend @@ -1,2 +1,2 @@ -RDEPENDS_${PN}-inventory_append_romulus = " openpower-occ-control phosphor-cooling-type id-button" +RDEPENDS_${PN}-inventory_append_romulus = " openpower-occ-control id-button" RDEPENDS_${PN}-extras_append_romulus = " phosphor-webui phosphor-image-signing" -- cgit v1.2.3 From d77088a92b6f2bbcca68eb673a80db3863530b2c Mon Sep 17 00:00:00 2001 From: Brad Bishop Date: Fri, 13 Sep 2019 13:06:15 -0400 Subject: meta-ibm: Remove references to IBMBASE IBMBASE is only used for pointing at licenses...point at the licenses in oe-core in meta/files/common-licenses instead. to match the defacto convention used in other oe layers like meta-openembedded. (From meta-ibm rev: cbbb0e5b4e44d831fce5daafd13272d401440f40) Change-Id: Ib214f92b2c384e3eb2a1f53ecf4b21034438d001 Signed-off-by: Brad Bishop --- meta-ibm/conf/layer.conf | 3 --- .../recipes-phosphor/configuration/palmetto-yaml-config.bb | 2 +- .../recipes-phosphor/leds/palmetto-led-manager-config-native.bb | 2 +- .../recipes-phosphor/occ/palmetto-occ-control-config-native.bb | 2 +- meta-ibm/meta-romulus/recipes-phosphor/chassis/avsbus-control.bb | 2 +- meta-ibm/meta-romulus/recipes-phosphor/chassis/vrm-control.bb | 2 +- .../meta-romulus/recipes-phosphor/configuration/romulus-yaml-config.bb | 2 +- meta-ibm/meta-romulus/recipes-phosphor/gpio/id-button.bb | 2 +- .../recipes-phosphor/leds/romulus-led-manager-config-native.bb | 2 +- .../logging/romulus-phosphor-logging-callouts-native.bb | 2 +- .../recipes-phosphor/occ/romulus-occ-control-config-native.bb | 2 +- meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control.bb | 2 +- .../meta-witherspoon/recipes-phosphor/chassis/power-workarounds.bb | 2 +- meta-ibm/meta-witherspoon/recipes-phosphor/chassis/vrm-control.bb | 2 +- .../recipes-phosphor/configuration/acx22-yaml-config.bb | 2 +- meta-ibm/meta-witherspoon/recipes-phosphor/dbus/events-policy.bb | 2 +- meta-ibm/meta-witherspoon/recipes-phosphor/dbus/fan-policy.bb | 2 +- meta-ibm/meta-witherspoon/recipes-phosphor/dbus/power-supply-policy.bb | 2 +- meta-ibm/meta-witherspoon/recipes-phosphor/dbus/thermal-policy.bb | 2 +- .../meta-witherspoon/recipes-phosphor/fans/witherspoon-fan-watchdog.bb | 2 +- meta-ibm/meta-witherspoon/recipes-phosphor/gpio/id-button.bb | 2 +- .../meta-witherspoon/recipes-phosphor/inventory/inventory-cleanup.bb | 2 +- .../recipes-phosphor/leds/mihawk-led-manager-config-native.bb | 2 +- .../logging/mihawk-phosphor-logging-callouts-native.bb | 2 +- meta-ibm/meta-witherspoon/recipes-phosphor/power/power-sequencer.bb | 2 +- .../recipes-phosphor/power/witherspoon-power-supply-sync.bb | 2 +- .../recipes-phosphor/dbus/ibm-dbus-interfaces-mapper-config-native.bb | 2 +- 27 files changed, 26 insertions(+), 29 deletions(-) (limited to 'meta-ibm') diff --git a/meta-ibm/conf/layer.conf b/meta-ibm/conf/layer.conf index f16cdee5f..131c45be3 100644 --- a/meta-ibm/conf/layer.conf +++ b/meta-ibm/conf/layer.conf @@ -8,6 +8,3 @@ BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \ BBFILE_COLLECTIONS += "ibm-layer" BBFILE_PATTERN_ibm-layer := "^${LAYERDIR}/" LAYERSERIES_COMPAT_ibm-layer = "thud warrior" - -# Provide a variable that points the base of the ibm layer. -IBMBASE = '${@os.path.normpath("${LAYERDIR}/")}' diff --git a/meta-ibm/meta-palmetto/recipes-phosphor/configuration/palmetto-yaml-config.bb b/meta-ibm/meta-palmetto/recipes-phosphor/configuration/palmetto-yaml-config.bb index 743b51fa8..44b47604d 100644 --- a/meta-ibm/meta-palmetto/recipes-phosphor/configuration/palmetto-yaml-config.bb +++ b/meta-ibm/meta-palmetto/recipes-phosphor/configuration/palmetto-yaml-config.bb @@ -1,7 +1,7 @@ SUMMARY = "YAML configuration for Palmetto" PR = "r1" LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" inherit allarch diff --git a/meta-ibm/meta-palmetto/recipes-phosphor/leds/palmetto-led-manager-config-native.bb b/meta-ibm/meta-palmetto/recipes-phosphor/leds/palmetto-led-manager-config-native.bb index a7e8c6b74..ab6d5e314 100644 --- a/meta-ibm/meta-palmetto/recipes-phosphor/leds/palmetto-led-manager-config-native.bb +++ b/meta-ibm/meta-palmetto/recipes-phosphor/leds/palmetto-led-manager-config-native.bb @@ -1,7 +1,7 @@ SUMMARY = "Phosphor LED Group Management for Palmetto" PR = "r1" LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" inherit native diff --git a/meta-ibm/meta-palmetto/recipes-phosphor/occ/palmetto-occ-control-config-native.bb b/meta-ibm/meta-palmetto/recipes-phosphor/occ/palmetto-occ-control-config-native.bb index 609c8437f..db5029597 100644 --- a/meta-ibm/meta-palmetto/recipes-phosphor/occ/palmetto-occ-control-config-native.bb +++ b/meta-ibm/meta-palmetto/recipes-phosphor/occ/palmetto-occ-control-config-native.bb @@ -1,7 +1,7 @@ SUMMARY = "Palmetto OCC Control sensor IDs" PR = "r1" LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" inherit native inherit openpower-occ-control diff --git a/meta-ibm/meta-romulus/recipes-phosphor/chassis/avsbus-control.bb b/meta-ibm/meta-romulus/recipes-phosphor/chassis/avsbus-control.bb index ca45a1eb3..f7ed43038 100644 --- a/meta-ibm/meta-romulus/recipes-phosphor/chassis/avsbus-control.bb +++ b/meta-ibm/meta-romulus/recipes-phosphor/chassis/avsbus-control.bb @@ -1,7 +1,7 @@ SUMMARY = "Romulus AVSBus control" PR = "r1" LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" inherit obmc-phosphor-systemd diff --git a/meta-ibm/meta-romulus/recipes-phosphor/chassis/vrm-control.bb b/meta-ibm/meta-romulus/recipes-phosphor/chassis/vrm-control.bb index ba38b8769..f0e6eb0ea 100644 --- a/meta-ibm/meta-romulus/recipes-phosphor/chassis/vrm-control.bb +++ b/meta-ibm/meta-romulus/recipes-phosphor/chassis/vrm-control.bb @@ -2,7 +2,7 @@ SUMMARY = "Romulus VRM Overrides" DESCRIPTION = "Sets Rolumus VRMs to custom voltages" PR = "r1" LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" inherit obmc-phosphor-systemd diff --git a/meta-ibm/meta-romulus/recipes-phosphor/configuration/romulus-yaml-config.bb b/meta-ibm/meta-romulus/recipes-phosphor/configuration/romulus-yaml-config.bb index a2f609eec..026471f7e 100644 --- a/meta-ibm/meta-romulus/recipes-phosphor/configuration/romulus-yaml-config.bb +++ b/meta-ibm/meta-romulus/recipes-phosphor/configuration/romulus-yaml-config.bb @@ -1,7 +1,7 @@ SUMMARY = "YAML configuration for Romulus" PR = "r1" LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" inherit allarch diff --git a/meta-ibm/meta-romulus/recipes-phosphor/gpio/id-button.bb b/meta-ibm/meta-romulus/recipes-phosphor/gpio/id-button.bb index cd2bab996..6251786c3 100644 --- a/meta-ibm/meta-romulus/recipes-phosphor/gpio/id-button.bb +++ b/meta-ibm/meta-romulus/recipes-phosphor/gpio/id-button.bb @@ -1,7 +1,7 @@ SUMMARY = "Romulus ID Button pressed application" PR = "r1" LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" inherit obmc-phosphor-systemd diff --git a/meta-ibm/meta-romulus/recipes-phosphor/leds/romulus-led-manager-config-native.bb b/meta-ibm/meta-romulus/recipes-phosphor/leds/romulus-led-manager-config-native.bb index 9b511e015..0ffdee9cd 100644 --- a/meta-ibm/meta-romulus/recipes-phosphor/leds/romulus-led-manager-config-native.bb +++ b/meta-ibm/meta-romulus/recipes-phosphor/leds/romulus-led-manager-config-native.bb @@ -1,7 +1,7 @@ SUMMARY = "Phosphor LED Group Management for Romulus" PR = "r1" LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" inherit native diff --git a/meta-ibm/meta-romulus/recipes-phosphor/logging/romulus-phosphor-logging-callouts-native.bb b/meta-ibm/meta-romulus/recipes-phosphor/logging/romulus-phosphor-logging-callouts-native.bb index a6fd5b1f9..d62c2a399 100644 --- a/meta-ibm/meta-romulus/recipes-phosphor/logging/romulus-phosphor-logging-callouts-native.bb +++ b/meta-ibm/meta-romulus/recipes-phosphor/logging/romulus-phosphor-logging-callouts-native.bb @@ -1,7 +1,7 @@ SUMMARY = "Romulus inventory map for phosphor-ipmi-host" PR = "r1" LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" inherit native inherit phosphor-logging diff --git a/meta-ibm/meta-romulus/recipes-phosphor/occ/romulus-occ-control-config-native.bb b/meta-ibm/meta-romulus/recipes-phosphor/occ/romulus-occ-control-config-native.bb index ec6a39df4..31fcd757b 100644 --- a/meta-ibm/meta-romulus/recipes-phosphor/occ/romulus-occ-control-config-native.bb +++ b/meta-ibm/meta-romulus/recipes-phosphor/occ/romulus-occ-control-config-native.bb @@ -1,7 +1,7 @@ SUMMARY = "Romulus OCC Control sensor IDs" PR = "r1" LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" inherit native inherit openpower-occ-control diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control.bb b/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control.bb index 762d1a469..2e98aaf90 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control.bb +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/avsbus-control.bb @@ -1,7 +1,7 @@ SUMMARY = "AVSBus control" PR = "r1" LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" inherit allarch inherit obmc-phosphor-systemd diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/power-workarounds.bb b/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/power-workarounds.bb index 891620b0c..af8babb53 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/power-workarounds.bb +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/power-workarounds.bb @@ -1,7 +1,7 @@ SUMMARY = "Power device Workarounds" PR = "r1" LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" inherit allarch inherit obmc-phosphor-systemd diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/vrm-control.bb b/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/vrm-control.bb index 49fcf447b..8a0d7a6eb 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/vrm-control.bb +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/chassis/vrm-control.bb @@ -2,7 +2,7 @@ SUMMARY = "VRM Overrides" DESCRIPTION = "Sets VRMs to custom voltages" PR = "r1" LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" inherit allarch inherit obmc-phosphor-systemd diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/configuration/acx22-yaml-config.bb b/meta-ibm/meta-witherspoon/recipes-phosphor/configuration/acx22-yaml-config.bb index 245693ac8..5371c3a09 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/configuration/acx22-yaml-config.bb +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/configuration/acx22-yaml-config.bb @@ -1,7 +1,7 @@ SUMMARY = "YAML configuration for ACx22 systems" PR = "r1" LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" inherit allarch inherit mrw-xml diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/events-policy.bb b/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/events-policy.bb index f456e4287..52cb31313 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/events-policy.bb +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/events-policy.bb @@ -1,7 +1,7 @@ SUMMARY = "Event policy configuration for meta-witherspoon machines" PR = "r1" LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" inherit allarch inherit phosphor-dbus-monitor diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/fan-policy.bb b/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/fan-policy.bb index e53d9c055..f8355053d 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/fan-policy.bb +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/fan-policy.bb @@ -1,7 +1,7 @@ SUMMARY = "Fan policy configurations for meta-witherspoon machines" PR = "r1" LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" inherit allarch inherit phosphor-dbus-monitor diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/power-supply-policy.bb b/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/power-supply-policy.bb index 27d60fb34..8d3df4600 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/power-supply-policy.bb +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/power-supply-policy.bb @@ -1,7 +1,7 @@ SUMMARY = "Power supply policy configuration for meta-witherspoon machines" PR = "r1" LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" inherit allarch inherit phosphor-dbus-monitor diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/thermal-policy.bb b/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/thermal-policy.bb index 5631ec493..b5b38baa3 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/thermal-policy.bb +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/dbus/thermal-policy.bb @@ -1,7 +1,7 @@ SUMMARY = "Thermal policy configuration for meta-witherspoon machines" PR = "r1" LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" inherit allarch inherit phosphor-dbus-monitor diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/fans/witherspoon-fan-watchdog.bb b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/witherspoon-fan-watchdog.bb index 357de9516..93c8d457b 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/fans/witherspoon-fan-watchdog.bb +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/witherspoon-fan-watchdog.bb @@ -1,7 +1,7 @@ SUMMARY = "Witherspoon fan watchdog services" PR = "r1" LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" inherit obmc-phosphor-systemd diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/gpio/id-button.bb b/meta-ibm/meta-witherspoon/recipes-phosphor/gpio/id-button.bb index cdbdf778d..386a2b93d 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/gpio/id-button.bb +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/gpio/id-button.bb @@ -1,7 +1,7 @@ SUMMARY = "ID Button pressed application" PR = "r1" LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" inherit obmc-phosphor-systemd diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/inventory/inventory-cleanup.bb b/meta-ibm/meta-witherspoon/recipes-phosphor/inventory/inventory-cleanup.bb index f68edcb62..0c4b56f72 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/inventory/inventory-cleanup.bb +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/inventory/inventory-cleanup.bb @@ -1,7 +1,7 @@ SUMMARY = "Copy the inventory cleanup yaml for inventory manager" PR = "r1" LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" inherit allarch inherit phosphor-inventory-manager diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/leds/mihawk-led-manager-config-native.bb b/meta-ibm/meta-witherspoon/recipes-phosphor/leds/mihawk-led-manager-config-native.bb index fa1662817..459a3161c 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/leds/mihawk-led-manager-config-native.bb +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/leds/mihawk-led-manager-config-native.bb @@ -1,7 +1,7 @@ SUMMARY = "Phosphor LED Group Management for Mihawk" PR = "r1" LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" inherit native diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/logging/mihawk-phosphor-logging-callouts-native.bb b/meta-ibm/meta-witherspoon/recipes-phosphor/logging/mihawk-phosphor-logging-callouts-native.bb index dcd902b1b..a52e93762 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/logging/mihawk-phosphor-logging-callouts-native.bb +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/logging/mihawk-phosphor-logging-callouts-native.bb @@ -1,7 +1,7 @@ SUMMARY = "Mihawk inventory map for phosphor-ipmi-host" PR = "r1" LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" inherit native inherit phosphor-logging diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/power/power-sequencer.bb b/meta-ibm/meta-witherspoon/recipes-phosphor/power/power-sequencer.bb index f19e02ff8..be5035eca 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/power/power-sequencer.bb +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/power/power-sequencer.bb @@ -1,7 +1,7 @@ SUMMARY = "Power sequencer data definition" PR = "r1" LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" inherit allarch diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/power/witherspoon-power-supply-sync.bb b/meta-ibm/meta-witherspoon/recipes-phosphor/power/witherspoon-power-supply-sync.bb index a2d7e8919..4f599a78c 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/power/witherspoon-power-supply-sync.bb +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/power/witherspoon-power-supply-sync.bb @@ -2,7 +2,7 @@ SUMMARY = "Power Supply Sync" DESCRIPTION = "Synchronizes the power supplies' INPUT_HISTORY data" PR = "r1" LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" inherit obmc-phosphor-systemd diff --git a/meta-ibm/recipes-phosphor/dbus/ibm-dbus-interfaces-mapper-config-native.bb b/meta-ibm/recipes-phosphor/dbus/ibm-dbus-interfaces-mapper-config-native.bb index 381bef419..b8489d670 100644 --- a/meta-ibm/recipes-phosphor/dbus/ibm-dbus-interfaces-mapper-config-native.bb +++ b/meta-ibm/recipes-phosphor/dbus/ibm-dbus-interfaces-mapper-config-native.bb @@ -2,7 +2,7 @@ SUMMARY="Add /com/ibm namespace to phosphor-mapper" DESCRIPTION="Add the /com/ibm path namespace and \ com.ibm interface prefix to the mapper watch list." LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" inherit phosphor-mapper inherit native -- cgit v1.2.3 From 3ded63d40c63666ebb8d549a93bff87e130914ca Mon Sep 17 00:00:00 2001 From: Ben_Pai Date: Thu, 12 Sep 2019 10:58:00 +0800 Subject: meta-ibm: Add mihawk total power sensor Get total power from occ. (From meta-ibm rev: 5f74841d980f274383dd0bf1c16b1c3df18142e2) Signed-off-by: Ben Pai Change-Id: I97bf6b2229890dca1a0bda421b85b10392c2a814 Signed-off-by: Brad Bishop --- .../mihawk/acx22-ipmi-hwmon-sensors.yaml | 25 ++++++++++++++++++++-- .../00--00--00--06/sbefifo1-dev0/occ-hwmon.1.conf | 1 + 2 files changed, 24 insertions(+), 2 deletions(-) (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/configuration/acx22-yaml-config/mihawk/acx22-ipmi-hwmon-sensors.yaml b/meta-ibm/meta-witherspoon/recipes-phosphor/configuration/acx22-yaml-config/mihawk/acx22-ipmi-hwmon-sensors.yaml index 03b9700dc..71b79b73b 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/configuration/acx22-yaml-config/mihawk/acx22-ipmi-hwmon-sensors.yaml +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/configuration/acx22-yaml-config/mihawk/acx22-ipmi-hwmon-sensors.yaml @@ -419,6 +419,27 @@ serviceInterface: org.freedesktop.DBus.Properties unit: xyz.openbmc_project.Sensor.Value.Unit.Amperes 252: + bExp: 0 + entityID: 10 + entityInstance: 15 + interfaces: + xyz.openbmc_project.Sensor.Value: + Value: + Offsets: + 255: + type: int64_t + multiplierM: 20 + offsetB: 0 + path: /xyz/openbmc_project/sensors/power/total_power + rExp: 0 + readingType: readingData + scale: -6 + sensorNamePattern: nameLeaf + sensorReadingType: 1 + sensorType: 8 + serviceInterface: org.freedesktop.DBus.Properties + unit: xyz.openbmc_project.Sensor.Value.Unit.Watts +253: bExp: 0 entityID: 35 entityInstance: 1 @@ -439,7 +460,7 @@ sensorType: 1 serviceInterface: org.freedesktop.DBus.Properties unit: xyz.openbmc_project.Sensor.Value.Unit.DegreesC -253: +254: bExp: 0 entityID: 35 entityInstance: 2 @@ -460,7 +481,7 @@ sensorType: 1 serviceInterface: org.freedesktop.DBus.Properties unit: xyz.openbmc_project.Sensor.Value.Unit.DegreesC -254: +255: bExp: 0 entityID: 64 entityInstance: 1 diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/devices/platform/gpio-fsi/fsi0/slave@00--00/00--00--00--06/sbefifo1-dev0/occ-hwmon.1.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/devices/platform/gpio-fsi/fsi0/slave@00--00/00--00--00--06/sbefifo1-dev0/occ-hwmon.1.conf index f47b49a82..5b347c10c 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/devices/platform/gpio-fsi/fsi0/slave@00--00/00--00--00--06/sbefifo1-dev0/occ-hwmon.1.conf +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/sensors/phosphor-hwmon/mihawk/obmc/hwmon/devices/platform/gpio-fsi/fsi0/slave@00--00/00--00--00--06/sbefifo1-dev0/occ-hwmon.1.conf @@ -288,3 +288,4 @@ LABEL_power8 = "fans_power" LABEL_power9 = "storage_b_power" LABEL_power10 = "storage_a_power" LABEL_power11 = "gpu0_power" +LABEL_power14 = "total_power" -- cgit v1.2.3 From 3d0041d616b5dc1156211373524bf913144f1e88 Mon Sep 17 00:00:00 2001 From: Andrew Geissler Date: Tue, 17 Sep 2019 19:00:24 +0000 Subject: witherspoon-pfault-analysis: srcrev bump 817f8a7a82..b3853e2d3a Brad Bishop (3): build: fix some warnings build: add support for building with meson build: drop autotools (From meta-ibm rev: 23d2feff13ee457a36f13bb6d615d0a11cc2428b) Change-Id: Icb648c74c18d203318692cfb5febc8672a437b95 Signed-off-by: Andrew Geissler Signed-off-by: Brad Bishop --- .../recipes-phosphor/power/witherspoon-pfault-analysis.inc | 2 +- .../recipes-phosphor/power/witherspoon-pfault-analysis_git.bb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/power/witherspoon-pfault-analysis.inc b/meta-ibm/meta-witherspoon/recipes-phosphor/power/witherspoon-pfault-analysis.inc index 63ab0dd42..790ab46be 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/power/witherspoon-pfault-analysis.inc +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/power/witherspoon-pfault-analysis.inc @@ -2,4 +2,4 @@ HOMEPAGE = "https://github.com/openbmc/witherspoon-pfault-analysis" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://${S}/LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e" SRC_URI += "git://github.com/openbmc/witherspoon-pfault-analysis" -SRCREV = "817f8a7a82983d3e7bdc409ca86f2897540e400f" +SRCREV = "b3853e2d3ac295a961e08927d177b40ddd683914" diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/power/witherspoon-pfault-analysis_git.bb b/meta-ibm/meta-witherspoon/recipes-phosphor/power/witherspoon-pfault-analysis_git.bb index 802f7594a..0645eb7a7 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/power/witherspoon-pfault-analysis_git.bb +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/power/witherspoon-pfault-analysis_git.bb @@ -3,7 +3,7 @@ DESCRIPTION = "Analyzes power devices for faults" PR = "r1" PV = "1.0+git${SRCPV}" -inherit autotools +inherit meson inherit pkgconfig inherit obmc-phosphor-systemd inherit pythonnative -- cgit v1.2.3 From ed03381645f8f1b8d642074ff2459aacd9300017 Mon Sep 17 00:00:00 2001 From: Brad Bishop Date: Tue, 10 Sep 2019 09:43:10 -0400 Subject: meta-ibm: Add sample build invocations Display sample build invocations when sourcing oe-init-build-env. These are only the most commonly used combinations of distro/machine/image and not an exhaustive list of all supported configurations. Rather the purpose of displaying these is to help bitbake newcomers quickly initiate a build without having to set DISTRO and MACHINE in local.conf or wonder which image recipe to bake. (From meta-ibm rev: 85057176dc1cee6ab5c78ca949f89e5cdb555bca) Change-Id: Ie16860278d9d779fa1d53025a29609ad45dcb94f Signed-off-by: Brad Bishop --- meta-ibm/meta-witherspoon/conf/conf-notes.txt | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/conf/conf-notes.txt b/meta-ibm/meta-witherspoon/conf/conf-notes.txt index 9b3c01a55..0c78d458d 100644 --- a/meta-ibm/meta-witherspoon/conf/conf-notes.txt +++ b/meta-ibm/meta-witherspoon/conf/conf-notes.txt @@ -1,2 +1,12 @@ -Common targets are: - obmc-phosphor-image +Sample meta-witherspoon build invocations: + +mihawk: +DISTRO=openbmc-witherspoon MACHINE=mihawk bitbake obmc-phosphor-image +swift: +DISTRO=openbmc-witherspoon MACHINE=swift bitbake obmc-phosphor-image +witherspoon: +DISTRO=openbmc-witherspoon MACHINE=witherspoon bitbake obmc-phosphor-image +witherspoon-tacoma: +DISTRO=openbmc-openpower MACHINE=witherspoon-tacoma bitbake aspeed-image-norootfs +witherspoon-128: +DISTRO=openbmc-witherspoon MACHINE=witherspoon-128 bitbake obmc-phosphor-image -- cgit v1.2.3 From 44d8109d65a066a3a4931ee189e95121e506c545 Mon Sep 17 00:00:00 2001 From: Andrew Geissler Date: Thu, 19 Sep 2019 15:19:43 -0500 Subject: Build full phosphor rootfs into witherspoon-tacoma (From meta-ibm rev: fd1276f3a466058f0f0adbbbc6de889c0ceff9ac) Change-Id: I6d9db69525486e394a3e4757d3173284d0b07109 Signed-off-by: Andrew Geissler Signed-off-by: Brad Bishop --- meta-ibm/meta-witherspoon/conf/machine/witherspoon-tacoma.conf | 1 + 1 file changed, 1 insertion(+) (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/conf/machine/witherspoon-tacoma.conf b/meta-ibm/meta-witherspoon/conf/machine/witherspoon-tacoma.conf index 98d1978ee..bbee6ad56 100644 --- a/meta-ibm/meta-witherspoon/conf/machine/witherspoon-tacoma.conf +++ b/meta-ibm/meta-witherspoon/conf/machine/witherspoon-tacoma.conf @@ -7,6 +7,7 @@ require conf/machine/include/openpower.inc require conf/machine/include/p9.inc IMAGE_FSTYPES = "cpio.lzma" +INITRAMFS_IMAGE = "obmc-phosphor-image" SERIAL_CONSOLES = "115200;ttyS4" -- cgit v1.2.3 From d648bc43df93dae5a0c5bdce98dbb3f0a2d7ccfc Mon Sep 17 00:00:00 2001 From: Brad Bishop Date: Thu, 19 Sep 2019 14:26:02 -0400 Subject: meta-ibm: Remove more references to IBMBASE IBMBASE is only used for pointing at licenses...point at the licenses in oe-core in meta/files/common-licenses instead. to match the defacto convention used in other oe layers like meta-openembedded. (From meta-ibm rev: 9585e66aba26c0c0c7b10ed2552f3e42aaae078c) Change-Id: Iec1fe1ed7cd96615c51d5e81be60f4189c8e970c Signed-off-by: Brad Bishop --- .../recipes-phosphor/vpd/mihawk-openpower-fru-inventory-native.bb | 2 +- .../recipes-phosphor/vpd/mihawk-openpower-fru-vpd-layout-native.bb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/vpd/mihawk-openpower-fru-inventory-native.bb b/meta-ibm/meta-witherspoon/recipes-phosphor/vpd/mihawk-openpower-fru-inventory-native.bb index e868fe99b..2edb98d3c 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/vpd/mihawk-openpower-fru-inventory-native.bb +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/vpd/mihawk-openpower-fru-inventory-native.bb @@ -1,7 +1,7 @@ SUMMARY = "Mihawk Inventory config for openpower-vpd-parser" PR = "r1" LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" inherit native inherit openpower-fru-vpd diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/vpd/mihawk-openpower-fru-vpd-layout-native.bb b/meta-ibm/meta-witherspoon/recipes-phosphor/vpd/mihawk-openpower-fru-vpd-layout-native.bb index 0b9d6a785..c2332d56e 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/vpd/mihawk-openpower-fru-vpd-layout-native.bb +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/vpd/mihawk-openpower-fru-vpd-layout-native.bb @@ -1,7 +1,7 @@ SUMMARY = "Mihawk VPD layout for openpower-fru-vpd" PR = "r1" LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://${IBMBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" inherit native inherit openpower-fru-vpd -- cgit v1.2.3 From 3a878363c236e2dd7a30f6d831596e0626e7104d Mon Sep 17 00:00:00 2001 From: Ben_Pai Date: Fri, 20 Sep 2019 14:33:15 +0800 Subject: mihawk-xml: srcrev bump b9929ba9fd..f6ec5aa0f9 Change tpm connector instance name to prevent wrong name in bmc yaml file. (From meta-ibm rev: dad5e4f56d827cab311d9399a48bd09c26296f15) Change-Id: I919a8faadd3036b98215b76195602c1f8fb12435 Signed-off-by: Ben Pai Signed-off-by: Brad Bishop --- meta-ibm/meta-witherspoon/conf/machine/mihawk.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/conf/machine/mihawk.conf b/meta-ibm/meta-witherspoon/conf/machine/mihawk.conf index 7a6fd8778..a296e79b0 100644 --- a/meta-ibm/meta-witherspoon/conf/machine/mihawk.conf +++ b/meta-ibm/meta-witherspoon/conf/machine/mihawk.conf @@ -18,7 +18,7 @@ require conf/distro/include/phosphor-aspeednic-use-mac2.inc PHOSPHOR_MRW_LICENSE = "Apache-2.0" PHOSPHOR_MRW_LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327" PHOSPHOR_MRW_URI = "git://github.com/open-power/mihawk-xml" -PHOSPHOR_MRW_REV = "b9929ba9fd96d78da01bce8a2a157851dce9e5cb" +PHOSPHOR_MRW_REV = "f6ec5aa0f9803d44b147a7670dec7ec935f59582" -- cgit v1.2.3 From 975bf61c12955b5a486d03048f04cf63e839fb74 Mon Sep 17 00:00:00 2001 From: Brad Bishop Date: Mon, 16 Sep 2019 13:53:14 -0400 Subject: meta-ibm: Add rainier system Rainier is a POWER system with an ast2600. Build instructions: TEMPLATECONF=meta-ibm/meta-witherspoon/conf . oe-init-build env MACHINE=rainier DISTRO=openbmc-openpower bitbake obmc-phosphor-image (From meta-ibm rev: 4c39d65a0b5678042a96324197c37478d81d6d4a) Change-Id: I4bf5424d99ea643f7262ae17c962d2b7dd280076 Signed-off-by: Brad Bishop --- .../meta-witherspoon/conf/machine/rainier.conf | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 meta-ibm/meta-witherspoon/conf/machine/rainier.conf (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/conf/machine/rainier.conf b/meta-ibm/meta-witherspoon/conf/machine/rainier.conf new file mode 100644 index 000000000..81d808a7b --- /dev/null +++ b/meta-ibm/meta-witherspoon/conf/machine/rainier.conf @@ -0,0 +1,24 @@ +KERNEL_DEVICETREE = "aspeed-bmc-ibm-rainier.dtb" +UBOOT_MACHINE = "evb-ast2600_defconfig" + +MACHINEOVERRIDES =. "ibm-ac-server:witherspoon:" +require conf/machine/include/ast2600.inc +require conf/machine/include/obmc-bsp-common.inc +require conf/machine/include/openpower.inc + +SERIAL_CONSOLES = "115200;ttyS4" + +MRW_XML = "witherspoon.xml" +PHOSPHOR_MRW_LICENSE = "Apache-2.0" +PHOSPHOR_MRW_LIC_FILES_CHKSUM = "file://LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e" +PHOSPHOR_MRW_URI = "git://github.com/open-power/witherspoon-xml" +PHOSPHOR_MRW_REV = "c622cb5a5dd3ebc2a4eef558d1b70740f914e6f7" + +VIRTUAL-RUNTIME_phosphor-hwmon-config_df-mrw = "" + +PREFERRED_PROVIDER_virtual/phosphor-fan-control-fan-config_df-mrw = \ + "phosphor-fan-control-fan-config" +PREFERRED_PROVIDER_virtual/phosphor-fan-presence-config_df-mrw = \ + "phosphor-fan-presence-config" + +FLASH_SIZE = "131072" -- cgit v1.2.3 From a114b070f745900c31ddfde97f383fde3cab0110 Mon Sep 17 00:00:00 2001 From: Brad Bishop Date: Tue, 24 Sep 2019 21:59:07 -0400 Subject: ibm: tacoma: enable standard phosphor nor images Set the flash size so we get 128MiB images. Remove INITRAMFS and IMAGE_FSTYPES overrides so we get the standard phosphor images. (From meta-ibm rev: 1c12470b1ea14d6b043e0b214e800b974d10a36d) Change-Id: Ic941879b882aae809693a7901f3af95d23db5d05 Signed-off-by: Brad Bishop --- meta-ibm/meta-witherspoon/conf/machine/witherspoon-tacoma.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/conf/machine/witherspoon-tacoma.conf b/meta-ibm/meta-witherspoon/conf/machine/witherspoon-tacoma.conf index bbee6ad56..e8a38300b 100644 --- a/meta-ibm/meta-witherspoon/conf/machine/witherspoon-tacoma.conf +++ b/meta-ibm/meta-witherspoon/conf/machine/witherspoon-tacoma.conf @@ -3,12 +3,10 @@ UBOOT_MACHINE = "evb-ast2600_defconfig" MACHINEOVERRIDES =. "ibm-ac-server:witherspoon:" require conf/machine/include/ast2600.inc +require conf/machine/include/obmc-bsp-common.inc require conf/machine/include/openpower.inc require conf/machine/include/p9.inc -IMAGE_FSTYPES = "cpio.lzma" -INITRAMFS_IMAGE = "obmc-phosphor-image" - SERIAL_CONSOLES = "115200;ttyS4" MRW_XML = "witherspoon.xml" @@ -23,3 +21,5 @@ PREFERRED_PROVIDER_virtual/phosphor-fan-control-fan-config_df-mrw = \ "phosphor-fan-control-fan-config" PREFERRED_PROVIDER_virtual/phosphor-fan-presence-config_df-mrw = \ "phosphor-fan-presence-config" + +FLASH_SIZE = "131072" -- cgit v1.2.3 From a550ba133beaf8622671f988ee959853ae21b516 Mon Sep 17 00:00:00 2001 From: Brad Bishop Date: Fri, 27 Sep 2019 16:19:43 -0400 Subject: meta-ibm: Point WPFA at phosphor-power witherspoon-pfault-analysis is promoted to phosphor-power: https://lists.ozlabs.org/pipermail/openbmc/2019-August/017729.html This patch does the first migration step which is to point this recipe at the canonical repository. A subsequent step could be adding a phosphor-power recipe in OpenBMC's meta-phosphor. (From meta-ibm rev: de9a39f0a56410de046a260b51ca7ff9f162b12c) Change-Id: Ib6af976ac3b82d37f96dea4b45bba730ca98753d Signed-off-by: Brad Bishop --- .../recipes-phosphor/power/witherspoon-pfault-analysis.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/power/witherspoon-pfault-analysis.inc b/meta-ibm/meta-witherspoon/recipes-phosphor/power/witherspoon-pfault-analysis.inc index 790ab46be..0612d62af 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/power/witherspoon-pfault-analysis.inc +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/power/witherspoon-pfault-analysis.inc @@ -1,5 +1,5 @@ -HOMEPAGE = "https://github.com/openbmc/witherspoon-pfault-analysis" +HOMEPAGE = "https://github.com/openbmc/phosphor-power" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://${S}/LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e" -SRC_URI += "git://github.com/openbmc/witherspoon-pfault-analysis" +SRC_URI += "git://github.com/openbmc/phosphor-power" SRCREV = "b3853e2d3ac295a961e08927d177b40ddd683914" -- cgit v1.2.3 From 5e0b1385e81c7a6305105934b6431c6190ca394c Mon Sep 17 00:00:00 2001 From: Matt Spinler Date: Thu, 19 Sep 2019 14:03:29 -0500 Subject: meta-ibm: wspoon-tacoma: Add gpio_defs.json This system's GPIO layout is different than witherspoon's. (From meta-ibm rev: e401c9560f4f7d85952d1630095df9ad784de0b2) Signed-off-by: Matt Spinler Change-Id: I4ed9f1de4b25258e791a514643863494a99fde3d Signed-off-by: Brad Bishop --- .../witherspoon-tacoma/gpio_defs.json | 58 ++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/skeleton/obmc-libobmc-intf/witherspoon-tacoma/gpio_defs.json (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/skeleton/obmc-libobmc-intf/witherspoon-tacoma/gpio_defs.json b/meta-ibm/meta-witherspoon/recipes-phosphor/skeleton/obmc-libobmc-intf/witherspoon-tacoma/gpio_defs.json new file mode 100644 index 000000000..4ea152249 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/skeleton/obmc-libobmc-intf/witherspoon-tacoma/gpio_defs.json @@ -0,0 +1,58 @@ +{ + "gpio_configs": { + + "power_config": { + "power_good_in": "SYS_PWROK_BUFF", + "power_up_outs": [ + {"name": "SOFTWARE_PGOOD", "polarity": true}, + {"name": "BMC_POWER_UP", "polarity": true} + ], + "reset_outs": [ + {"name": "BMC_CP0_RESET_N", "polarity": false} + ] + } + }, + + "gpio_definitions": [ + { + "name": "BMC_POWER_UP", + "pin": "R1", + "direction": "out" + }, + { + "name": "SOFTWARE_PGOOD", + "pin": "H5", + "direction": "out" + }, + { + "name": "SYS_PWROK_BUFF", + "pin": "R2", + "direction": "in" + }, + { + "name": "CHECKSTOP", + "pin": "E3", + "direction": "falling" + }, + { + "name": "BMC_CP0_RESET_N", + "pin": "Q0", + "direction": "out" + }, + { + "name": "BMC_VS1_PERST_N", + "pin": "R0", + "direction": "out" + }, + { + "name": "BMC_CP0_PERST_ENABLE_R", + "pin": "Q1", + "direction": "out" + }, + { + "name": "POWER_BUTTON", + "pin": "E0", + "direction": "both" + } + ] +} -- cgit v1.2.3 From 63417d1f540c12c3e0b456409555ecbe50f39875 Mon Sep 17 00:00:00 2001 From: Andrew Geissler Date: Tue, 1 Oct 2019 13:08:55 -0500 Subject: rainier: remove ipkvm from image ipkvm is not needed for the rainier system (From meta-ibm rev: 556f78bc1a4c0d02496e79754fa6fa7147c98e02) Change-Id: I79f19dca7024025efcbe25ac3a55df9bf047bcbb Signed-off-by: Andrew Geissler Signed-off-by: Brad Bishop --- .../recipes-phosphor/packagegroups/packagegroup-obmc-apps.bbappend | 1 + 1 file changed, 1 insertion(+) (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/packagegroups/packagegroup-obmc-apps.bbappend b/meta-ibm/meta-witherspoon/recipes-phosphor/packagegroups/packagegroup-obmc-apps.bbappend index f32ba3eb5..f3be9005e 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/packagegroups/packagegroup-obmc-apps.bbappend +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/packagegroups/packagegroup-obmc-apps.bbappend @@ -3,5 +3,6 @@ RDEPENDS_${PN}-inventory_append_mihawk = " openpower-fru-vpd openpower-occ-contr RDEPENDS_${PN}-fan-control_append_ibm-ac-server = " witherspoon-fan-watchdog" RDEPENDS_${PN}-extras_append_ibm-ac-server = " witherspoon-pfault-analysis witherspoon-power-supply-sync phosphor-webui" RDEPENDS_${PN}-extras_append_mihawk = " phosphor-webui phosphor-image-signing" +RDEPENDS_${PN}-extras_remove_rainier = "obmc-ikvm" ${PN}-software-extras_append_ibm-ac-server = " phosphor-software-manager-sync" -- cgit v1.2.3 From f832eadb0d9a22c671a68fd44c4c554ace5b5ff3 Mon Sep 17 00:00:00 2001 From: Jim Wright Date: Tue, 17 Sep 2019 16:31:02 -0500 Subject: Add Rainier system power sequencer support Add Rainier system power sequencer configuration file. (From meta-ibm rev: 65ba7af3ef1f36b4b77c5776478b59d1a7bf2334) Signed-off-by: Jim Wright Change-Id: Ia55257b24e1e5095bbd9db24fbf67e5968c4f9cc Signed-off-by: Brad Bishop --- .../power/power-sequencer/rainier/ucd90160.yaml | 200 +++++++++++++++++++++ 1 file changed, 200 insertions(+) create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/power/power-sequencer/rainier/ucd90160.yaml (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/power/power-sequencer/rainier/ucd90160.yaml b/meta-ibm/meta-witherspoon/recipes-phosphor/power/power-sequencer/rainier/ucd90160.yaml new file mode 100644 index 000000000..ba98e801e --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/power/power-sequencer/rainier/ucd90160.yaml @@ -0,0 +1,200 @@ +- Device: + index: 0 + # Linux sysfs path for this power sequencer (0x22 8-bit address) + path: /sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a480.i2c-bus/i2c-8/8-0011 + RailNames: + - "12.0V" + - "5.0V_USB" + - "5.0V_DASD" + - "3.3VA" + - "3.3VB" + - "1.5V" + - "1.1V" + - "VDDA_DCM0" + - "VDDB_DCM0" + - "VDDA_DCM1" + - "VDDB_DCM1" + - "12.0VCS" + - "3.3VCS" + - "1.1V_Current" + - "5.0V_USB_Current" + - "5.0V_DASD_Current" + - "12.0VN" + - "12.0VP" + - "12.0VQ" + - "12.0VR" + - "ThermalDiode1" + - "ThermalDiode2" + - "ThermalDiode3" + - "ThermalDiode4" + GPIConfigs: + - name: PCIE_SLOT0 + gpi: 1 + pinID: 44 + poll: false + analysis: none + - name: PCIE_SLOT1 + gpi: 2 + pinID: 45 + poll: false + analysis: none + - name: PCIE_SLOT2 + gpi: 3 + pinID: 46 + poll: false + analysis: none + - name: PCIE_SLOT3 + gpi: 4 + pinID: 47 + poll: false + analysis: none + - name: PCIE_SLOT4 + gpi: 5 + pinID: 48 + poll: false + analysis: none + - name: PCIE_SLOT7 + gpi: 6 + pinID: 49 + poll: false + analysis: none + - name: PCIE_SLOT8 + gpi: 7 + pinID: 50 + poll: false + analysis: none + - name: PCIE_SLOT9 + gpi: 8 + pinID: 51 + poll: false + analysis: none + - name: PCIE_SLOT10 + gpi: 9 + pinID: 52 + poll: false + analysis: none + - name: PCIE_SLOT11 + gpi: 10 + pinID: 53 + poll: false + analysis: none + - name: SOFTWARE_PGOOD + gpi: 11 + pinID: 55 + poll: false + analysis: none + - name: PGOOD_12A + gpi: 12 + pinID: 56 + poll: false + analysis: none + - name: PGOOD_12B + gpi: 13 + pinID: 57 + poll: false + analysis: none + - name: PGOOD_12C + gpi: 14 + pinID: 58 + poll: false + analysis: none + - name: PGOOD_12D + gpi: 15 + pinID: 59 + poll: false + analysis: none + - name: PGOOD_12L + gpi: 16 + pinID: 60 + poll: false + analysis: none + - name: PGOOD_12M + gpi: 17 + pinID: 61 + poll: false + analysis: none + - name: PGOOD_12N + gpi: 18 + pinID: 62 + poll: false + analysis: none + - name: PGOOD_12P + gpi: 19 + pinID: 63 + poll: false + analysis: none + - name: PGOOD_12PCIE + gpi: 20 + pinID: 64 + poll: false + analysis: none + - name: PGOOD_12Q + gpi: 21 + pinID: 65 + poll: false + analysis: none + - name: PGOOD_12R + gpi: 22 + pinID: 66 + poll: false + analysis: none + - name: PGOOD_VDN_DCM0 + gpi: 23 + pinID: 72 + poll: false + analysis: none + - name: PGOOD_VDN_DCM1 + gpi: 24 + pinID: 73 + poll: false + analysis: none + - name: PGOOD_VCS_DCM0 + gpi: 25 + pinID: 74 + poll: false + analysis: none + - name: PGOOD_VCS_DCM1 + gpi: 26 + pinID: 75 + poll: false + analysis: none + - name: PGOOD_VIO_DCM0 + gpi: 27 + pinID: 76 + poll: false + analysis: none + - name: PGOOD_VIO_DCM1 + gpi: 28 + pinID: 77 + poll: false + analysis: none + - name: PGOOD_VPCIE_DCM0 + gpi: 29 + pinID: 78 + poll: false + analysis: none + - name: PGOOD_VPCIE_DCM1 + gpi: 30 + pinID: 79 + poll: false + analysis: none + - name: PGOOD_PSU1 + gpi: 31 + pinID: 80 + poll: false + analysis: none + - name: PGOOD_PSU2 + gpi: 32 + pinID: 81 + poll: false + analysis: none + - name: PGOOD_PSU3 + gpi: 33 + pinID: 82 + poll: false + analysis: none + - name: PGOOD_PSU4 + gpi: 34 + pinID: 83 + poll: false + analysis: none -- cgit v1.2.3 From 6d345e20989fd70b7c0a0c261bbd791dda43fb5b Mon Sep 17 00:00:00 2001 From: Jim Wright Date: Tue, 17 Sep 2019 16:02:18 -0500 Subject: Add Rainier system power-on GPIO support Add Rainer power-on configuration support and remove unused GPIOs. (From meta-ibm rev: 114bd7308d03fe7949517cd939b6dd9f575d59cb) Signed-off-by: Jim Wright Change-Id: I29df80c5d446ebcba929cef334f06969c258f5d9 Signed-off-by: Brad Bishop --- .../obmc-libobmc-intf/rainier/gpio_defs.json | 38 ++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/skeleton/obmc-libobmc-intf/rainier/gpio_defs.json (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/skeleton/obmc-libobmc-intf/rainier/gpio_defs.json b/meta-ibm/meta-witherspoon/recipes-phosphor/skeleton/obmc-libobmc-intf/rainier/gpio_defs.json new file mode 100644 index 000000000..828c35b29 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/skeleton/obmc-libobmc-intf/rainier/gpio_defs.json @@ -0,0 +1,38 @@ +{ + "gpio_configs": { + + "power_config": { + "power_good_in": "SYS_PWROK_BUFF", + "power_up_outs": [ + {"name": "SOFTWARE_PGOOD", "polarity": true}, + {"name": "BMC_POWER_UP", "polarity": true} + ], + "reset_outs": [ + {"name": "BMC_DCM_ALL_RESET_N", "polarity": false} + ] + } + }, + + "gpio_definitions": [ + { + "name": "BMC_POWER_UP", + "pin": "R1", + "direction": "out" + }, + { + "name": "SOFTWARE_PGOOD", + "pin": "F1", + "direction": "out" + }, + { + "name": "SYS_PWROK_BUFF", + "pin": "R2", + "direction": "in" + }, + { + "name": "BMC_DCM_ALL_RESET_N", + "pin": "Q0", + "direction": "out" + } + ] +} -- cgit v1.2.3 From b1b282084f52fba51167aed0da39388242cdd3d5 Mon Sep 17 00:00:00 2001 From: Andrew Geissler Date: Tue, 1 Oct 2019 13:22:17 -0500 Subject: tacoma: remove ipkvm from image ipkvm is not needed for the witherspoon-tacoma system. May bring this back in some day for testing purposes but there are no near term plans to use or support this. (From meta-ibm rev: 3e11092404f8512241209c4ea26988171cf35263) Change-Id: Ibb0bc351504070661179491d07f3af144cc97602 Signed-off-by: Andrew Geissler Signed-off-by: Brad Bishop --- .../recipes-phosphor/packagegroups/packagegroup-obmc-apps.bbappend | 1 + 1 file changed, 1 insertion(+) (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/packagegroups/packagegroup-obmc-apps.bbappend b/meta-ibm/meta-witherspoon/recipes-phosphor/packagegroups/packagegroup-obmc-apps.bbappend index f3be9005e..8b917dd83 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/packagegroups/packagegroup-obmc-apps.bbappend +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/packagegroups/packagegroup-obmc-apps.bbappend @@ -4,5 +4,6 @@ RDEPENDS_${PN}-fan-control_append_ibm-ac-server = " witherspoon-fan-watchdog" RDEPENDS_${PN}-extras_append_ibm-ac-server = " witherspoon-pfault-analysis witherspoon-power-supply-sync phosphor-webui" RDEPENDS_${PN}-extras_append_mihawk = " phosphor-webui phosphor-image-signing" RDEPENDS_${PN}-extras_remove_rainier = "obmc-ikvm" +RDEPENDS_${PN}-extras_remove_witherspoon-tacoma = "obmc-ikvm" ${PN}-software-extras_append_ibm-ac-server = " phosphor-software-manager-sync" -- cgit v1.2.3 From e539e9f2a54342c53a62d0367ef187f2bef282b8 Mon Sep 17 00:00:00 2001 From: Matthew Barth Date: Fri, 20 Sep 2019 09:49:29 -0500 Subject: wspoon: Activate fan control events at poweron Utilize the pgood property as a precondition to loading fan control events based on property states other than the OCC active events. Since the OCCs are not active when powered off (pgood = 0) those events having OCCs active as a precondition are not necessary to be added. This is the first step to enabling fan control to run at BMC standby. When the default phosphor-fan-control@.service starts after power on, the pgood property value is already set to 1. Therefore this produces no change in fan control activity. Tested: No change in fan speed control (From meta-ibm rev: dadf39cdbb093e0c2566189f3e876dd3c01e13d0) Change-Id: Ieb010804d59ed318463fca1fcbdce5b5123b81df Signed-off-by: Matthew Barth Signed-off-by: Brad Bishop --- .../witherspoon/events.yaml | 415 +++++++++++---------- 1 file changed, 219 insertions(+), 196 deletions(-) (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-control-events-config/witherspoon/events.yaml b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-control-events-config/witherspoon/events.yaml index 74a34e081..5534cb6cd 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-control-events-config/witherspoon/events.yaml +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-control-events-config/witherspoon/events.yaml @@ -1,4 +1,9 @@ groups: + - name: poweron_pgood + description: System poweron pgood state + type: /org/openbmc/control + members: + - /power0 - name: zone0_control_mode description: Thermal control mode for zone 0 service: xyz.openbmc_project.Control.Thermal @@ -353,202 +358,220 @@ events: speed: value: 10500 type: uint64_t - - name: missing_or_fails_before_high_speed_air - groups: - - name: air_cooled_zone0_fans - zone_conditions: - - name: air_cooled_chassis - zones: - - 0 - interface: xyz.openbmc_project.Inventory.Item - property: - name: Present - type: bool - - name: air_cooled_zone0_fans - zone_conditions: - - name: air_cooled_chassis - zones: - - 0 - interface: xyz.openbmc_project.State.Decorator.OperationalStatus - property: - name: Functional - type: bool - triggers: - - name: init - method: getProperties - handler: setProperty - - name: signal - signal: propertiesChanged - handler: setProperty - actions: - - name: count_state_before_speed - count: 1 - property: - value: false - type: bool - speed: - value: 10500 - type: uint64_t - - name: missing_or_fails_before_high_speed_water_and_air - groups: - - name: water_and_air_cooled_zone0_fans - zone_conditions: - - name: water_and_air_cooled_chassis - zones: - - 0 - interface: xyz.openbmc_project.Inventory.Item - property: - name: Present - type: bool - - name: water_and_air_cooled_zone0_fans - zone_conditions: - - name: water_and_air_cooled_chassis - zones: - - 0 - interface: xyz.openbmc_project.State.Decorator.OperationalStatus - property: - name: Functional - type: bool - triggers: - - name: init - method: getProperties - handler: setProperty - - name: signal - signal: propertiesChanged - handler: setProperty - actions: - - name: count_state_before_speed - count: 1 - property: - value: false - type: bool - speed: - value: 10500 - type: uint64_t - - name: set_air_cooled_speed_boundaries_based_on_ambient - groups: - - name: zone0_control_mode - zone_conditions: - - name: air_cooled_chassis - zones: - - 0 - interface: xyz.openbmc_project.Control.ThermalMode - property: - name: Current - type: std::string - triggers: - - name: init - method: getProperties - handler: setProperty - - name: signal - signal: propertiesChanged - handler: setProperty - actions: - - name: use_alternate_events_on_state - property: - value: CUSTOM - type: std::string - defevents: - - name: default_floor_boundary - groups: - - name: zone0_ambient - zone_conditions: - - name: air_cooled_chassis - zones: - - 0 - interface: xyz.openbmc_project.Sensor.Value - property: - name: Value - type: int64_t - triggers: - - name: init - method: getProperties - handler: setProperty - - name: signal - signal: propertiesChanged - handler: setProperty - actions: - - name: set_floor_from_average_sensor_value - map: - value: - - 27000: 3500 - - 32000: 4600 - - 37000: 5200 - - 40000: 5800 - type: std::map - - name: set_ceiling_from_average_sensor_value - map: - value: - - 25000: 7200 - - 27000: 10500 - type: std::map - altevents: - - name: alternate_floor_boundary - groups: - - name: zone0_ambient - zone_conditions: - - name: air_cooled_chassis - zones: - - 0 - interface: xyz.openbmc_project.Sensor.Value - property: - name: Value - type: int64_t - triggers: - - name: init - method: getProperties - handler: setProperty - - name: signal - signal: propertiesChanged - handler: setProperty - actions: - - name: set_floor_from_average_sensor_value - map: - value: - - 27000: 4600 - - 32000: 5000 - - 37000: 5400 - - 40000: 5800 - type: std::map - - name: set_ceiling_from_average_sensor_value - map: - value: - - 25000: 7200 - - 27000: 10500 - type: std::map - - name: set_water_cooled_speed_boundaries_based_on_ambient - groups: - - name: zone0_ambient - zone_conditions: - - name: water_and_air_cooled_chassis - zones: - - 0 - interface: xyz.openbmc_project.Sensor.Value - property: - name: Value - type: int64_t - triggers: - - name: init - method: getProperties - handler: setProperty - - name: signal - signal: propertiesChanged - handler: setProperty - actions: - - name: set_floor_from_average_sensor_value - map: - value: - - 27000: 3000 - - 32000: 4300 - - 37000: 5000 - - 40000: 5800 - type: std::map - - name: set_ceiling_from_average_sensor_value - map: - value: - - 25000: 7200 - - 27000: 10500 - type: std::map + - name: full_speed_at_power_on + precondition: + name: property_states_match + groups: + - name: poweron_pgood + interface: org.openbmc.control.Power + property: + name: pgood + type: int32_t + value: 1 + triggers: + - name: init + method: getProperties + handler: setProperty + - name: signal + signal: propertiesChanged + handler: setProperty + events: + - name: missing_or_fails_before_high_speed_air + groups: + - name: air_cooled_zone0_fans + zone_conditions: + - name: air_cooled_chassis + zones: + - 0 + interface: xyz.openbmc_project.Inventory.Item + property: + name: Present + type: bool + - name: air_cooled_zone0_fans + zone_conditions: + - name: air_cooled_chassis + zones: + - 0 + interface: xyz.openbmc_project.State.Decorator.OperationalStatus + property: + name: Functional + type: bool + triggers: + - name: init + method: getProperties + handler: setProperty + - name: signal + signal: propertiesChanged + handler: setProperty + actions: + - name: count_state_before_speed + count: 1 + property: + value: false + type: bool + speed: + value: 10500 + type: uint64_t + - name: missing_or_fails_before_high_speed_water_and_air + groups: + - name: water_and_air_cooled_zone0_fans + zone_conditions: + - name: water_and_air_cooled_chassis + zones: + - 0 + interface: xyz.openbmc_project.Inventory.Item + property: + name: Present + type: bool + - name: water_and_air_cooled_zone0_fans + zone_conditions: + - name: water_and_air_cooled_chassis + zones: + - 0 + interface: xyz.openbmc_project.State.Decorator.OperationalStatus + property: + name: Functional + type: bool + triggers: + - name: init + method: getProperties + handler: setProperty + - name: signal + signal: propertiesChanged + handler: setProperty + actions: + - name: count_state_before_speed + count: 1 + property: + value: false + type: bool + speed: + value: 10500 + type: uint64_t + - name: set_air_cooled_speed_boundaries_based_on_ambient + groups: + - name: zone0_control_mode + zone_conditions: + - name: air_cooled_chassis + zones: + - 0 + interface: xyz.openbmc_project.Control.ThermalMode + property: + name: Current + type: std::string + triggers: + - name: init + method: getProperties + handler: setProperty + - name: signal + signal: propertiesChanged + handler: setProperty + actions: + - name: use_alternate_events_on_state + property: + value: CUSTOM + type: std::string + defevents: + - name: default_floor_boundary + groups: + - name: zone0_ambient + zone_conditions: + - name: air_cooled_chassis + zones: + - 0 + interface: xyz.openbmc_project.Sensor.Value + property: + name: Value + type: int64_t + triggers: + - name: init + method: getProperties + handler: setProperty + - name: signal + signal: propertiesChanged + handler: setProperty + actions: + - name: set_floor_from_average_sensor_value + map: + value: + - 27000: 3500 + - 32000: 4600 + - 37000: 5200 + - 40000: 5800 + type: std::map + - name: set_ceiling_from_average_sensor_value + map: + value: + - 25000: 7200 + - 27000: 10500 + type: std::map + altevents: + - name: alternate_floor_boundary + groups: + - name: zone0_ambient + zone_conditions: + - name: air_cooled_chassis + zones: + - 0 + interface: xyz.openbmc_project.Sensor.Value + property: + name: Value + type: int64_t + triggers: + - name: init + method: getProperties + handler: setProperty + - name: signal + signal: propertiesChanged + handler: setProperty + actions: + - name: set_floor_from_average_sensor_value + map: + value: + - 27000: 4600 + - 32000: 5000 + - 37000: 5400 + - 40000: 5800 + type: std::map + - name: set_ceiling_from_average_sensor_value + map: + value: + - 25000: 7200 + - 27000: 10500 + type: std::map + - name: set_water_cooled_speed_boundaries_based_on_ambient + groups: + - name: zone0_ambient + zone_conditions: + - name: water_and_air_cooled_chassis + zones: + - 0 + interface: xyz.openbmc_project.Sensor.Value + property: + name: Value + type: int64_t + triggers: + - name: init + method: getProperties + handler: setProperty + - name: signal + signal: propertiesChanged + handler: setProperty + actions: + - name: set_floor_from_average_sensor_value + map: + value: + - 27000: 3000 + - 32000: 4300 + - 37000: 5000 + - 40000: 5800 + type: std::map + - name: set_ceiling_from_average_sensor_value + map: + value: + - 25000: 7200 + - 27000: 10500 + type: std::map - name: occ_active_speed_changes precondition: name: property_states_match -- cgit v1.2.3 From 683da7c361fbfb88027965324d4a563aacb428bd Mon Sep 17 00:00:00 2001 From: Joel Stanley Date: Thu, 3 Oct 2019 09:56:55 +0930 Subject: witherspoon: Remove uart renderer from AST2600 systems It is not yet supported in the kernel. (From meta-ibm rev: 37b0344925323c3de0bd86fd00ea075e383153da) Signed-off-by: Joel Stanley Change-Id: Ie09afb9a4ee1d96d7b2a70fe79ef9a85d8971ea2 Signed-off-by: Brad Bishop --- .../recipes-phosphor/packagegroups/packagegroup-obmc-apps.bbappend | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/packagegroups/packagegroup-obmc-apps.bbappend b/meta-ibm/meta-witherspoon/recipes-phosphor/packagegroups/packagegroup-obmc-apps.bbappend index 8b917dd83..c75c7d0f9 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/packagegroups/packagegroup-obmc-apps.bbappend +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/packagegroups/packagegroup-obmc-apps.bbappend @@ -3,7 +3,7 @@ RDEPENDS_${PN}-inventory_append_mihawk = " openpower-fru-vpd openpower-occ-contr RDEPENDS_${PN}-fan-control_append_ibm-ac-server = " witherspoon-fan-watchdog" RDEPENDS_${PN}-extras_append_ibm-ac-server = " witherspoon-pfault-analysis witherspoon-power-supply-sync phosphor-webui" RDEPENDS_${PN}-extras_append_mihawk = " phosphor-webui phosphor-image-signing" -RDEPENDS_${PN}-extras_remove_rainier = "obmc-ikvm" -RDEPENDS_${PN}-extras_remove_witherspoon-tacoma = "obmc-ikvm" +RDEPENDS_${PN}-extras_remove_rainier = "obmc-ikvm liberation-fonts uart-render-controller" +RDEPENDS_${PN}-extras_remove_witherspoon-tacoma = "obmc-ikvm liberation-fonts uart-render-controller" ${PN}-software-extras_append_ibm-ac-server = " phosphor-software-manager-sync" -- cgit v1.2.3 From d22e7dfbf30cf2706df6a2d564790bd72fe21f0f Mon Sep 17 00:00:00 2001 From: Eddie James Date: Tue, 1 Oct 2019 09:46:16 -0500 Subject: meta-ibm: wspoon-128: Modify dts patch to include upstream wspoon For the witherspoon-128 machine, add a kernel patch for a witherspoon-128 devicetree that includes the upstream devicetree but sets the proper flash node attributes. This will keep the devicetree better in sync with the upstream one. (From meta-ibm rev: f7f93979873dc762aa9676a4a8714806d12f638f) Signed-off-by: Eddie James Change-Id: I6ff03cbfd80a9df1b139625fb11b16b7684b4aa5 Signed-off-by: Brad Bishop --- ...RM-dts-Aspeed-Add-witherspoon-128-machine.patch | 94 +++ ...eed-Witherspoon-128-Update-BMC-partitioni.patch | 744 --------------------- .../recipes-kernel/linux/linux-aspeed_%.bbappend | 2 +- 3 files changed, 95 insertions(+), 745 deletions(-) create mode 100644 meta-ibm/meta-witherspoon/recipes-kernel/linux/linux-aspeed/0001-ARM-dts-Aspeed-Add-witherspoon-128-machine.patch delete mode 100644 meta-ibm/meta-witherspoon/recipes-kernel/linux/linux-aspeed/0001-ARM-dts-Aspeed-Witherspoon-128-Update-BMC-partitioni.patch (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/recipes-kernel/linux/linux-aspeed/0001-ARM-dts-Aspeed-Add-witherspoon-128-machine.patch b/meta-ibm/meta-witherspoon/recipes-kernel/linux/linux-aspeed/0001-ARM-dts-Aspeed-Add-witherspoon-128-machine.patch new file mode 100644 index 000000000..86362db15 --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-kernel/linux/linux-aspeed/0001-ARM-dts-Aspeed-Add-witherspoon-128-machine.patch @@ -0,0 +1,94 @@ +From 4c69603d48eebce36aedd28fc572bb43c1146f9c Mon Sep 17 00:00:00 2001 +From: Eddie James +Date: Wed, 2 Oct 2019 10:13:36 -0500 +Subject: [PATCH] ARM: dts: Aspeed: Add witherspoon-128 machine + +Create a witherspoon machine with 128MB flash chips. + +Signed-off-by: Eddie James +--- + arch/arm/boot/dts/Makefile | 1 + + .../dts/aspeed-bmc-opp-witherspoon-128.dts | 59 +++++++++++++++++++ + 2 files changed, 60 insertions(+) + create mode 100644 arch/arm/boot/dts/aspeed-bmc-opp-witherspoon-128.dts + +diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile +index 3ad9706337a2..7f60d157ef5d 100644 +--- a/arch/arm/boot/dts/Makefile ++++ b/arch/arm/boot/dts/Makefile +@@ -1292,6 +1292,7 @@ dtb-$(CONFIG_ARCH_ASPEED) += \ + aspeed-bmc-opp-tacoma.dtb \ + aspeed-bmc-opp-vesnin.dtb \ + aspeed-bmc-opp-witherspoon.dtb \ ++ aspeed-bmc-opp-witherspoon-128.dtb \ + aspeed-bmc-opp-zaius.dtb \ + aspeed-bmc-portwell-neptune.dtb \ + aspeed-bmc-quanta-q71l.dtb +diff --git a/arch/arm/boot/dts/aspeed-bmc-opp-witherspoon-128.dts b/arch/arm/boot/dts/aspeed-bmc-opp-witherspoon-128.dts +new file mode 100644 +index 000000000000..1ba673a49334 +--- /dev/null ++++ b/arch/arm/boot/dts/aspeed-bmc-opp-witherspoon-128.dts +@@ -0,0 +1,59 @@ ++// SPDX-License-Identifier: GPL-2.0-or-later ++// Copyright 2019 IBM Corp. ++/dts-v1/; ++ ++#include "aspeed-bmc-opp-witherspoon.dts" ++ ++&fmc { ++ status = "okay"; ++ ++ flash@0 { ++ status = "okay"; ++ label = "bmc"; ++ m25p,fast-read; ++ spi-max-frequency = <100000000>; ++ ++ partitions { ++ #address-cells = < 1 >; ++ #size-cells = < 1 >; ++ compatible = "fixed-partitions"; ++ u-boot@0 { ++ reg = < 0 0x60000 >; ++ label = "u-boot"; ++ }; ++ u-boot-env@60000 { ++ reg = < 0x60000 0x20000 >; ++ label = "u-boot-env"; ++ }; ++ obmc-ubi@80000 { ++ reg = < 0x80000 0x7F80000>; ++ label = "obmc-ubi"; ++ }; ++ }; ++ }; ++ ++ flash@1 { ++ status = "okay"; ++ label = "alt-bmc"; ++ m25p,fast-read; ++ spi-max-frequency = <100000000>; ++ ++ partitions { ++ #address-cells = < 1 >; ++ #size-cells = < 1 >; ++ compatible = "fixed-partitions"; ++ u-boot@0 { ++ reg = < 0 0x60000 >; ++ label = "alt-u-boot"; ++ }; ++ u-boot-env@60000 { ++ reg = < 0x60000 0x20000 >; ++ label = "alt-u-boot-env"; ++ }; ++ obmc-ubi@80000 { ++ reg = < 0x80000 0x7F80000>; ++ label = "alt-obmc-ubi"; ++ }; ++ }; ++ }; ++}; +-- +2.23.0 + diff --git a/meta-ibm/meta-witherspoon/recipes-kernel/linux/linux-aspeed/0001-ARM-dts-Aspeed-Witherspoon-128-Update-BMC-partitioni.patch b/meta-ibm/meta-witherspoon/recipes-kernel/linux/linux-aspeed/0001-ARM-dts-Aspeed-Witherspoon-128-Update-BMC-partitioni.patch deleted file mode 100644 index b0e61ccd4..000000000 --- a/meta-ibm/meta-witherspoon/recipes-kernel/linux/linux-aspeed/0001-ARM-dts-Aspeed-Witherspoon-128-Update-BMC-partitioni.patch +++ /dev/null @@ -1,744 +0,0 @@ -From 886807887052b408717137acfeb6a8633748a210 Mon Sep 17 00:00:00 2001 -From: Adriana Kobylak -Date: Thu, 7 Feb 2019 11:23:00 -0600 -Subject: [PATCH] ARM: dts: Aspeed: Witherspoon-128: Update BMC partitioning - -Create a Witherspoon-128 dts based off Witherspoon but with 128MB -BMC flash chips. - -Signed-off-by: Adriana Kobylak ---- - arch/arm/boot/dts/Makefile | 1 + - .../boot/dts/aspeed-bmc-opp-witherspoon-128.dts | 708 +++++++++++++++++++++ - 2 files changed, 709 insertions(+) - create mode 100644 arch/arm/boot/dts/aspeed-bmc-opp-witherspoon-128.dts - -diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile -index eb6de52..833c354 100644 ---- a/arch/arm/boot/dts/Makefile -+++ b/arch/arm/boot/dts/Makefile -@@ -1280,6 +1280,7 @@ dtb-$(CONFIG_ARCH_ASPEED) += \ - aspeed-bmc-opp-swift.dtb \ - aspeed-bmc-opp-vesnin.dtb \ - aspeed-bmc-opp-witherspoon.dtb \ -+ aspeed-bmc-opp-witherspoon-128.dtb \ - aspeed-bmc-opp-zaius.dtb \ - aspeed-bmc-portwell-neptune.dtb \ - aspeed-bmc-quanta-q71l.dtb -diff --git a/arch/arm/boot/dts/aspeed-bmc-opp-witherspoon-128.dts b/arch/arm/boot/dts/aspeed-bmc-opp-witherspoon-128.dts -new file mode 100644 -index 0000000..36b4749 ---- /dev/null -+++ b/arch/arm/boot/dts/aspeed-bmc-opp-witherspoon-128.dts -@@ -0,0 +1,708 @@ -+// SPDX-License-Identifier: GPL-2.0+ -+/dts-v1/; -+#include "aspeed-g5.dtsi" -+#include -+#include -+ -+/ { -+ model = "Witherspoon BMC"; -+ compatible = "ibm,witherspoon-bmc", "aspeed,ast2500"; -+ -+ chosen { -+ stdout-path = &uart5; -+ bootargs = "console=ttyS4,115200 earlyprintk"; -+ }; -+ -+ memory@80000000 { -+ reg = <0x80000000 0x20000000>; -+ }; -+ -+ reserved-memory { -+ #address-cells = <1>; -+ #size-cells = <1>; -+ ranges; -+ -+ flash_memory: region@98000000 { -+ no-map; -+ reg = <0x98000000 0x04000000>; /* 64M */ -+ }; -+ -+ gfx_memory: framebuffer { -+ size = <0x01000000>; -+ alignment = <0x01000000>; -+ compatible = "shared-dma-pool"; -+ reusable; -+ }; -+ -+ video_engine_memory: jpegbuffer { -+ size = <0x02000000>; /* 32MM */ -+ alignment = <0x01000000>; -+ compatible = "shared-dma-pool"; -+ reusable; -+ }; -+ }; -+ -+ gpio-keys { -+ compatible = "gpio-keys"; -+ -+ air-water { -+ label = "air-water"; -+ gpios = <&gpio ASPEED_GPIO(B, 5) GPIO_ACTIVE_LOW>; -+ linux,code = ; -+ }; -+ -+ checkstop { -+ label = "checkstop"; -+ gpios = <&gpio ASPEED_GPIO(J, 2) GPIO_ACTIVE_LOW>; -+ linux,code = ; -+ }; -+ -+ ps0-presence { -+ label = "ps0-presence"; -+ gpios = <&gpio ASPEED_GPIO(P, 7) GPIO_ACTIVE_LOW>; -+ linux,code = ; -+ }; -+ -+ ps1-presence { -+ label = "ps1-presence"; -+ gpios = <&gpio ASPEED_GPIO(N, 0) GPIO_ACTIVE_LOW>; -+ linux,code = ; -+ }; -+ }; -+ -+ iio-hwmon-battery { -+ compatible = "iio-hwmon"; -+ io-channels = <&adc 12>; -+ }; -+ -+ gpio-keys-polled { -+ compatible = "gpio-keys-polled"; -+ #address-cells = <1>; -+ #size-cells = <0>; -+ poll-interval = <1000>; -+ -+ fan0-presence { -+ label = "fan0-presence"; -+ gpios = <&pca0 4 GPIO_ACTIVE_LOW>; -+ linux,code = <4>; -+ }; -+ -+ fan1-presence { -+ label = "fan1-presence"; -+ gpios = <&pca0 5 GPIO_ACTIVE_LOW>; -+ linux,code = <5>; -+ }; -+ -+ fan2-presence { -+ label = "fan2-presence"; -+ gpios = <&pca0 6 GPIO_ACTIVE_LOW>; -+ linux,code = <6>; -+ }; -+ -+ fan3-presence { -+ label = "fan3-presence"; -+ gpios = <&pca0 7 GPIO_ACTIVE_LOW>; -+ linux,code = <7>; -+ }; -+ }; -+ -+ leds { -+ compatible = "gpio-leds"; -+ -+ fan0 { -+ retain-state-shutdown; -+ default-state = "keep"; -+ gpios = <&pca0 0 GPIO_ACTIVE_LOW>; -+ }; -+ -+ fan1 { -+ retain-state-shutdown; -+ default-state = "keep"; -+ gpios = <&pca0 1 GPIO_ACTIVE_LOW>; -+ }; -+ -+ fan2 { -+ retain-state-shutdown; -+ default-state = "keep"; -+ gpios = <&pca0 2 GPIO_ACTIVE_LOW>; -+ }; -+ -+ fan3 { -+ retain-state-shutdown; -+ default-state = "keep"; -+ gpios = <&pca0 3 GPIO_ACTIVE_LOW>; -+ }; -+ -+ front-fault { -+ retain-state-shutdown; -+ default-state = "keep"; -+ gpios = <&pca0 13 GPIO_ACTIVE_LOW>; -+ }; -+ -+ front-power { -+ retain-state-shutdown; -+ default-state = "keep"; -+ gpios = <&pca0 14 GPIO_ACTIVE_LOW>; -+ }; -+ -+ front-id { -+ retain-state-shutdown; -+ default-state = "keep"; -+ gpios = <&pca0 15 GPIO_ACTIVE_LOW>; -+ }; -+ -+ rear-fault { -+ gpios = <&gpio ASPEED_GPIO(N, 2) GPIO_ACTIVE_LOW>; -+ }; -+ -+ rear-id { -+ gpios = <&gpio ASPEED_GPIO(N, 4) GPIO_ACTIVE_LOW>; -+ }; -+ -+ rear-power { -+ gpios = <&gpio ASPEED_GPIO(N, 3) GPIO_ACTIVE_LOW>; -+ }; -+ -+ power-button { -+ gpios = <&gpio ASPEED_GPIO(R, 5) GPIO_ACTIVE_LOW>; -+ }; -+ }; -+ -+ fsi: gpio-fsi { -+ compatible = "fsi-master-gpio", "fsi-master"; -+ #address-cells = <2>; -+ #size-cells = <0>; -+ no-gpio-delays; -+ -+ clock-gpios = <&gpio ASPEED_GPIO(AA, 0) GPIO_ACTIVE_HIGH>; -+ data-gpios = <&gpio ASPEED_GPIO(E, 0) GPIO_ACTIVE_HIGH>; -+ mux-gpios = <&gpio ASPEED_GPIO(A, 6) GPIO_ACTIVE_HIGH>; -+ enable-gpios = <&gpio ASPEED_GPIO(D, 0) GPIO_ACTIVE_HIGH>; -+ trans-gpios = <&gpio ASPEED_GPIO(R, 2) GPIO_ACTIVE_HIGH>; -+ }; -+ -+ iio-hwmon-dps310 { -+ compatible = "iio-hwmon"; -+ io-channels = <&dps 0>; -+ }; -+ -+ iio-hwmon-bmp280 { -+ compatible = "iio-hwmon"; -+ io-channels = <&bmp 1>; -+ }; -+ -+}; -+ -+&fmc { -+ status = "okay"; -+ -+ flash@0 { -+ status = "okay"; -+ label = "bmc"; -+ m25p,fast-read; -+ spi-max-frequency = <100000000>; -+ partitions { -+ #address-cells = < 1 >; -+ #size-cells = < 1 >; -+ compatible = "fixed-partitions"; -+ u-boot@0 { -+ reg = < 0 0x60000 >; -+ label = "u-boot"; -+ }; -+ u-boot-env@60000 { -+ reg = < 0x60000 0x20000 >; -+ label = "u-boot-env"; -+ }; -+ obmc-ubi@80000 { -+ reg = < 0x80000 0x7F80000>; -+ label = "obmc-ubi"; -+ }; -+ }; -+ }; -+ -+ flash@1 { -+ status = "okay"; -+ label = "alt-bmc"; -+ m25p,fast-read; -+ spi-max-frequency = <100000000>; -+ partitions { -+ #address-cells = < 1 >; -+ #size-cells = < 1 >; -+ compatible = "fixed-partitions"; -+ u-boot@0 { -+ reg = < 0 0x60000 >; -+ label = "alt-u-boot"; -+ }; -+ u-boot-env@60000 { -+ reg = < 0x60000 0x20000 >; -+ label = "alt-u-boot-env"; -+ }; -+ obmc-ubi@80000 { -+ reg = < 0x80000 0x7F80000>; -+ label = "alt-obmc-ubi"; -+ }; -+ }; -+ }; -+}; -+ -+&spi1 { -+ status = "okay"; -+ pinctrl-names = "default"; -+ pinctrl-0 = <&pinctrl_spi1_default>; -+ -+ flash@0 { -+ status = "okay"; -+ label = "pnor"; -+ m25p,fast-read; -+ spi-max-frequency = <100000000>; -+ }; -+}; -+ -+&uart1 { -+ /* Rear RS-232 connector */ -+ status = "okay"; -+ pinctrl-names = "default"; -+ pinctrl-0 = <&pinctrl_txd1_default -+ &pinctrl_rxd1_default -+ &pinctrl_nrts1_default -+ &pinctrl_ndtr1_default -+ &pinctrl_ndsr1_default -+ &pinctrl_ncts1_default -+ &pinctrl_ndcd1_default -+ &pinctrl_nri1_default>; -+}; -+ -+&uart2 { -+ /* APSS */ -+ status = "okay"; -+ pinctrl-names = "default"; -+ pinctrl-0 = <&pinctrl_txd2_default &pinctrl_rxd2_default>; -+}; -+ -+&uart5 { -+ status = "okay"; -+}; -+ -+&lpc_ctrl { -+ status = "okay"; -+ memory-region = <&flash_memory>; -+ flash = <&spi1>; -+}; -+ -+&mac0 { -+ status = "okay"; -+ pinctrl-names = "default"; -+ pinctrl-0 = <&pinctrl_rmii1_default>; -+ use-ncsi; -+}; -+ -+&i2c2 { -+ status = "okay"; -+ -+ /* MUX -> -+ * Samtec 1 -+ * Samtec 2 -+ */ -+}; -+ -+&i2c3 { -+ status = "okay"; -+ -+ bmp: bmp280@77 { -+ compatible = "bosch,bmp280"; -+ reg = <0x77>; -+ #io-channel-cells = <1>; -+ }; -+ -+ max31785@52 { -+ compatible = "maxim,max31785a"; -+ reg = <0x52>; -+ #address-cells = <1>; -+ #size-cells = <0>; -+ -+ fan@0 { -+ compatible = "pmbus-fan"; -+ reg = <0>; -+ tach-pulses = <2>; -+ maxim,fan-rotor-input = "tach"; -+ maxim,fan-pwm-freq = <25000>; -+ maxim,fan-dual-tach; -+ maxim,fan-no-watchdog; -+ maxim,fan-no-fault-ramp; -+ maxim,fan-ramp = <2>; -+ maxim,fan-fault-pin-mon; -+ }; -+ -+ fan@1 { -+ compatible = "pmbus-fan"; -+ reg = <1>; -+ tach-pulses = <2>; -+ maxim,fan-rotor-input = "tach"; -+ maxim,fan-pwm-freq = <25000>; -+ maxim,fan-dual-tach; -+ maxim,fan-no-watchdog; -+ maxim,fan-no-fault-ramp; -+ maxim,fan-ramp = <2>; -+ maxim,fan-fault-pin-mon; -+ }; -+ -+ fan@2 { -+ compatible = "pmbus-fan"; -+ reg = <2>; -+ tach-pulses = <2>; -+ maxim,fan-rotor-input = "tach"; -+ maxim,fan-pwm-freq = <25000>; -+ maxim,fan-dual-tach; -+ maxim,fan-no-watchdog; -+ maxim,fan-no-fault-ramp; -+ maxim,fan-ramp = <2>; -+ maxim,fan-fault-pin-mon; -+ }; -+ -+ fan@3 { -+ compatible = "pmbus-fan"; -+ reg = <3>; -+ tach-pulses = <2>; -+ maxim,fan-rotor-input = "tach"; -+ maxim,fan-pwm-freq = <25000>; -+ maxim,fan-dual-tach; -+ maxim,fan-no-watchdog; -+ maxim,fan-no-fault-ramp; -+ maxim,fan-ramp = <2>; -+ maxim,fan-fault-pin-mon; -+ }; -+ }; -+ -+ dps: dps310@76 { -+ compatible = "infineon,dps310"; -+ reg = <0x76>; -+ #io-channel-cells = <0>; -+ }; -+ -+ pca0: pca9552@60 { -+ compatible = "nxp,pca9552"; -+ reg = <0x60>; -+ #address-cells = <1>; -+ #size-cells = <0>; -+ -+ gpio-controller; -+ #gpio-cells = <2>; -+ -+ gpio@0 { -+ reg = <0>; -+ type = ; -+ }; -+ -+ gpio@1 { -+ reg = <1>; -+ type = ; -+ }; -+ -+ gpio@2 { -+ reg = <2>; -+ type = ; -+ }; -+ -+ gpio@3 { -+ reg = <3>; -+ type = ; -+ }; -+ -+ gpio@4 { -+ reg = <4>; -+ type = ; -+ }; -+ -+ gpio@5 { -+ reg = <5>; -+ type = ; -+ }; -+ -+ gpio@6 { -+ reg = <6>; -+ type = ; -+ }; -+ -+ gpio@7 { -+ reg = <7>; -+ type = ; -+ }; -+ -+ gpio@8 { -+ reg = <8>; -+ type = ; -+ }; -+ -+ gpio@9 { -+ reg = <9>; -+ type = ; -+ }; -+ -+ gpio@10 { -+ reg = <10>; -+ type = ; -+ }; -+ -+ gpio@11 { -+ reg = <11>; -+ type = ; -+ }; -+ -+ gpio@12 { -+ reg = <12>; -+ type = ; -+ }; -+ -+ gpio@13 { -+ reg = <13>; -+ type = ; -+ }; -+ -+ gpio@14 { -+ reg = <14>; -+ type = ; -+ }; -+ -+ gpio@15 { -+ reg = <15>; -+ type = ; -+ }; -+ }; -+ -+ power-supply@68 { -+ compatible = "ibm,cffps1"; -+ reg = <0x68>; -+ }; -+ -+ power-supply@69 { -+ compatible = "ibm,cffps1"; -+ reg = <0x69>; -+ }; -+}; -+ -+&i2c4 { -+ status = "okay"; -+ -+ tmp423a@4c { -+ compatible = "ti,tmp423"; -+ reg = <0x4c>; -+ }; -+ -+ ir35221@70 { -+ compatible = "infineon,ir35221"; -+ reg = <0x70>; -+ }; -+ -+ ir35221@71 { -+ compatible = "infineon,ir35221"; -+ reg = <0x71>; -+ }; -+}; -+ -+ -+&i2c5 { -+ status = "okay"; -+ -+ tmp423a@4c { -+ compatible = "ti,tmp423"; -+ reg = <0x4c>; -+ }; -+ -+ ir35221@70 { -+ compatible = "infineon,ir35221"; -+ reg = <0x70>; -+ }; -+ -+ ir35221@71 { -+ compatible = "infineon,ir35221"; -+ reg = <0x71>; -+ }; -+}; -+ -+&i2c9 { -+ status = "okay"; -+ -+ tmp275@4a { -+ compatible = "ti,tmp275"; -+ reg = <0x4a>; -+ }; -+}; -+ -+&i2c10 { -+ /* MUX -+ * -> PCIe Slot 3 -+ * -> PCIe Slot 4 -+ */ -+ status = "okay"; -+}; -+ -+&i2c11 { -+ status = "okay"; -+ -+ pca9552: pca9552@60 { -+ compatible = "nxp,pca9552"; -+ reg = <0x60>; -+ #address-cells = <1>; -+ #size-cells = <0>; -+ gpio-controller; -+ #gpio-cells = <2>; -+ -+ gpio-line-names = "PS_SMBUS_RESET_N", "APSS_RESET_N", -+ "GPU0_TH_OVERT_N_BUFF", "GPU1_TH_OVERT_N_BUFF", -+ "GPU2_TH_OVERT_N_BUFF", "GPU3_TH_OVERT_N_BUFF", -+ "GPU4_TH_OVERT_N_BUFF", "GPU5_TH_OVERT_N_BUFF", -+ "GPU0_PWR_GOOD_BUFF", "GPU1_PWR_GOOD_BUFF", -+ "GPU2_PWR_GOOD_BUFF", "GPU3_PWR_GOOD_BUFF", -+ "GPU4_PWR_GOOD_BUFF", "GPU5_PWR_GOOD_BUFF", -+ "12V_BREAKER_FLT_N", "THROTTLE_UNLATCHED_N"; -+ -+ gpio@0 { -+ reg = <0>; -+ type = ; -+ }; -+ -+ gpio@1 { -+ reg = <1>; -+ type = ; -+ }; -+ -+ gpio@2 { -+ reg = <2>; -+ type = ; -+ }; -+ -+ gpio@3 { -+ reg = <3>; -+ type = ; -+ }; -+ -+ gpio@4 { -+ reg = <4>; -+ type = ; -+ }; -+ -+ gpio@5 { -+ reg = <5>; -+ type = ; -+ }; -+ -+ gpio@6 { -+ reg = <6>; -+ type = ; -+ }; -+ -+ gpio@7 { -+ reg = <7>; -+ type = ; -+ }; -+ -+ gpio@8 { -+ reg = <8>; -+ type = ; -+ }; -+ -+ gpio@9 { -+ reg = <9>; -+ type = ; -+ }; -+ -+ gpio@10 { -+ reg = <10>; -+ type = ; -+ }; -+ -+ gpio@11 { -+ reg = <11>; -+ type = ; -+ }; -+ -+ gpio@12 { -+ reg = <12>; -+ type = ; -+ }; -+ -+ gpio@13 { -+ reg = <13>; -+ type = ; -+ }; -+ -+ gpio@14 { -+ reg = <14>; -+ type = ; -+ }; -+ -+ gpio@15 { -+ reg = <15>; -+ type = ; -+ }; -+ }; -+ -+ rtc@32 { -+ compatible = "epson,rx8900"; -+ reg = <0x32>; -+ }; -+ -+ eeprom@51 { -+ compatible = "atmel,24c64"; -+ reg = <0x51>; -+ }; -+ -+ ucd90160@64 { -+ compatible = "ti,ucd90160"; -+ reg = <0x64>; -+ }; -+}; -+ -+&i2c12 { -+ status = "okay"; -+}; -+ -+&i2c13 { -+ status = "okay"; -+}; -+ -+&vuart { -+ status = "okay"; -+}; -+ -+&gfx { -+ status = "okay"; -+ memory-region = <&gfx_memory>; -+}; -+ -+&pinctrl { -+ aspeed,external-nodes = <&gfx &lhc>; -+}; -+ -+&wdt1 { -+ aspeed,reset-type = "none"; -+ aspeed,external-signal; -+ aspeed,ext-push-pull; -+ aspeed,ext-active-high; -+ -+ pinctrl-names = "default"; -+ pinctrl-0 = <&pinctrl_wdtrst1_default>; -+}; -+ -+&wdt2 { -+ aspeed,alt-boot; -+}; -+ -+&ibt { -+ status = "okay"; -+}; -+ -+&adc { -+ status = "okay"; -+}; -+ -+&vhub { -+ status = "okay"; -+}; -+ -+&video { -+ status = "okay"; -+ memory-region = <&video_engine_memory>; -+}; -+ -+#include "ibm-power9-dual.dtsi" --- -1.8.3.1 - diff --git a/meta-ibm/meta-witherspoon/recipes-kernel/linux/linux-aspeed_%.bbappend b/meta-ibm/meta-witherspoon/recipes-kernel/linux/linux-aspeed_%.bbappend index 11ea48f2d..6f9a382ac 100644 --- a/meta-ibm/meta-witherspoon/recipes-kernel/linux/linux-aspeed_%.bbappend +++ b/meta-ibm/meta-witherspoon/recipes-kernel/linux/linux-aspeed_%.bbappend @@ -1,4 +1,4 @@ FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" SRC_URI_append_ibm-ac-server = " file://witherspoon.cfg" SRC_URI_append_mihawk = " file://mihawk.cfg" -SRC_URI_append_witherspoon-128 = " file://0001-ARM-dts-Aspeed-Witherspoon-128-Update-BMC-partitioni.patch" +SRC_URI_append_witherspoon-128 = " file://0001-ARM-dts-Aspeed-Add-witherspoon-128-machine.patch" -- cgit v1.2.3 From bf280ef803318166637268b87c7cc2715baa0087 Mon Sep 17 00:00:00 2001 From: Adriana Kobylak Date: Wed, 2 Oct 2019 10:13:13 -0500 Subject: mboxd: Only include check_pnor_format if ubi feature is enabled The check_pnor_format checks if the PNOR is formatted as UBI, so it should only be added if the UBI feature is enabled. (From meta-ibm rev: 091f26661b09c9d0a6f6b632b40cc8a84eac25c3) Change-Id: Ief252652cd347a0bf4a8f8eb592672d0e9740514 Signed-off-by: Adriana Kobylak Signed-off-by: Brad Bishop --- meta-ibm/meta-witherspoon/recipes-phosphor/mboxd/mboxd_%.bbappend | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/mboxd/mboxd_%.bbappend b/meta-ibm/meta-witherspoon/recipes-phosphor/mboxd/mboxd_%.bbappend index 589405e6c..9ead95927 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/mboxd/mboxd_%.bbappend +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/mboxd/mboxd_%.bbappend @@ -3,11 +3,11 @@ MBOXD_FLASH_SIZE_mihawk = "64M" FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" -SYSTEMD_SERVICE_${PN}_append_ibm-ac-server = " check-pnor-format.service" +SYSTEMD_SERVICE_${PN}_append_df-openpower-ubi-fs = " check-pnor-format.service" -SRC_URI_append_ibm-ac-server = " file://check_pnor_format.sh" +SRC_URI_append_df-openpower-ubi-fs = " file://check_pnor_format.sh" -do_install_append_ibm-ac-server() { +do_install_append_df-openpower-ubi-fs() { install -d ${D}${bindir} install -m 0755 ${WORKDIR}/check_pnor_format.sh ${D}${bindir}/check_pnor_format.sh } -- cgit v1.2.3 From 2b24cd95e45277526f0058157d65c551d1db9123 Mon Sep 17 00:00:00 2001 From: Matt Spinler Date: Thu, 3 Oct 2019 14:27:25 -0500 Subject: ibm: tacoma: Update air/water GPIO On witherspoon-tacoma the GPIO that specifies if the system is water cooled is Q7 (135). Update phosphor-cooling-type's config file appropriately. (From meta-ibm rev: 5d62a1c264bd72d9070e046a5ec10ad9b8715392) Signed-off-by: Matt Spinler Change-Id: I63131a81ecb984e7746e54a98c539a52d887e155 Signed-off-by: Brad Bishop --- .../obmc/phosphor-fan/phosphor-cooling-type-0.conf | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan/witherspoon-tacoma/obmc/phosphor-fan/phosphor-cooling-type-0.conf (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan/witherspoon-tacoma/obmc/phosphor-fan/phosphor-cooling-type-0.conf b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan/witherspoon-tacoma/obmc/phosphor-fan/phosphor-cooling-type-0.conf new file mode 100644 index 000000000..354fbe3ff --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan/witherspoon-tacoma/obmc/phosphor-fan/phosphor-cooling-type-0.conf @@ -0,0 +1,6 @@ +OBJPATH="--path=/system/chassis" +AIR="--air" +WATER="" +DEVICE="--dev=/dev/input/by-path/platform-gpio-keys-event" +CODE="--event=135" + -- cgit v1.2.3 From 7fe5760ae59db49e4b8c350cbc192097ba4e5958 Mon Sep 17 00:00:00 2001 From: Brad Bishop Date: Thu, 19 Sep 2019 14:16:21 -0400 Subject: meta-ibm: layer.conf: add zeus compatibility OE-core master will be dropping warrior soon; zeus is the next release. (From meta-ibm rev: 9c8d1b961e1185ab2e7eabf6f6b42754fcb57db0) Change-Id: I791f06ddb596584d1a566657a38ad6eb13692521 Signed-off-by: Brad Bishop --- meta-ibm/conf/layer.conf | 2 +- meta-ibm/meta-palmetto/conf/layer.conf | 2 +- meta-ibm/meta-romulus/conf/layer.conf | 2 +- meta-ibm/meta-witherspoon/conf/layer.conf | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'meta-ibm') diff --git a/meta-ibm/conf/layer.conf b/meta-ibm/conf/layer.conf index 131c45be3..4506bba62 100644 --- a/meta-ibm/conf/layer.conf +++ b/meta-ibm/conf/layer.conf @@ -7,4 +7,4 @@ BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \ BBFILE_COLLECTIONS += "ibm-layer" BBFILE_PATTERN_ibm-layer := "^${LAYERDIR}/" -LAYERSERIES_COMPAT_ibm-layer = "thud warrior" +LAYERSERIES_COMPAT_ibm-layer = "warrior zeus" diff --git a/meta-ibm/meta-palmetto/conf/layer.conf b/meta-ibm/meta-palmetto/conf/layer.conf index 0329e5dc5..0bbb885ed 100644 --- a/meta-ibm/meta-palmetto/conf/layer.conf +++ b/meta-ibm/meta-palmetto/conf/layer.conf @@ -7,4 +7,4 @@ BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \ BBFILE_COLLECTIONS += "palmetto-layer" BBFILE_PATTERN_palmetto-layer := "^${LAYERDIR}/" -LAYERSERIES_COMPAT_palmetto-layer = "thud warrior" +LAYERSERIES_COMPAT_palmetto-layer = "warrior zeus" diff --git a/meta-ibm/meta-romulus/conf/layer.conf b/meta-ibm/meta-romulus/conf/layer.conf index 13858d5a5..5b20790b6 100644 --- a/meta-ibm/meta-romulus/conf/layer.conf +++ b/meta-ibm/meta-romulus/conf/layer.conf @@ -7,4 +7,4 @@ BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \ BBFILE_COLLECTIONS += "romulus-layer" BBFILE_PATTERN_romulus-layer := "^${LAYERDIR}/" -LAYERSERIES_COMPAT_romulus-layer = "thud warrior" +LAYERSERIES_COMPAT_romulus-layer = "warrior zeus" diff --git a/meta-ibm/meta-witherspoon/conf/layer.conf b/meta-ibm/meta-witherspoon/conf/layer.conf index 62b067874..8cac30c39 100644 --- a/meta-ibm/meta-witherspoon/conf/layer.conf +++ b/meta-ibm/meta-witherspoon/conf/layer.conf @@ -7,4 +7,4 @@ BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \ BBFILE_COLLECTIONS += "witherspoon-layer" BBFILE_PATTERN_witherspoon-layer := "^${LAYERDIR}/" -LAYERSERIES_COMPAT_witherspoon-layer = "thud warrior" +LAYERSERIES_COMPAT_witherspoon-layer = "warrior zeus" -- cgit v1.2.3 From 647acf49e7f46d99b691eac2c8d3c4c0fdef298d Mon Sep 17 00:00:00 2001 From: Jim Wright Date: Thu, 3 Oct 2019 15:01:54 -0500 Subject: Change to /sys/bus/i2c/devices/... paths. Per review comments, change device paths to symlinks thought to be more stable. (From meta-ibm rev: ad75a64d9b120f9b9ed0453acca1da2bf119e78e) Signed-off-by: Jim Wright Change-Id: I925dac346368a0a40fa64948ac7f640c33f15019 Signed-off-by: Brad Bishop --- .../power/power-sequencer/rainier/ucd90160.yaml | 2 +- .../recipes-phosphor/power/power-sequencer/swift/ucd90160.yaml | 10 +++++----- .../power/power-sequencer/witherspoon/ucd90160.yaml | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/power/power-sequencer/rainier/ucd90160.yaml b/meta-ibm/meta-witherspoon/recipes-phosphor/power/power-sequencer/rainier/ucd90160.yaml index ba98e801e..d23ce58fb 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/power/power-sequencer/rainier/ucd90160.yaml +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/power/power-sequencer/rainier/ucd90160.yaml @@ -1,7 +1,7 @@ - Device: index: 0 # Linux sysfs path for this power sequencer (0x22 8-bit address) - path: /sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a480.i2c-bus/i2c-8/8-0011 + path: /sys/bus/i2c/devices/i2c-8/8-0011 RailNames: - "12.0V" - "5.0V_USB" diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/power/power-sequencer/swift/ucd90160.yaml b/meta-ibm/meta-witherspoon/recipes-phosphor/power/power-sequencer/swift/ucd90160.yaml index e14640202..abb2ce326 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/power/power-sequencer/swift/ucd90160.yaml +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/power/power-sequencer/swift/ucd90160.yaml @@ -1,7 +1,7 @@ - Device: index: 0 # Linux sysfs path for this power sequencer (0xC8 8-bit address) - path: /sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a340.i2c-bus/i2c-8/8-0064 + path: /sys/bus/i2c/devices/i2c-8/8-0064 RailNames: - "12.0V" - "3.3V" @@ -52,7 +52,7 @@ GPIOAnalysis: - type: gpuPGOOD # The PCA9xxx chip device path and address (0xC0 8-bit = 0x60 7-bit) - path: /sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a340.i2c-bus/i2c-8/8-0060 + path: /sys/bus/i2c/devices/i2c-8/8-0060 gpio_value: low # What GPIO value indicates a fault/problem? error_function: gpuPGOODError # Extra analysis function to call for this type option_flags: none @@ -72,7 +72,7 @@ callout: /system/chassis/motherboard/gv100card3 - type: gpuOverTemp # The PCA9xxx chip device path and address (0xC0 8-bit = 0x60 7-bit) - path: /sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a340.i2c-bus/i2c-8/8-0060 + path: /sys/bus/i2c/devices/i2c-8/8-0060 gpio_value: low # What GPIO value indicates a fault/problem? error_function: gpuOverTempError # Extra analysis function to call for this type option_flags: shutdownOnFault @@ -92,7 +92,7 @@ callout: /system/chassis/motherboard/gv100card3 - type: memGOOD0 # The PCA9xxx chip device path and address (0xE8 8-bit = 0x74 7-bit) - path: /sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a380.i2c-bus/i2c-9/9-0074 + path: /sys/bus/i2c/devices/i2c-9/9-0074 gpio_value: low # What GPIO value indicates a fault/problem? error_function: memGoodError # Extra analysis function to call for this type option_flags: none @@ -136,7 +136,7 @@ callout: /system/chassis/motherboard/dimm6 - type: memGOOD1 # The PCA9xxx chip device path and address (0xE8 8-bit = 0x74 7-bit) - path: /sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a3c0.i2c-bus/i2c-10/10-0074 + path: /sys/bus/i2c/devices/i2c-10/10-0074 gpio_value: low # What GPIO value indicates a fault/problem? error_function: memGoodError # Extra analysis function to call for this type option_flags: none diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/power/power-sequencer/witherspoon/ucd90160.yaml b/meta-ibm/meta-witherspoon/recipes-phosphor/power/power-sequencer/witherspoon/ucd90160.yaml index bf373ea92..39ee8ed36 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/power/power-sequencer/witherspoon/ucd90160.yaml +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/power/power-sequencer/witherspoon/ucd90160.yaml @@ -1,7 +1,7 @@ - Device: index: 0 # Linux sysfs path for this power sequencer (0xC8 8-bit address) - path: /sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a400.i2c-bus/i2c-11/11-0064 + path: /sys/bus/i2c/devices//i2c-11/11-0064 RailNames: - "5.0VCS" - "12.0V" @@ -52,7 +52,7 @@ analysis: none GPIOAnalysis: - type: gpuPGOOD - path: /sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a400.i2c-bus/i2c-11/11-0060 + path: /sys/bus/i2c/devices/i2c-11/11-0060 gpio_value: low error_function: gpuPGOODError option_flags: none @@ -77,7 +77,7 @@ callout: /system/chassis/motherboard/gv100card5 - type: gpuOverTemp # Extra analysis function to call for this type # The PCA9xxx chip device path and address (0xC0 8-bit = 0x60 7-bit) - path: /sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a400.i2c-bus/i2c-11/11-0060 + path: /sys/bus/i2c/devices/i2c-11/11-0060 gpio_value: low # What GPIO value indicates a fault/problem? error_function: gpuOverTempError option_flags: shutdownOnFault -- cgit v1.2.3 From 1f0050508097c0276176231a0c7e3c20f3e07c43 Mon Sep 17 00:00:00 2001 From: Matthew Barth Date: Fri, 20 Sep 2019 09:56:35 -0500 Subject: wspoon: Enable fan control to run at BMC standby To allow thermal modes to be selected at BMC standby, the fan control application must be running. The phosphor-fan-control@.service file is needed to start fan control at BMC standby and the phosphor-fan-control-init@.service is no longer required. Tested: Witherspoon phosphor-fan-control@.service replaced in image phosphor-fan-control-init@.service removed from image fan watchdog configs appended to fan control service still phosphor-fan-control@.service started at BMC standby fan control thermal modes presented/changeable at BMC standby no function change in configured thermal modes (From meta-ibm rev: f59761e1af85b3ae6432bf0297f5cfe5be71e557) Change-Id: I4a946f58b6f0c22ebd402304ae9d8fd17a197571 Signed-off-by: Matthew Barth Signed-off-by: Brad Bishop --- .../witherspoon/phosphor-fan-control@.service | 11 +++++++++++ .../recipes-phosphor/fans/phosphor-fan_%.bbappend | 18 +++++++++++++++--- .../witherspoon-fan-watchdog.service | 4 ++-- .../witherspoon-reset-fan-watchdog.service | 4 ++-- 4 files changed, 30 insertions(+), 7 deletions(-) create mode 100644 meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan/witherspoon/phosphor-fan-control@.service (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan/witherspoon/phosphor-fan-control@.service b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan/witherspoon/phosphor-fan-control@.service new file mode 100644 index 000000000..489292bfa --- /dev/null +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan/witherspoon/phosphor-fan-control@.service @@ -0,0 +1,11 @@ +[Unit] +Description=Phosphor Fan Control Daemon +Requires=max31785-hwmon-helper@ahb-apb-bus\x401e78a000-i2c\x2dbus\x40100-max31785\x4052.service +After=max31785-hwmon-helper@ahb-apb-bus\x401e78a000-i2c\x2dbus\x40100-max31785\x4052.service + +[Service] +Restart=on-failure +ExecStart=/usr/bin/phosphor-fan-control --control + +[Install] +RequiredBy=obmc-chassis-poweron@%i.target diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan_%.bbappend b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan_%.bbappend index 085857c31..243a02f1c 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan_%.bbappend +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan_%.bbappend @@ -14,8 +14,8 @@ PACKAGECONFIG_append_mihawk = " cooling-type" TMPL_COOLING = "phosphor-cooling-type@.service" INSTFMT_COOLING = "phosphor-cooling-type@{0}.service" -COOLING_TGT = "multi-user.target" -FMT_COOLING = "../${TMPL_COOLING}:${COOLING_TGT}.requires/${INSTFMT_COOLING}" +MULTI_USR_TGT = "multi-user.target" +FMT_COOLING = "../${TMPL_COOLING}:${MULTI_USR_TGT}.requires/${INSTFMT_COOLING}" FILES_phosphor-cooling-type_append_ibm-ac-server = " ${bindir}/phosphor-cooling-type" SYSTEMD_SERVICE_phosphor-cooling-type_append_ibm-ac-server = " ${TMPL_COOLING}" @@ -30,7 +30,6 @@ SYSTEMD_ENVIRONMENT_FILE_phosphor-cooling-type_append_ibm-ac-server = " ${@compo SYSTEMD_ENVIRONMENT_FILE_phosphor-cooling-type_append_mihawk = " ${@compose_list(d, 'COOLING_ENV_FMT', 'OBMC_CHASSIS_INSTANCES')}" #These services are protected by the watchdog -SYSTEMD_OVERRIDE_phosphor-fan-control_witherspoon += "fan-watchdog-monitor.conf:phosphor-fan-control-init@0.service.d/fan-watchdog-monitor.conf" SYSTEMD_OVERRIDE_phosphor-fan-control_witherspoon += "fan-watchdog-monitor.conf:phosphor-fan-control@0.service.d/fan-watchdog-monitor.conf" SYSTEMD_OVERRIDE_phosphor-fan-monitor_witherspoon += "fan-watchdog-monitor.conf:phosphor-fan-monitor-init@0.service.d/fan-watchdog-monitor.conf" SYSTEMD_OVERRIDE_phosphor-fan-monitor_witherspoon += "fan-watchdog-monitor.conf:phosphor-fan-monitor@0.service.d/fan-watchdog-monitor.conf" @@ -38,3 +37,16 @@ SYSTEMD_OVERRIDE_phosphor-fan-monitor_witherspoon += "fan-watchdog-monitor.conf: #These services need to be stopped when watchdog expires SYSTEMD_OVERRIDE_phosphor-fan-control_witherspoon += "fan-watchdog-conflicts.conf:phosphor-fan-control@0.service.d/fan-watchdog-conflicts.conf" SYSTEMD_OVERRIDE_phosphor-fan-monitor_witherspoon += "fan-watchdog-conflicts.conf:phosphor-fan-monitor@0.service.d/fan-watchdog-conflicts.conf" + +# Remove fan control init service completely +SYSTEMD_SERVICE_${PN}-control_remove_witherspoon = "${TMPL_CONTROL_INIT}" +SYSTEMD_LINK_${PN}-control_remove_witherspoon = "${@compose_list(d, 'FMT_CONTROL_INIT', 'OBMC_CHASSIS_INSTANCES')}" +# Remove fan control from being linked +SYSTEMD_LINK_${PN}-control_remove_witherspoon = "${@compose_list(d, 'FMT_CONTROL', 'OBMC_CHASSIS_INSTANCES')}" + +# Link fan control service to be started at standby +FMT_CONTROL_STDBY_witherspoon = "../${TMPL_CONTROL}:${MULTI_USR_TGT}.wants/${INSTFMT_CONTROL}" +SYSTEMD_LINK_${PN}-control_witherspoon += "${@compose_list(d, 'FMT_CONTROL_STDBY', 'OBMC_CHASSIS_INSTANCES')}" +# Link fan control service to also start at poweron +FMT_CONTROL_PWRON_witherspoon = "../${TMPL_CONTROL}:${POWERON_TGT}.requires/${INSTFMT_CONTROL}" +SYSTEMD_LINK_${PN}-control_witherspoon += "${@compose_list(d, 'FMT_CONTROL_PWRON', 'OBMC_CHASSIS_INSTANCES')}" diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/fans/witherspoon-fan-watchdog/witherspoon-fan-watchdog.service b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/witherspoon-fan-watchdog/witherspoon-fan-watchdog.service index 5b59546e3..597ee03cb 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/fans/witherspoon-fan-watchdog/witherspoon-fan-watchdog.service +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/witherspoon-fan-watchdog/witherspoon-fan-watchdog.service @@ -1,7 +1,7 @@ [Unit] Description=Witherspoon Fan Watchdog Daemon -Wants=phosphor-fan-control-init@0.service -Before=phosphor-fan-control-init@0.service +Wants=phosphor-fan-monitor-init@0.service +Before=phosphor-fan-monitor-init@0.service Conflicts=obmc-fan-watchdog-takeover.target [Service] diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/fans/witherspoon-fan-watchdog/witherspoon-reset-fan-watchdog.service b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/witherspoon-fan-watchdog/witherspoon-reset-fan-watchdog.service index e0ef0aeeb..675a67269 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/fans/witherspoon-fan-watchdog/witherspoon-reset-fan-watchdog.service +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/witherspoon-fan-watchdog/witherspoon-reset-fan-watchdog.service @@ -1,7 +1,7 @@ [Unit] Description=Witherspoon Fan Watchdog Reset -Wants=phosphor-fan-control-init@0.service -Before=phosphor-fan-control-init@0.service +Wants=phosphor-fan-monitor-init@0.service +Before=phosphor-fan-monitor-init@0.service Conflicts=obmc-chassis-poweroff@0.target [Service] -- cgit v1.2.3 From 45089668f64a209594882a306cb3401d7b0449d8 Mon Sep 17 00:00:00 2001 From: Ben_Pai Date: Fri, 27 Sep 2019 10:08:18 +0800 Subject: meta-ibm: Mihawk fan control support GPU thermal sensor Mihawk can use GPU, so fan control must support GPU thermal sensor. Tested: Fan speed is automatically controlled when using GPU (From meta-ibm rev: 2ecdfbd9911c5df8909089d87774a768cfb06716) Change-Id: I7a62dd349a72c1c3fb6dc314e7a011afb51e75b1 Signed-off-by: Ben Pai Signed-off-by: Brad Bishop --- .../mihawk/events.yaml | 50 ++++++++++++++++++++++ 1 file changed, 50 insertions(+) (limited to 'meta-ibm') diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-control-events-config/mihawk/events.yaml b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-control-events-config/mihawk/events.yaml index bce203777..ec63490f3 100644 --- a/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-control-events-config/mihawk/events.yaml +++ b/meta-ibm/meta-witherspoon/recipes-phosphor/fans/phosphor-fan-control-events-config/mihawk/events.yaml @@ -134,6 +134,18 @@ groups: - /temperature/p1_vdn_temp - /temperature/p0_vdd_temp - /temperature/p1_vdd_temp + - name: zone0_gpu + description: Group of gpu temperature sensors for zone 0 + type: /xyz/openbmc_project/sensors + members: + - /temperature/gpu0 + - /temperature/gpu1 + - /temperature/gpu2 + - /temperature/gpu3 + - /temperature/gpu4 + - /temperature/gpu5 + - /temperature/gpu6 + - /temperature/gpu7 matches: - name: propertiesChanged parameters: @@ -473,6 +485,11 @@ events: property: name: Value type: int64_t + - name: zone0_gpu + interface: xyz.openbmc_project.Sensor.Value + property: + name: Value + type: int64_t triggers: - name: init method: getProperties @@ -663,3 +680,36 @@ events: delta: value: 3 type: uint64_t + # Speed changes based on gpu temps + - name: set_net_increase_speed + groups: + - name: zone0_gpu + interface: xyz.openbmc_project.Sensor.Value + property: + name: Value + type: int64_t + property: + value: 70 + type: int64_t + factor: + value: 1 + type: int64_t + delta: + value: 13 + type: uint64_t + - name: set_net_decrease_speed + groups: + - name: zone0_gpu + interface: xyz.openbmc_project.Sensor.Value + property: + name: Value + type: int64_t + property: + value: 67 + type: int64_t + factor: + value: 4 + type: int64_t + delta: + value: 5 + type: uint64_t -- cgit v1.2.3