commit | 925c3edccffa1a8d9baeb806da56a8709e57f705 | [log] [tgz] |
---|---|---|
author | Zane Shelley <zshelle@us.ibm.com> | Fri Apr 14 13:42:22 2023 -0500 |
committer | Zane Shelley <zshelle@us.ibm.com> | Fri Apr 14 14:47:26 2023 -0500 |
tree | 386bc4dbb7cc819711dd783c8543df04bb7d7a91 | |
parent | a8658733bc6ab33cc949829f92162a09057f18d9 [diff] |
Rename chip data attention types to be more descriptive Instead of CS, UCS, RE, SPA, and HA, using CHIP_CS, UNIT_CS, RECOV, SP_ATTN, and HOST_ATTN. This is mostly in an effort to clarify a chip checkstop is not necessarily a system checkstop. Notice that I didn't change any of the register names for P10 or Explorer. This is to prevent the inevitable code level mismatches between drivers and the peltool parsers used to parse field data. Signed-off-by: Zane Shelley <zshelle@us.ibm.com> Change-Id: I35698b7a1b9d3bbefeb1ccc7ccc242890fe221f3
This library is a common, portable code base for isolating errors reported by hardware registers on POWER Systems chips.
The primary consumers (and requirements drivers) will be:
See the primary API definitions for details on how to use this library.
This library can be integrated into a user application's source (either imported, or as a git subtree/submodule) or built as static library.
__HEI_ENABLE_HW_WRITE
: When defined, it will allow hardware write support. Note that the Chip Data Files will contain rules for clearing and masking register bits. Both of which will require modifying hardware registers, which is not allowed by user applications like OpenBMC or FSP firmware.src/include/
in the POWER Systems Hostboot firmware.For a standard OpenBMC release build, you want something like:
meson -Dtests=disabled <build_dir> ninja -C <build_dir> ninja -C <build_dir> install
For a test / debug build, a typical configuration is:
meson -Dtests=enabled <build_dir> ninja -C <build_dir> test