commit | 2f7537db1e0819814be85a9c79dae7446785e1ce | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Wed May 10 07:51:39 2023 -0500 |
committer | Patrick Williams <patrick@stwcx.xyz> | Wed May 10 07:51:39 2023 -0500 |
tree | 2a300e4ef3fff875e0d514b06f7b17abbcfa278f | |
parent | 925c3edccffa1a8d9baeb806da56a8709e57f705 [diff] |
clang-format: copy latest and re-format clang-format-16 has some backwards incompatible changes that require additional settings for best compatibility and re-running the formatter. Copy the latest .clang-format from the docs repository and reformat the repository. Change-Id: Icd194181395c93ad4486785aec752f2096a00ea7 Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
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