Merge remote-tracking branch 'dk/logging'
Change-Id: Ic4d9a5815092316de981258a6c072a59c0bd1dbd
diff --git a/README.md b/README.md
index 75063ce..48ba644 100644
--- a/README.md
+++ b/README.md
@@ -42,7 +42,7 @@
### Project Administrators
-* [`autobump`](infra/): Update commit IDs in bitbake recipes to bring in new changes
+* [`openbmc-autobump.py`](infra/): Update commit IDs in bitbake recipes to bring in new changes
## Sending patches
diff --git a/emilyshaffer/cla-signers/cla-signers b/emilyshaffer/cla-signers/cla-signers
index d7ffd00..a3a42a4 100644
--- a/emilyshaffer/cla-signers/cla-signers
+++ b/emilyshaffer/cla-signers/cla-signers
@@ -1,4 +1,4 @@
-Updated Thu Sep 13 13:16:04 EDT 2018
+Updated Wed Sep 19 11:53:54 EDT 2018
Aditya Saripalli
Adriana Kobylak
@@ -13,6 +13,7 @@
Andrew Geissler
Andrew Jeffery
Andy Mao
+Anthony Wilson
Artem Senichev
Ben Wei
Brad Bishop
@@ -31,13 +32,14 @@
David Nickel
Dawid Frycki
Deepak Kodihalli
-Derek Montague
+Derick Montague
Dhruvaraj Subhashchandran
Ed Tanous
Edward James
Emily Shaffer
Emmanuel Pando
Ernesto Cacique
+Evan Lojewski
George Keishing
Gunnar Mills
Haiyue Wang
diff --git a/infra/autobump.pl b/infra/autobump.pl
deleted file mode 100755
index bec2f82..0000000
--- a/infra/autobump.pl
+++ /dev/null
@@ -1,120 +0,0 @@
-#!/usr/bin/env perl
-
-# Contributors Listed Below - COPYRIGHT 2017
-# [+] International Business Machines Corp.
-#
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
-# implied. See the License for the specific language governing
-# permissions and limitations under the License.
-
-use strict;
-use File::Basename qw/basename/;
-
-my $metas_to_search = "meta-phosphor meta-openbmc-machines meta-openbmc-bsp";
-my $master_project = "openbmc";
-my $server = "https://gerrit.openbmc-project.xyz";
-
-system("cd $master_project && git fetch origin && git checkout origin/master");
-
-open(FILES, "cd $master_project && git grep -l -e \"_URI\" --and -e \"github\" -- $metas_to_search |");
-
-my @to_update = ();
-
-while(my $file = <FILES>)
-{
- chomp $file;
-
- my $entry = {};
- $entry->{FILE} = "$file";
- $entry->{BRANCH} = "master";
-
- open(FILE, "$master_project/$entry->{FILE}");
- while(my $line = <FILE>)
- {
- chomp $line;
-
- if ($line =~ m/SRCREV ?.*=/)
- {
- if ($line =~ m/"([0-9a-f]*)"/)
- {
- $entry->{SRCREV} = $1;
- }
- }
- elsif ($line =~ m/_URI/ and $line =~ m/github.com\/$master_project\//)
- {
- $line =~ s/.*$master_project\//$master_project\//;
- $line =~ s/"//g;
- $line =~ s/\.git$//;
- $entry->{SRC_URI} = $line;
- print "$file : $line\n";
- }
- }
- close FILE;
-
- if (exists $entry->{SRC_URI} and exists $entry->{SRCREV})
- {
- push @to_update, $entry;
- }
-}
-
-foreach my $entry (@to_update)
-{
- my $project = $entry->{SRC_URI};
- $project =~ s/\//%2F/g;
- my $revision =
- `curl -s $server/projects/$project/branches/$entry->{BRANCH} | \
- grep revision`;
-
- if (not $revision =~ m/revision/)
- {
- next;
- }
- if ($revision =~ m/$entry->{SRCREV}/)
- {
- print "$entry->{SRC_URI} is up to date @ $entry->{SRCREV}\n";
- next;
- }
-
- $revision =~ m/"([0-9a-f]*)"/;
- $revision = $1;
-
- print "$entry->{SRC_URI} needs to be updated\n";
- print "\t$entry->{SRCREV} -> $revision\n";
-
- my $changeId = `echo autobump $entry->{FILE} $entry->{SRCREV} $revision | git hash-object -t blob --stdin`;
- chomp $changeId;
- $changeId =~ s/[ \t]*//;
- $changeId = "I$changeId";
-
- my $change =
- `curl -s $server/changes/$master_project%2F$master_project~$entry->{BRANCH}~$changeId | \
- grep change_id`;
-
- if ($change =~ m/$changeId/)
- {
- print "\t$changeId already present.\n";
- next;
- }
-
- system("cd $master_project && git checkout origin/master --force &&".
- " sed -i \"s/$entry->{SRCREV}/$revision/\" $entry->{FILE} &&".
- " git add $entry->{FILE}");
-
- open(COMMIT, "| cd $master_project && git commit -s -F -");
- print COMMIT (basename $entry->{FILE}).": bump version\n";
- print COMMIT "\n";
- print COMMIT "Change-Id: $changeId\n";
- close(COMMIT);
-
- system("cd $master_project && git push origin HEAD:refs/for/master/autobump");
-
-}
diff --git a/infra/openbmc-autobump.py b/infra/openbmc-autobump.py
new file mode 100755
index 0000000..6716f4f
--- /dev/null
+++ b/infra/openbmc-autobump.py
@@ -0,0 +1,195 @@
+#!/usr/bin/env python3
+
+# Contributors Listed Below - COPYRIGHT 2018
+# [+] International Business Machines Corp.
+#
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+# implied. See the License for the specific language governing
+# permissions and limitations under the License.
+
+import argparse
+import os
+import sh
+import sys
+
+git = sh.git.bake('--no-pager')
+
+
+def log(msg, args):
+ if args.noisy:
+ sys.stderr.write('{}\n'.format(msg))
+
+
+def git_clone_or_reset(local_name, remote, args):
+ if not os.path.exists(local_name):
+ log('cloning into {}...'.format(local_name), args)
+ git.clone(remote, local_name)
+ else:
+ log('{} exists, updating...'.format(local_name), args)
+ git.fetch(_cwd=local_name)
+ git.reset('--hard', 'FETCH_HEAD', _cwd=local_name)
+
+
+def extract_sha_from_recipe(recipe):
+ with open(recipe) as fp:
+ project = None
+ sha = None
+
+ for line in fp:
+ if 'SRCREV' in line:
+ sha = line.split('=')[-1].replace('"', '').strip()
+ elif '_URI' in line and 'github.com/openbmc' in line:
+ uri = line.split(';')[0].split('=')[-1].replace('"', '').strip()
+ project = uri.split('/')[-1].replace('.git', '')
+
+ if project and sha:
+ return (project, sha)
+
+ raise RuntimeError('No SRCREV or URI found in {}'.format(recipe))
+
+
+def find_candidate_recipes(meta, args):
+ remote_fmt_args = (args.ssh_config_host, meta)
+ remote = 'ssh://{}/openbmc/{}'.format(*remote_fmt_args)
+ try:
+ git_clone_or_reset(meta, remote, args)
+ except sh.ErrorReturnCode as e:
+ log('{}'.format(e), args)
+ return []
+
+ grep_args = ['-l', '-e', '_URI', '--and', '-e', 'github.com/openbmc']
+ try:
+ return git.grep(*grep_args, _cwd=meta).stdout.decode('utf-8').split()
+ except sh.ErrorReturnCode_1:
+ pass
+ except sh.ErrorReturnCode as e:
+ log('{}'.format(e), args)
+
+ return []
+
+
+def find_and_process_bumps(meta, args):
+ candidate_recipes = find_candidate_recipes(meta, args)
+
+ for recipe in candidate_recipes:
+ full_recipe_path = os.path.join(meta, recipe)
+ recipe_basename = os.path.basename(full_recipe_path)
+ project_name, recipe_sha = extract_sha_from_recipe(full_recipe_path)
+
+ remote_fmt_args = (args.ssh_config_host, project_name)
+ remote = 'ssh://{}/openbmc/{}'.format(*remote_fmt_args)
+ ls_remote_args = [remote, 'refs/heads/{}'.format(args.branch)]
+ try:
+ project_sha = git('ls-remote', *ls_remote_args)
+ project_sha = project_sha.stdout.decode('utf-8').split()[0]
+ except sh.ErrorReturnCode as e:
+ log('{}'.format(e), args)
+ continue
+
+ if project_sha == recipe_sha:
+ message_args = (recipe_basename, recipe_sha[:10])
+ print('{} is up to date ({})'.format(*message_args))
+ continue
+
+ change_id = 'autobump {} {} {}'.format(recipe, recipe_sha, project_sha)
+ hash_object_args = ['-t', 'blob', '--stdin']
+ change_id = git(sh.echo(change_id), 'hash-object', *hash_object_args)
+ change_id = 'I{}'.format(change_id.strip())
+
+ query_args = ['query', 'change:{}'.format(change_id)]
+ gerrit_query_result = args.gerrit(*query_args)
+ gerrit_query_result = gerrit_query_result.stdout.decode('utf-8')
+
+ if (change_id in gerrit_query_result):
+ message_args = (recipe_basename, change_id)
+ print('{} {} already exists'.format(*message_args))
+ continue
+
+ message_args = (recipe_basename, recipe_sha[:10], project_sha[:10])
+ print('{} updating from {} to {}'.format(*message_args))
+
+ remote_args = (args.ssh_config_host, project_name)
+ remote = 'ssh://{}/openbmc/{}'.format(*remote_args)
+ git_clone_or_reset(project_name, remote, args)
+
+ try:
+ revlist = '{}..{}'.format(recipe_sha, project_sha)
+ shortlog = git.shortlog(revlist, _cwd=project_name)
+ shortlog = shortlog.stdout.decode('utf-8')
+ except sh.ErrorReturnCode as e:
+ log('{}'.format(e), args)
+ continue
+
+ reset_args = ['--hard', 'origin/{}'.format(args.branch)]
+ git.reset(*reset_args, _cwd=meta)
+
+ recipe_content = None
+ with open(full_recipe_path) as fd:
+ recipe_content = fd.read()
+
+ recipe_content = recipe_content.replace(recipe_sha, project_sha)
+ with open(full_recipe_path, 'w') as fd:
+ fd.write(recipe_content)
+
+ git.add(recipe, _cwd=meta)
+
+ commit_summary_args = (project_name, recipe_sha[:10], project_sha[:10])
+ commit_msg = '{}: srcrev bump {}..{}'.format(*commit_summary_args)
+ commit_msg += '\n\n{}'.format(shortlog)
+ commit_msg += '\n\nChange-Id: {}'.format(change_id)
+
+ git.commit(sh.echo(commit_msg), '-s', '-F', '-', _cwd=meta)
+
+ push_args = ['origin', 'HEAD:refs/for/{}/autobump'.format(args.branch)]
+ git.push(*push_args, _cwd=meta)
+
+
+def main():
+ app_description = '''OpenBMC bitbake recipe bumping tool.
+
+Find bitbake metadata files (recipes) that use the git fetcher
+and check the project repository for newer revisions.
+
+Generate commits that update bitbake metadata files with SRCREV.
+
+Push generated commits to the OpenBMC Gerrit instance for review.
+ '''
+ parser = argparse.ArgumentParser(
+ description=app_description,
+ formatter_class=argparse.RawDescriptionHelpFormatter)
+
+ parser.set_defaults(branch='master')
+ parser.add_argument(
+ '-m', '--meta-repository', dest='meta_repository', action='append',
+ help='meta repository to check for updates')
+ parser.add_argument(
+ '-v', '--verbose', dest='noisy', action='store_true',
+ help='enable verbose status messages')
+ parser.add_argument(
+ 'ssh_config_host', metavar='SSH_CONFIG_HOST_ENTRY',
+ help='SSH config host entry for Gerrit connectivity')
+
+ args = parser.parse_args()
+ setattr(args, 'gerrit', sh.ssh.bake(args.ssh_config_host, 'gerrit'))
+
+ metas = getattr(args, 'meta_repository')
+ if metas is None:
+ metas = args.gerrit('ls-projects', '-m', 'meta-')
+ metas = metas.stdout.decode('utf-8').split()
+ metas = [os.path.split(x)[-1] for x in metas]
+
+ for meta in metas:
+ find_and_process_bumps(meta, args)
+
+
+if __name__ == '__main__':
+ sys.exit(0 if main() else 1)
diff --git a/leiyu/obmc-utils/README.md b/leiyu/obmc-utils/README.md
index 5b1e643..161a29f 100644
--- a/leiyu/obmc-utils/README.md
+++ b/leiyu/obmc-utils/README.md
@@ -3,3 +3,28 @@
* `upload_and_update.py`
A tool to upload a tarball to TFTP server and update BMC with it.
**Note**: It uses legacy methods to update BMC so it may break in future when the code update is refactored.
+
+* `sensor_yaml_config.py`
+A tool to help write IPMI sensor yaml config.
+**Note**: This script requires python3.6 or above.
+
+ * To sort the yaml config:
+ ```
+ sensor_yaml_config.py -i <input.yaml> -o <output.yaml>
+ ```
+ * To add the missing enityID, entityInstance, and sensorNamePattern:
+ ```
+ sensor_yaml_config.py -i <input.yaml> -o <output.yaml> -f
+ ```
+ * To add missing core/dimm temperature sensors based on RPT (generated by OpenPOWER op-build):
+ ```
+ sensor_yaml_config.py -i <input.yaml> -o <output.yaml> -f -r <machine.rpt>
+ ```
+ * To generate a sensor map from example yaml config, which could be used for future:
+ ```
+ sensor_yaml_config.py -i <sample.yaml> -o <sensor_map.yaml> -g
+ ```
+ * To generate a DCMI sensor json config, which is used by phosphor-ipmi-config:
+ ```
+ sensor_yaml_config.py -i <input.yaml> -o <output.json> -d
+ ```
diff --git a/leiyu/obmc-utils/sensor_map.yaml b/leiyu/obmc-utils/sensor_map.yaml
new file mode 100644
index 0000000..4af0405
--- /dev/null
+++ b/leiyu/obmc-utils/sensor_map.yaml
@@ -0,0 +1,750 @@
+? !!python/tuple
+- /org/open_power/control/occ0
+- !!python/tuple [org.open_power.OCC.Status]
+: {entityID: 210, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /org/open_power/control/occ1
+- !!python/tuple [org.open_power.OCC.Status]
+: {entityID: 210, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /org/open_power/control/volatile
+- !!python/tuple [xyz.openbmc_project.Object.Enable]
+: {entityID: 33, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 3, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu0
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 3, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu0/core0
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu0/core1
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu0/core10
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu0/core11
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu0/core12
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu0/core13
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu0/core14
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu0/core15
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu0/core16
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu0/core17
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu0/core18
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu0/core19
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu0/core2
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu0/core20
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu0/core21
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu0/core22
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu0/core23
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu0/core3
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu0/core4
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu0/core5
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu0/core6
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu0/core7
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu0/core8
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu0/core9
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu1
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 3, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu1/core0
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu1/core1
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu1/core10
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu1/core11
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu1/core12
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu1/core13
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu1/core14
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu1/core15
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu1/core16
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu1/core17
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu1/core18
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu1/core19
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu1/core2
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu1/core20
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu1/core21
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu1/core22
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu1/core23
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu1/core3
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu1/core4
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu1/core5
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu1/core6
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu1/core7
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu1/core8
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/cpu1/core9
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 208, sensorNamePattern: nameParentLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/dimm0
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/dimm1
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/dimm10
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/dimm11
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/dimm12
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/dimm13
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/dimm14
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/dimm15
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/dimm2
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/dimm3
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/dimm4
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/dimm5
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/dimm6
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/dimm7
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/dimm8
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/dimm9
+- !!python/tuple [xyz.openbmc_project.Inventory.Item, xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/gv100card0
+- !!python/tuple [xyz.openbmc_project.Inventory.Decorator.Replaceable, xyz.openbmc_project.Inventory.Item,
+ xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 216, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/gv100card1
+- !!python/tuple [xyz.openbmc_project.Inventory.Decorator.Replaceable, xyz.openbmc_project.Inventory.Item,
+ xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 216, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/gv100card2
+- !!python/tuple [xyz.openbmc_project.Inventory.Decorator.Replaceable, xyz.openbmc_project.Inventory.Item,
+ xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 216, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/gv100card3
+- !!python/tuple [xyz.openbmc_project.Inventory.Decorator.Replaceable, xyz.openbmc_project.Inventory.Item,
+ xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 216, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/gv100card4
+- !!python/tuple [xyz.openbmc_project.Inventory.Decorator.Replaceable, xyz.openbmc_project.Inventory.Item,
+ xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 216, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /system/chassis/motherboard/gv100card5
+- !!python/tuple [xyz.openbmc_project.Inventory.Decorator.Replaceable, xyz.openbmc_project.Inventory.Item,
+ xyz.openbmc_project.State.Decorator.OperationalStatus]
+: {entityID: 216, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/control/host0/TPMEnable
+- !!python/tuple [xyz.openbmc_project.Control.TPM.Policy]
+: {entityID: 3, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/control/host0/auto_reboot
+- !!python/tuple [xyz.openbmc_project.Control.Boot.RebootPolicy]
+: {entityID: 33, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/control/host0/turbo_allowed
+- !!python/tuple [xyz.openbmc_project.Control.Host.TurboAllowed]
+: {entityID: 3, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/current/ps0_output_current
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 10, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/current/ps1_output_current
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 10, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/fan_tach/fan0_0
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 29, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/fan_tach/fan0_1
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 29, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/fan_tach/fan1_0
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 29, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/fan_tach/fan1_1
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 29, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/fan_tach/fan2_0
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 29, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/fan_tach/fan2_1
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 29, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/fan_tach/fan3_0
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 29, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/fan_tach/fan3_1
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 29, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/power/fan_disk_power
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 10, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/power/p0_io_power
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 10, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/power/p0_mem_power
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 10, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/power/p0_power
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 10, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/power/p1_io_power
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 10, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/power/p1_mem_power
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 10, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/power/p1_power
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 10, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/power/ps0_input_power
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 10, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/power/ps1_input_power
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 10, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/power/total_power
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 10, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/ambient
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 64, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/dimm0_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/dimm10_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/dimm11_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/dimm12_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/dimm13_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/dimm14_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/dimm15_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/dimm1_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/dimm2_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/dimm3_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/dimm4_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/dimm5_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/dimm6_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/dimm7_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/dimm8_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/dimm9_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 32, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/gpu0_core_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 216, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/gpu0_mem_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 217, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/gpu1_core_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 216, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/gpu1_mem_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 217, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/gpu2_core_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 216, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/gpu2_mem_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 217, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/gpu3_core_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 216, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/gpu3_mem_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 217, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/gpu4_core_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 216, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/gpu4_mem_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 217, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/gpu5_core_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 216, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/gpu5_mem_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 217, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p0_core0_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p0_core10_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p0_core11_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p0_core12_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p0_core13_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p0_core14_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p0_core15_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p0_core16_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p0_core17_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p0_core18_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p0_core19_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p0_core1_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p0_core20_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p0_core21_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p0_core22_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p0_core23_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p0_core2_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p0_core3_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p0_core4_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p0_core5_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p0_core6_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p0_core7_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p0_core8_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p0_core9_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p0_vdd_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 218, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p1_core0_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p1_core10_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p1_core11_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p1_core12_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p1_core13_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p1_core14_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p1_core15_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p1_core16_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p1_core17_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p1_core18_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p1_core19_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p1_core1_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p1_core20_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p1_core21_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p1_core22_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p1_core23_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p1_core2_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p1_core3_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p1_core4_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p1_core5_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p1_core6_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p1_core7_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p1_core8_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p1_core9_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 208, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/p1_vdd_temp
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 218, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/temperature/pcie
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 35, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/voltage/ps0_input_voltage
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 10, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/voltage/ps0_output_voltage
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 10, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/voltage/ps1_input_voltage
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 10, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/sensors/voltage/ps1_output_voltage
+- !!python/tuple [xyz.openbmc_project.Sensor.Value]
+: {entityID: 10, sensorNamePattern: nameLeaf}
+? !!python/tuple
+- /xyz/openbmc_project/state/host0
+- !!python/tuple [xyz.openbmc_project.Control.Boot.RebootAttempts]
+: {entityID: 34, sensorNamePattern: nameProperty}
+? !!python/tuple
+- /xyz/openbmc_project/state/host0
+- !!python/tuple [xyz.openbmc_project.State.Boot.Progress]
+: {entityID: 34, sensorNamePattern: nameProperty}
+? !!python/tuple
+- /xyz/openbmc_project/state/host0
+- !!python/tuple [xyz.openbmc_project.State.OperatingSystem.Status]
+: {entityID: 35, sensorNamePattern: nameProperty}
diff --git a/leiyu/obmc-utils/sensor_yaml_config.py b/leiyu/obmc-utils/sensor_yaml_config.py
new file mode 100755
index 0000000..358bd65
--- /dev/null
+++ b/leiyu/obmc-utils/sensor_yaml_config.py
@@ -0,0 +1,410 @@
+#!/usr/bin/env python3
+
+import yaml
+import argparse
+
+from typing import NamedTuple
+
+
+class RptSensor(NamedTuple):
+ name: str
+ entityId: int
+ typeId: int
+ evtType: int
+ sensorId: int
+ fru: int
+ targetPath: str
+
+
+sampleDimmTemp = {
+ 'bExp': 0,
+ 'entityID': 32,
+ 'entityInstance': 2,
+ 'interfaces': {
+ 'xyz.openbmc_project.Sensor.Value': {
+ 'Value': {
+ 'Offsets': {
+ 255: {
+ 'type': 'int64_t'
+ }
+ }
+ }
+ }
+ },
+ 'multiplierM': 1,
+ 'mutability': 'Mutability::Write|Mutability::Read',
+ 'offsetB': -127,
+ 'path': '/xyz/openbmc_project/sensors/temperature/dimm0_temp',
+ 'rExp': 0,
+ 'readingType': 'readingData',
+ 'scale': -3,
+ 'sensorNamePattern': 'nameLeaf',
+ 'sensorReadingType': 1,
+ 'sensorType': 1,
+ 'serviceInterface': 'org.freedesktop.DBus.Properties',
+ 'unit': 'xyz.openbmc_project.Sensor.Value.Unit.DegreesC'
+}
+sampleCoreTemp = {
+ 'bExp': 0,
+ 'entityID': 208,
+ 'entityInstance': 2,
+ 'interfaces': {
+ 'xyz.openbmc_project.Sensor.Value': {
+ 'Value': {
+ 'Offsets': {
+ 255: {
+ 'type': 'int64_t'
+ }
+ }
+ }
+ }
+ },
+ 'multiplierM': 1,
+ 'mutability': 'Mutability::Write|Mutability::Read',
+ 'offsetB': -127,
+ 'path': '/xyz/openbmc_project/sensors/temperature/p0_core0_temp',
+ 'rExp': 0,
+ 'readingType': 'readingData',
+ 'scale': -3,
+ 'sensorNamePattern': 'nameLeaf',
+ 'sensorReadingType': 1,
+ 'sensorType': 1,
+ 'serviceInterface': 'org.freedesktop.DBus.Properties',
+ 'unit': 'xyz.openbmc_project.Sensor.Value.Unit.DegreesC'
+}
+samplePower = {
+ 'bExp': 0,
+ 'entityID': 10,
+ 'entityInstance': 13,
+ 'interfaces': {
+ 'xyz.openbmc_project.Sensor.Value': {
+ 'Value': {
+ 'Offsets': {
+ 255: {
+ 'type': 'int64_t'
+ }
+ }
+ }
+ }
+ },
+ 'multiplierM': 2,
+ 'offsetB': 0,
+ 'path': '/xyz/openbmc_project/sensors/power/p0_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'
+}
+
+sampleDcmiSensor = {
+ "instance": 1,
+ "dbus": "/xyz/openbmc_project/sensors/temperature/p0_core0_temp",
+ "record_id": 91
+}
+
+
+def openYaml(f):
+ return yaml.load(open(f))
+
+
+def saveYaml(y, f, safe=True):
+ if safe:
+ noaliasDumper = yaml.dumper.SafeDumper
+ noaliasDumper.ignore_aliases = lambda self, data: True
+ yaml.dump(y, open(f, "w"), default_flow_style=False,
+ Dumper=noaliasDumper)
+ else:
+ yaml.dump(y, open(f, "w"))
+
+
+def getEntityIdAndNamePattern(p, intfs, m):
+ key = (p, intfs)
+ match = m.get(key, None)
+ if match is None:
+ # Workaround for P8's occ sensors, where the path look like
+ # /org/open_power/control/occ_3_0050
+ if '/org/open_power/control/occ' in p \
+ and 'org.open_power.OCC.Status' in intfs:
+ return (210, 'nameLeaf')
+ raise Exception('Unable to find sensor', key, 'from map')
+ return (m[key]['entityID'], m[key]['sensorNamePattern'])
+
+
+# Global entity instances
+entityInstances = {}
+
+
+def getEntityInstance(id):
+ instanceId = entityInstances.get(id, 0)
+ instanceId = instanceId + 1
+ entityInstances[id] = instanceId
+ print("EntityId:", id, "InstanceId:", instanceId)
+ return instanceId
+
+
+def loadRpt(rptFile):
+ sensors = []
+ with open(rptFile) as f:
+ next(f)
+ next(f)
+ for line in f:
+ fields = line.strip().split('|')
+ fields = list(map(str.strip, fields))
+ sensor = RptSensor(
+ fields[0],
+ int(fields[2], 16) if fields[2] else None,
+ int(fields[3], 16) if fields[3] else None,
+ int(fields[4], 16) if fields[4] else None,
+ int(fields[5], 16) if fields[5] else None,
+ int(fields[7], 16) if fields[7] else None,
+ fields[9])
+ # print(sensor)
+ sensors.append(sensor)
+ return sensors
+
+
+def getDimmTempPath(p):
+ # Convert path like: /sys-0/node-0/motherboard-0/dimmconn-0/dimm-0
+ # to: /xyz/openbmc_project/sensors/temperature/dimm0_temp
+ import re
+ dimmconn = re.search(r'dimmconn-\d+', p).group()
+ dimmId = re.search(r'\d+', dimmconn).group()
+ return '/xyz/openbmc_project/sensors/temperature/dimm{}_temp'.format(dimmId)
+
+
+def getMembufTempPath(name):
+ # Convert names like MEMBUF0_Temp or CENTAUR0_Temp
+ # to: /xyz/openbmc_project/sensors/temperature/membuf0_temp
+ # to: /xyz/openbmc_project/sensors/temperature/centaur0_temp
+ return '/xyz/openbmc_project/sensors/temperature/{}'.format(name.lower())
+
+
+def getCoreTempPath(name, p):
+ # For different rpts:
+ # Convert path like:
+ # /sys-0/node-0/motherboard-0/proc_socket-0/module-0/p9_proc_s/eq0/ex0/core0 (for P9)
+ # to: /xyz/openbmc_project/sensors/temperature/p0_core0_temp
+ # or name like: CORE0_Temp (for P8)
+ # to: /xyz/openbmc_project/sensors/temperature/core0_temp (for P8)
+ import re
+ if 'p9_proc' in p:
+ splitted = p.split('/')
+ socket = re.search(r'\d+', splitted[4]).group()
+ core = re.search(r'\d+', splitted[9]).group()
+ return '/xyz/openbmc_project/sensors/temperature/p{}_core{}_temp'.format(socket, core)
+ else:
+ core = re.search(r'\d+', name).group()
+ return '/xyz/openbmc_project/sensors/temperature/core{}_temp'.format(core)
+
+
+def getPowerPath(name):
+ # Convert name like Proc0_Power
+ # to: /xyz/openbmc_project/sensors/power/p0_power
+ import re
+ r = re.search(r'\d+', name)
+ if r:
+ index = r.group()
+ else:
+ # Handle cases like IO_A_Power, Storage_Power_A
+ r = re.search(r'_[A|B|C|D]', name).group()[-1]
+ index = str(ord(r) - ord('A'))
+ prefix = 'p'
+ m = None
+ if 'memory_proc' in name.lower():
+ prefix = None
+ m = 'centaur'
+ elif 'pcie_proc' in name.lower():
+ m = 'pcie'
+ elif 'io' in name.lower():
+ m = 'io'
+ elif 'fan' in name.lower():
+ m = 'fan'
+ elif 'storage' in name.lower():
+ m = 'disk'
+ elif 'total' in name.lower():
+ prefix = None
+ m = 'total'
+ elif 'proc' in name.lower():
+ # Default
+ pass
+
+ ret = '/xyz/openbmc_project/sensors/power/'
+ if prefix:
+ ret = ret + prefix + index
+ if m:
+ if prefix:
+ ret = ret + '_' + m
+ else:
+ ret = ret + m
+ if prefix is None:
+ ret = ret + index
+ ret = ret + '_power'
+ return ret
+
+
+def getDimmTempConfig(s):
+ r = sampleDimmTemp.copy()
+ r['entityInstance'] = getEntityInstance(r['entityID'])
+ r['path'] = getDimmTempPath(s.targetPath)
+ return r
+
+
+def getMembufTempConfig(s):
+ r = sampleDimmTemp.copy()
+ r['entityID'] = 0xD1
+ r['entityInstance'] = getEntityInstance(r['entityID'])
+ r['path'] = getMembufTempPath(s.name)
+ return r
+
+
+def getCoreTempConfig(s):
+ r = sampleCoreTemp.copy()
+ r['entityInstance'] = getEntityInstance(r['entityID'])
+ r['path'] = getCoreTempPath(s.name, s.targetPath)
+ return r
+
+
+def getPowerConfig(s):
+ r = samplePower.copy()
+ r['entityInstance'] = getEntityInstance(r['entityID'])
+ r['path'] = getPowerPath(s.name)
+ return r
+
+
+def isCoreTemp(p):
+ import re
+ m = re.search(r'p\d+_core\d+_temp', p)
+ return m is not None
+
+
+def getDcmiSensor(i, sensor):
+ import re
+ path = sensor['path']
+ name = path.split('/')[-1]
+ m = re.findall(r'\d+', name)
+ socket, core = int(m[0]), int(m[1])
+ instance = socket * 24 + core + 1
+ r = sampleDcmiSensor.copy()
+ r['instance'] = instance
+ r['dbus'] = path
+ r['record_id'] = i
+ return r
+
+
+def saveJson(data, f):
+ import json
+ with open(f, 'w') as outfile:
+ json.dump(data, outfile, indent=4)
+
+
+def main():
+ parser = argparse.ArgumentParser(
+ description='Yaml tool for updating ipmi sensor yaml config')
+ parser.add_argument('-i', '--input', required=True, dest='input',
+ help='The ipmi sensor yaml config')
+ parser.add_argument('-o', '--output', required=True, dest='output',
+ help='The output yaml file')
+ parser.add_argument('-m', '--map', dest='map', default='sensor_map.yaml',
+ help='The sample map yaml file')
+ parser.add_argument('-r', '--rpt', dest='rpt',
+ help='The .rpt file generated by op-build')
+ parser.add_argument('-f', '--fix', action='store_true',
+ help='Fix entities and sensorNamePattern')
+
+ # -g expects output as yaml for mapping of entityID/sensorNamePattern
+ # -d expects output as json config for dcmi sensors
+ # Do not mess the output by enforcing only one argument is passed
+ # TODO: -f and -r could be used together, and they are conflicted with -g or -d
+ group = parser.add_mutually_exclusive_group()
+ group.add_argument('-g', '--generate', action='store_true',
+ help='Generate maps for entityID and sensorNamePattern')
+ group.add_argument('-d', '--dcmi', action='store_true',
+ help='Generate dcmi sensors json config')
+
+ args = parser.parse_args()
+ args = vars(args)
+
+ if args['input'] is None or args['output'] is None:
+ parser.print_help()
+ exit(1)
+
+ y = openYaml(args['input'])
+
+ if args['fix']:
+ # Fix entities and sensorNamePattern
+ m = openYaml(args['map'])
+
+ for i in y:
+ path = y[i]['path']
+ intfs = tuple(sorted(list(y[i]['interfaces'].keys())))
+ entityId, namePattern = getEntityIdAndNamePattern(path, intfs, m)
+ y[i]['entityID'] = entityId
+ y[i]['entityInstance'] = getEntityInstance(entityId)
+ y[i]['sensorNamePattern'] = namePattern
+ print(y[i]['path'], "id:", entityId,
+ "instance:", y[i]['entityInstance'])
+
+ sensorIds = list(y.keys())
+ if args['rpt']:
+ unhandledSensors = []
+ rptSensors = loadRpt(args['rpt'])
+ for s in rptSensors:
+ if s.sensorId is not None and s.sensorId not in sensorIds:
+ print("Sensor ID", s.sensorId, "not in yaml:",
+ s.name, ", path:", s.targetPath)
+ isAdded = False
+ if 'temp' in s.name.lower():
+ if 'dimm' in s.targetPath.lower():
+ y[s.sensorId] = getDimmTempConfig(s)
+ isAdded = True
+ elif 'core' in s.targetPath.lower():
+ y[s.sensorId] = getCoreTempConfig(s)
+ isAdded = True
+ elif 'centaur' in s.name.lower() or 'membuf' in s.name.lower():
+ y[s.sensorId] = getMembufTempConfig(s)
+ isAdded = True
+ elif s.name.lower().endswith('_power'):
+ y[s.sensorId] = getPowerConfig(s)
+ isAdded = True
+
+ if isAdded:
+ print('Added sensor id:', s.sensorId,
+ ', path:', y[s.sensorId]['path'])
+ else:
+ unhandledSensors.append(s)
+
+ print('Unhandled sensors:')
+ for s in unhandledSensors:
+ print(s)
+
+ if args['generate']:
+ m = {}
+ for i in y:
+ path = y[i]['path']
+ intfs = tuple(sorted(list(y[i]['interfaces'].keys())))
+ entityId = y[i]['entityID']
+ sensorNamePattern = y[i]['sensorNamePattern']
+ m[(path, intfs)] = {'entityID': entityId,
+ 'sensorNamePattern': sensorNamePattern}
+ y = m
+
+ if args['dcmi']:
+ d = []
+ for i in y:
+ if isCoreTemp(y[i]['path']):
+ s = getDcmiSensor(i, y[i])
+ d.append(s)
+ print(s)
+ saveJson(d, args['output'])
+ return
+
+ safe = False if args['generate'] else True
+ saveYaml(y, args['output'], safe)
+
+
+if __name__ == "__main__":
+ main()
diff --git a/thalerj/openbmctool.py b/thalerj/openbmctool.py
old mode 100644
new mode 100755
index 890bd87..9fac4f0
--- a/thalerj/openbmctool.py
+++ b/thalerj/openbmctool.py
@@ -648,6 +648,37 @@
return eselParts
+def getESELSeverity(esel):
+ """
+ Finds the severity type in an eSEL from the User Header section.
+ @param esel - the eSEL data
+ @return severity - e.g. 'Critical'
+ """
+
+ # everything but 1 and 2 are Critical
+ # '1': 'recovered',
+ # '2': 'predictive',
+ # '4': 'unrecoverable',
+ # '5': 'critical',
+ # '6': 'diagnostic',
+ # '7': 'symptom'
+ severities = {
+ '1': 'Informational',
+ '2': 'Warning'
+ }
+
+ try:
+ headerPosition = esel.index('55 48') # 'UH'
+ # The severity is the last byte in the 8 byte section (a byte is ' bb')
+ severity = esel[headerPosition:headerPosition+32].split(' ')[-1]
+ type = severity[0]
+ except ValueError:
+ print("Could not find severity value in UH section in eSEL")
+ type = 'x';
+
+ return severities.get(type, 'Critical')
+
+
def sortSELs(events):
"""
sorts the sels by timestamp, then log entry number
@@ -698,6 +729,7 @@
esel = ""
eselParts = {}
i2cdevice= ""
+ eselSeverity = None
'prepare and sort the event entries'
for key in selEntries:
@@ -726,12 +758,17 @@
fruCallout = str(addDataPiece[calloutIndex]).split('=')[1]
if("CALLOUT_DEVICE_PATH" in addDataPiece[i]):
i2creadFail = True
- i2cdevice = str(addDataPiece[i]).strip().split('=')[1]
- i2cdevice = '/'.join(i2cdevice.split('/')[-4:])
- if 'fsi' in str(addDataPiece[calloutIndex]).split('=')[1]:
- fruCallout = 'FSI'
- else:
- fruCallout = 'I2C'
+
+ fruCallout = str(addDataPiece[calloutIndex]).split('=')[1]
+
+ # Fall back to "I2C"/"FSI" if dev path isn't in policy table
+ if (messageID + '||' + fruCallout) not in policyTable:
+ i2cdevice = str(addDataPiece[i]).strip().split('=')[1]
+ i2cdevice = '/'.join(i2cdevice.split('/')[-4:])
+ if 'fsi' in str(addDataPiece[calloutIndex]).split('=')[1]:
+ fruCallout = 'FSI'
+ else:
+ fruCallout = 'I2C'
calloutFound = True
if("CALLOUT_GPIO_NUM" in addDataPiece[i]):
if not calloutFound:
@@ -747,6 +784,7 @@
calloutFound = True
if("ESEL" in addDataPiece[i]):
esel = str(addDataPiece[i]).strip().split('=')[1]
+ eselSeverity = getESELSeverity(esel)
if args.devdebug:
eselParts = parseESEL(args, esel)
hasEsel=True
@@ -769,6 +807,15 @@
if(calloutFound):
if fruCallout != "":
policyKey = messageID +"||" + fruCallout
+
+ # Also use the severity for hostboot errors
+ if eselSeverity and messageID == 'org.open_power.Host.Error.Event':
+ policyKey += '||' + eselSeverity
+
+ # if not in the table, fall back to the original key
+ if policyKey not in policyTable:
+ policyKey = policyKey.replace('||'+eselSeverity, '')
+
if policyKey not in policyTable:
policyKey = messageID
else:
@@ -2305,7 +2352,7 @@
main function for running the command line utility as a sub application
"""
global toolVersion
- toolVersion = "1.06"
+ toolVersion = "1.07"
parser = createCommandParser()
args = parser.parse_args(argv)
diff --git a/thalerj/policyTable.json b/thalerj/policyTable.json
index 7e0fe3e..38e1f15 100644
--- a/thalerj/policyTable.json
+++ b/thalerj/policyTable.json
@@ -231,6 +231,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core0||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "0,0",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 0 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core0",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core0||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "0,0",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 0 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core0",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core0||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "0,0",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 0 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core0",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core1": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -273,6 +336,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core10||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "0,10",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 10 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core10",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core10||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "0,10",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 10 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core10",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core10||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "0,10",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 10 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core10",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core11": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -294,6 +420,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core11||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "0,11",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 11 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core11",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core11||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "0,11",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 11 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core11",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core11||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "0,11",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 11 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core11",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core12": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -315,6 +504,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core12||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "0,12",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 12 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core12",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core12||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "0,12",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 12 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core12",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core12||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "0,12",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 12 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core12",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core13": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -336,6 +588,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core13||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "0,13",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 13 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core13",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core13||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "0,13",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 13 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core13",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core13||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "0,13",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 13 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core13",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core14": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -357,6 +672,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core14||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "0,14",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 14 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core14",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core14||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "0,14",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 14 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core14",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core14||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "0,14",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 14 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core14",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core15": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -378,6 +756,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core15||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "0,15",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 15 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core15",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core15||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "0,15",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 15 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core15",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core15||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "0,15",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 15 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core15",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core16": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -399,6 +840,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core16||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "0,16",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 16 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core16",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core16||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "0,16",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 16 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core16",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core16||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "0,16",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 16 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core16",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core17": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -420,6 +924,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core17||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "0,17",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 17 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core17",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core17||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "0,17",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 17 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core17",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core17||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "0,17",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 17 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core17",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core18": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -441,6 +1008,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core18||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "0,18",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 18 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core18",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core18||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "0,18",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 18 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core18",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core18||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "0,18",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 18 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core18",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core19": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -462,6 +1092,132 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core19||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "0,19",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 19 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core19",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core19||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "0,19",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 19 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core19",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core19||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "0,19",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 19 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core19",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core1||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "0,1",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 1 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core1",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core1||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "0,1",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 1 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core1",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core1||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "0,1",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 1 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core1",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core2": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -504,6 +1260,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core20||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "0,20",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 20 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core20",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core20||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "0,20",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 20 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core20",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core20||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "0,20",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 20 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core20",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core21": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -525,6 +1344,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core21||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "0,21",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 21 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core21",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core21||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "0,21",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 21 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core21",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core21||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "0,21",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 21 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core21",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core22": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -546,6 +1428,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core22||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "0,22",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 22 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core22",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core22||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "0,22",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 22 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core22",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core22||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "0,22",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 22 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core22",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core23": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -567,6 +1512,132 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core23||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "0,23",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 23 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core23",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core23||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "0,23",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 23 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core23",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core23||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "0,23",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 23 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core23",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core2||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "0,2",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 2 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core2",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core2||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "0,2",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 2 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core2",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core2||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "0,2",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 2 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core2",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core3": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -588,6 +1659,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core3||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "0,3",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 3 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core3",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core3||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "0,3",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 3 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core3",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core3||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "0,3",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 3 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core3",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core4": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -609,6 +1743,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core4||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "0,4",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 4 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core4",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core4||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "0,4",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 4 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core4",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core4||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "0,4",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 4 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core4",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core5": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -630,6 +1827,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core5||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "0,5",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 5 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core5",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core5||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "0,5",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 5 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core5",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core5||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "0,5",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 5 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core5",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core6": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -651,6 +1911,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core6||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "0,6",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 6 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core6",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core6||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "0,6",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 6 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core6",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core6||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "0,6",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 6 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core6",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core7": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -672,6 +1995,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core7||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "0,7",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 7 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core7",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core7||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "0,7",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 7 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core7",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core7||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "0,7",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 7 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core7",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core8": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -693,6 +2079,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core8||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "0,8",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 8 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core8",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core8||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "0,8",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 8 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core8",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core8||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "0,8",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 8 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core8",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core9": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -714,6 +2163,132 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core9||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "0,9",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 9 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core9",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core9||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "0,9",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 9 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core9",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core9||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "0,9",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 core 9 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0/core9",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0090M",
+ "ComponentInstance": 0,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0095I",
+ "ComponentInstance": 0,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0093G",
+ "ComponentInstance": 0,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 0 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -756,6 +2331,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core0||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "1,0",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 0 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core0",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core0||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "1,0",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 0 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core0",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core0||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "1,0",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 0 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core0",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core1": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -798,6 +2436,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core10||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "1,10",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 10 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core10",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core10||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "1,10",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 10 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core10",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core10||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "1,10",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 10 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core10",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core11": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -819,6 +2520,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core11||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "1,11",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 11 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core11",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core11||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "1,11",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 11 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core11",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core11||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "1,11",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 11 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core11",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core12": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -840,6 +2604,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core12||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "1,12",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 12 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core12",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core12||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "1,12",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 12 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core12",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core12||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "1,12",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 12 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core12",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core13": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -861,6 +2688,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core13||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "1,13",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 13 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core13",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core13||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "1,13",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 13 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core13",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core13||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "1,13",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 13 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core13",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core14": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -882,6 +2772,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core14||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "1,14",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 14 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core14",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core14||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "1,14",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 14 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core14",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core14||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "1,14",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 14 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core14",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core15": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -903,6 +2856,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core15||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "1,15",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 15 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core15",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core15||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "1,15",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 15 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core15",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core15||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "1,15",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 15 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core15",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core16": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -924,6 +2940,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core16||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "1,16",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 16 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core16",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core16||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "1,16",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 16 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core16",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core16||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "1,16",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 16 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core16",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core17": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -945,6 +3024,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core17||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "1,17",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 17 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core17",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core17||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "1,17",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 17 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core17",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core17||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "1,17",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 17 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core17",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core18": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -966,6 +3108,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core18||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "1,18",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 18 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core18",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core18||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "1,18",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 18 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core18",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core18||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "1,18",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 18 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core18",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core19": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -987,6 +3192,132 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core19||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "1,19",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 19 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core19",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core19||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "1,19",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 19 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core19",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core19||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "1,19",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 19 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core19",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core1||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "1,1",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 1 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core1",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core1||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "1,1",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 1 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core1",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core1||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "1,1",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 1 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core1",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core2": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -1029,6 +3360,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core20||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "1,20",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 20 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core20",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core20||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "1,20",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 20 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core20",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core20||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "1,20",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 20 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core20",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core21": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -1050,6 +3444,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core21||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "1,21",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 21 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core21",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core21||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "1,21",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 21 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core21",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core21||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "1,21",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 21 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core21",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core22": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -1071,6 +3528,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core22||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "1,22",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 22 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core22",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core22||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "1,22",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 22 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core22",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core22||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "1,22",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 22 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core22",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core23": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -1092,6 +3612,132 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core23||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "1,23",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 23 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core23",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core23||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "1,23",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 23 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core23",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core23||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "1,23",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 23 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core23",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core2||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "1,2",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 2 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core2",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core2||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "1,2",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 2 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core2",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core2||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "1,2",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 2 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core2",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core3": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -1113,6 +3759,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core3||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "1,3",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 3 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core3",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core3||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "1,3",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 3 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core3",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core3||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "1,3",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 3 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core3",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core4": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -1134,6 +3843,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core4||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "1,4",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 4 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core4",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core4||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "1,4",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 4 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core4",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core4||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "1,4",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 4 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core4",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core5": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -1155,6 +3927,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core5||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "1,5",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 5 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core5",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core5||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "1,5",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 5 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core5",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core5||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "1,5",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 5 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core5",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core6": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -1176,6 +4011,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core6||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "1,6",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 6 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core6",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core6||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "1,6",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 6 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core6",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core6||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "1,6",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 6 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core6",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core7": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -1197,6 +4095,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core7||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "1,7",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 7 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core7",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core7||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "1,7",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 7 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core7",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core7||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "1,7",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 7 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core7",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core8": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -1218,6 +4179,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core8||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "1,8",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 8 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core8",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core8||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "1,8",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 8 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core8",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core8||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "1,8",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 8 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core8",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core9": {
"AffectedLEDs": null,
"AffectedSubsystem": "Processing",
@@ -1239,6 +4263,132 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core9||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0091M",
+ "ComponentInstance": "1,9",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 9 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core9",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core9||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0096I",
+ "ComponentInstance": "1,9",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 9 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core9",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core9||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0094G",
+ "ComponentInstance": "1,9",
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 core 9 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1/core9",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPPU0090M",
+ "ComponentInstance": 1,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0095I",
+ "ComponentInstance": 1,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Processing",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPPU0093G",
+ "ComponentInstance": 1,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "CPU 1 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm0": {
"AffectedLEDs": null,
"AffectedSubsystem": "Memory",
@@ -1260,6 +4410,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm0||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPMA0057M",
+ "ComponentInstance": 0,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 0 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm0",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm0||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0060I",
+ "ComponentInstance": 0,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 0 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm0",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm0||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0059G",
+ "ComponentInstance": 0,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 0 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm0",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm1": {
"AffectedLEDs": null,
"AffectedSubsystem": "Memory",
@@ -1302,6 +4515,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm10||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPMA0057M",
+ "ComponentInstance": 10,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 10 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm10",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm10||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0060I",
+ "ComponentInstance": 10,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 10 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm10",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm10||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0059G",
+ "ComponentInstance": 10,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 10 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm10",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm11": {
"AffectedLEDs": null,
"AffectedSubsystem": "Memory",
@@ -1323,6 +4599,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm11||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPMA0057M",
+ "ComponentInstance": 11,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 11 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm11",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm11||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0060I",
+ "ComponentInstance": 11,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 11 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm11",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm11||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0059G",
+ "ComponentInstance": 11,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 11 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm11",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm12": {
"AffectedLEDs": null,
"AffectedSubsystem": "Memory",
@@ -1344,6 +4683,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm12||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPMA0057M",
+ "ComponentInstance": 12,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 12 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm12",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm12||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0060I",
+ "ComponentInstance": 12,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 12 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm12",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm12||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0059G",
+ "ComponentInstance": 12,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 12 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm12",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm13": {
"AffectedLEDs": null,
"AffectedSubsystem": "Memory",
@@ -1365,6 +4767,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm13||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPMA0057M",
+ "ComponentInstance": 13,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 13 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm13",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm13||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0060I",
+ "ComponentInstance": 13,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 13 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm13",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm13||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0059G",
+ "ComponentInstance": 13,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 13 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm13",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm14": {
"AffectedLEDs": null,
"AffectedSubsystem": "Memory",
@@ -1386,6 +4851,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm14||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPMA0057M",
+ "ComponentInstance": 14,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 14 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm14",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm14||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0060I",
+ "ComponentInstance": 14,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 14 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm14",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm14||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0059G",
+ "ComponentInstance": 14,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 14 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm14",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm15": {
"AffectedLEDs": null,
"AffectedSubsystem": "Memory",
@@ -1407,6 +4935,132 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm15||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPMA0057M",
+ "ComponentInstance": 15,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 15 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm15",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm15||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0060I",
+ "ComponentInstance": 15,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 15 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm15",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm15||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0059G",
+ "ComponentInstance": 15,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 15 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm15",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm1||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPMA0057M",
+ "ComponentInstance": 1,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 1 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm1",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm1||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0060I",
+ "ComponentInstance": 1,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 1 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm1",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm1||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0059G",
+ "ComponentInstance": 1,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 1 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm1",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm2": {
"AffectedLEDs": null,
"AffectedSubsystem": "Memory",
@@ -1428,6 +5082,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm2||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPMA0057M",
+ "ComponentInstance": 2,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 2 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm2",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm2||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0060I",
+ "ComponentInstance": 2,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 2 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm2",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm2||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0059G",
+ "ComponentInstance": 2,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 2 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm2",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm3": {
"AffectedLEDs": null,
"AffectedSubsystem": "Memory",
@@ -1449,6 +5166,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm3||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPMA0057M",
+ "ComponentInstance": 3,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 3 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm3",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm3||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0060I",
+ "ComponentInstance": 3,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 3 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm3",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm3||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0059G",
+ "ComponentInstance": 3,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 3 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm3",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm4": {
"AffectedLEDs": null,
"AffectedSubsystem": "Memory",
@@ -1470,6 +5250,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm4||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPMA0057M",
+ "ComponentInstance": 4,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 4 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm4",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm4||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0060I",
+ "ComponentInstance": 4,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 4 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm4",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm4||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0059G",
+ "ComponentInstance": 4,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 4 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm4",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm5": {
"AffectedLEDs": null,
"AffectedSubsystem": "Memory",
@@ -1491,6 +5334,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm5||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPMA0057M",
+ "ComponentInstance": 5,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 5 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm5",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm5||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0060I",
+ "ComponentInstance": 5,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 5 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm5",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm5||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0059G",
+ "ComponentInstance": 5,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 5 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm5",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm6": {
"AffectedLEDs": null,
"AffectedSubsystem": "Memory",
@@ -1512,6 +5418,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm6||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPMA0057M",
+ "ComponentInstance": 6,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 6 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm6",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm6||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0060I",
+ "ComponentInstance": 6,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 6 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm6",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm6||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0059G",
+ "ComponentInstance": 6,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 6 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm6",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm7": {
"AffectedLEDs": null,
"AffectedSubsystem": "Memory",
@@ -1533,6 +5502,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm7||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPMA0057M",
+ "ComponentInstance": 7,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 7 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm7",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm7||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0060I",
+ "ComponentInstance": 7,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 7 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm7",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm7||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0059G",
+ "ComponentInstance": 7,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 7 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm7",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm8": {
"AffectedLEDs": null,
"AffectedSubsystem": "Memory",
@@ -1554,6 +5586,69 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm8||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPMA0057M",
+ "ComponentInstance": 8,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 8 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm8",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm8||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0060I",
+ "ComponentInstance": 8,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 8 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm8",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm8||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0059G",
+ "ComponentInstance": 8,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 8 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm8",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm9": {
"AffectedLEDs": null,
"AffectedSubsystem": "Memory",
@@ -1575,6 +5670,132 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm9||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPMA0057M",
+ "ComponentInstance": 9,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 9 has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm9",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm9||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0060I",
+ "ComponentInstance": 9,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 9 has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm9",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm9||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Memory",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPMA0059G",
+ "ComponentInstance": 9,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "DIMM 9 has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm9",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard||Critical": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Canister/Appliance",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": true,
+ "CommonEventID": "FQPSPAA0013M",
+ "ComponentInstance": 1,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Unrecoverable Hardware Failure",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "The system backplane has failed",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Critical",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard||Informational": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Canister/Appliance",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPAA0014I",
+ "ComponentInstance": 1,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Recovery",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "The motherboard has recovered from an error",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Information",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "org.open_power.Host.Error.Event||/xyz/openbmc_project/inventory/system/chassis/motherboard||Warning": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Canister/Appliance",
+ "BMCMessageID": "org.open_power.Host.Error.Event",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPAA0013G",
+ "ComponentInstance": 1,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "PFA",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "The system backplane has exceeded a correctable error threshold",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard",
+ "RelatedEventIDs": {},
+ "Serviceable": true,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"org.open_power.Host.Error.MaintenanceProcedure||0": {
"AffectedLEDs": null,
"AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
@@ -5733,6 +9954,111 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "xyz.openbmc_project.Common.Device.Error.ReadFailure||/sys/devices/platform/ahb/ahb:apb/ahb:apb:i2c@1e78a000/1e78a100.i2c-bus/i2c-11/11-0064": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+ "BMCMessageID": "xyz.openbmc_project.Common.Device.Error.ReadFailure",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPCR0059F",
+ "ComponentInstance": null,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Communication Failure/Timeout",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "Failed to read from the power sequencer chip on the motherboard",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "xyz.openbmc_project.Common.Device.Error.ReadFailure||/sys/devices/platform/ahb/ahb:apb/ahb:apb:i2c@1e78a000/1e78a100.i2c-bus/i2c-3/3-0068": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+ "BMCMessageID": "xyz.openbmc_project.Common.Device.Error.ReadFailure",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPCR0060F",
+ "ComponentInstance": 1,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Communication Failure/Timeout",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "Failed to read from power supply 1",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "xyz.openbmc_project.Common.Device.Error.ReadFailure||/sys/devices/platform/ahb/ahb:apb/ahb:apb:i2c@1e78a000/1e78a100.i2c-bus/i2c-3/3-0069": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+ "BMCMessageID": "xyz.openbmc_project.Common.Device.Error.ReadFailure",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPCR0060F",
+ "ComponentInstance": 0,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Communication Failure/Timeout",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "Failed to read from power supply 0",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "xyz.openbmc_project.Common.Device.Error.ReadFailure||/sys/devices/platform/gpio-fsi/fsi0/slave@00:00/00:00:00:0a/fsi1/slave@01:00/raw": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+ "BMCMessageID": "xyz.openbmc_project.Common.Device.Error.ReadFailure",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPCR0062F",
+ "ComponentInstance": 1,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Communication Failure/Timeout",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "Failed to read from CPU 1 over FSI",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "xyz.openbmc_project.Common.Device.Error.ReadFailure||/sys/devices/platform/gpio-fsi/fsi0/slave@00:00/raw": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+ "BMCMessageID": "xyz.openbmc_project.Common.Device.Error.ReadFailure",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPCR0062F",
+ "ComponentInstance": 0,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Communication Failure/Timeout",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "Failed to read from CPU 0 over FSI",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"xyz.openbmc_project.Common.Device.Error.ReadFailure||FSI": {
"AffectedLEDs": null,
"AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
@@ -5775,6 +10101,48 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "xyz.openbmc_project.Common.Device.Error.WriteFailure||/sys/devices/platform/gpio-fsi/fsi0/slave@00:00/00:00:00:0a/fsi1/slave@01:00/raw": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+ "BMCMessageID": "xyz.openbmc_project.Common.Device.Error.WriteFailure",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPCR0061F",
+ "ComponentInstance": 1,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Communication Failure/Timeout",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "Failed to write to CPU 1 over FSI",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "xyz.openbmc_project.Common.Device.Error.WriteFailure||/sys/devices/platform/gpio-fsi/fsi0/slave@00:00/raw": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+ "BMCMessageID": "xyz.openbmc_project.Common.Device.Error.WriteFailure",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPCR0061F",
+ "ComponentInstance": 0,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Communication Failure/Timeout",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "Failed to write to CPU 0 over FSI",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"xyz.openbmc_project.Common.Device.Error.WriteFailure||FSI": {
"AffectedLEDs": null,
"AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
@@ -10842,7 +15210,7 @@
"BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent",
"CallHomeCandidate": true,
"CommonEventID": "FQPSPPW0015M",
- "ComponentInstance": null,
+ "ComponentInstance": 0,
"DateAdded": null,
"DateReviewed": null,
"EventType": "Uncorrectable Hardware Failure",
@@ -10854,7 +15222,7 @@
"RelatedEventIDs": {},
"Serviceable": true,
"Severity": "Critical",
- "UserAction": "Power",
+ "UserAction": null,
"VMMigrationFlag": null
},
"xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1": {
@@ -10863,7 +15231,7 @@
"BMCMessageID": "xyz.openbmc_project.Inventory.Error.NotPresent",
"CallHomeCandidate": true,
"CommonEventID": "FQPSPPW0015M",
- "ComponentInstance": null,
+ "ComponentInstance": 1,
"DateAdded": null,
"DateReviewed": null,
"EventType": "Uncorrectable Hardware Failure",
@@ -10875,7 +15243,7 @@
"RelatedEventIDs": {},
"Serviceable": true,
"Severity": "Critical",
- "UserAction": "Power",
+ "UserAction": null,
"VMMigrationFlag": null
},
"xyz.openbmc_project.Inventory.Error.NotPresent||/xyz/openbmc_project/inventory/system/chassis/power_supply0": {
@@ -12537,6 +16905,279 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/sys/devices/platform/ahb/ahb:apb/ahb:apb:i2c@1e78a000/1e78a100.i2c-bus/i2c-3/3-0052": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+ "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPCR0057F",
+ "ComponentInstance": null,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Communication Failure/Timeout",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "Failed to read from the fan control device on the motherboard",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/sys/devices/platform/ahb/ahb:apb/ahb:apb:i2c@1e78a000/1e78a100.i2c-bus/i2c-3/3-0068": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+ "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPCR0060F",
+ "ComponentInstance": 1,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Communication Failure/Timeout",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "Failed to read from power supply 1",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/sys/devices/platform/ahb/ahb:apb/ahb:apb:i2c@1e78a000/1e78a100.i2c-bus/i2c-3/3-0069": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+ "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPCR0060F",
+ "ComponentInstance": 0,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Communication Failure/Timeout",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "Failed to read from power supply 0",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/sys/devices/platform/ahb/ahb:apb/ahb:apb:i2c@1e78a000/1e78a100.i2c-bus/i2c-3/3-0076": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+ "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPCR0053F",
+ "ComponentInstance": null,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Communication Failure/Timeout",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "Failed to read from the ambient temperature sensor on the motherboard",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/sys/devices/platform/ahb/ahb:apb/ahb:apb:i2c@1e78a000/1e78a100.i2c-bus/i2c-3/3-0077": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+ "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPCR0052F",
+ "ComponentInstance": null,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Communication Failure/Timeout",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "Failed to read from the ambient temperature sensor on the motherboard",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/sys/devices/platform/ahb/ahb:apb/ahb:apb:i2c@1e78a000/1e78a100.i2c-bus/i2c-4/4-0070": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+ "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPCR0054F",
+ "ComponentInstance": 0,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Communication Failure/Timeout",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "Failed to read from the CPU 0 VDD/VCS VRM on the motherboard",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/sys/devices/platform/ahb/ahb:apb/ahb:apb:i2c@1e78a000/1e78a100.i2c-bus/i2c-4/4-0071": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+ "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPCR0055F",
+ "ComponentInstance": 1,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Communication Failure/Timeout",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "Failed to read from the CPU 1 VDN/VDDR VRM on the motherboard",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/sys/devices/platform/ahb/ahb:apb/ahb:apb:i2c@1e78a000/1e78a100.i2c-bus/i2c-5/5-0070": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+ "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPCR0054F",
+ "ComponentInstance": 1,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Communication Failure/Timeout",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "Failed to read from the CPU 1 VDD/VCS VRM on the motherboard",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/sys/devices/platform/ahb/ahb:apb/ahb:apb:i2c@1e78a000/1e78a100.i2c-bus/i2c-9/9-004a": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+ "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPCR0056F",
+ "ComponentInstance": null,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Communication Failure/Timeout",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "Failed to read from the PCIE temperature sensor on the motherboard",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/sys/devices/platform/gpio-fsi/fsi0/slave@00:00/00:00:00:06/sbefifo1-dev0/occ-hwmon.1": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+ "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPCR0063F",
+ "ComponentInstance": 0,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Communication Failure/Timeout",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "Failed to read from the OCC on CPU 0",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/sys/devices/platform/gpio-fsi/fsi0/slave@00:00/00:00:00:06/sbefifo1-dev0/occ1-dev0": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+ "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPCR0063F",
+ "ComponentInstance": 0,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Communication Failure/Timeout",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "Failed to read from the OCC on CPU 0",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu0",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/sys/devices/platform/gpio-fsi/fsi0/slave@00:00/00:00:00:0a/fsi1/slave@01:00/01:01:00:06/sbefifo2-dev0/occ-hwmon.2": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+ "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPCR0063F",
+ "ComponentInstance": 1,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Communication Failure/Timeout",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "Failed to read from the OCC on CPU 1",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
+ "xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/sys/devices/platform/gpio-fsi/fsi0/slave@00:00/00:00:00:0a/fsi1/slave@01:00/01:01:00:06/sbefifo2-dev0/occ2-dev0": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+ "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.ReadFailure",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPCR0063F",
+ "ComponentInstance": 1,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Communication Failure/Timeout",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "Failed to read from the OCC on CPU 1",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard/cpu1",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"xyz.openbmc_project.Sensor.Device.Error.ReadFailure||/xyz/openbmc_project/sensors/fan_tach/fan0_0": {
"AffectedLEDs": null,
"AffectedSubsystem": "Cooling",
@@ -14511,6 +19152,27 @@
"UserAction": null,
"VMMigrationFlag": null
},
+ "xyz.openbmc_project.Sensor.Device.Error.WriteFailure||/sys/devices/platform/ahb/ahb:apb/ahb:apb:i2c@1e78a000/1e78a100.i2c-bus/i2c-3/3-0052": {
+ "AffectedLEDs": null,
+ "AffectedSubsystem": "Systems Management - Core / Virtual Appliance",
+ "BMCMessageID": "xyz.openbmc_project.Sensor.Device.Error.WriteFailure",
+ "CallHomeCandidate": false,
+ "CommonEventID": "FQPSPCR0058F",
+ "ComponentInstance": null,
+ "DateAdded": null,
+ "DateReviewed": null,
+ "EventType": "Communication Failure/Timeout",
+ "Internal": false,
+ "LengthyDescription": null,
+ "LogSource": "BMC",
+ "Message": "Failed to write to the fan control device on the motherboard",
+ "ReferencedInventory": "/xyz/openbmc_project/inventory/system/chassis/motherboard",
+ "RelatedEventIDs": {},
+ "Serviceable": false,
+ "Severity": "Warning",
+ "UserAction": null,
+ "VMMigrationFlag": null
+ },
"xyz.openbmc_project.Sensor.Device.ReadFailure||/xyz/openbmc_project/sensors/current/ps0_output_current": {
"AffectedLEDs": null,
"AffectedSubsystem": "Power",
@@ -17181,7 +21843,7 @@
},
"fileInfo": {
"Entity": "IBM OpenBMC",
- "Version": "1.7.2",
+ "Version": "1.7.3",
"language": "English"
}
}
\ No newline at end of file