commit | 97224eda6bcf2bf5689159ef1f8ff2c576cd7ccf | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Fri Oct 20 11:20:23 2023 -0500 |
committer | Patrick Williams <patrick@stwcx.xyz> | Fri Oct 20 11:20:23 2023 -0500 |
tree | ad46bcde14f725eb17c97fab76cdb4ac61a56f0a | |
parent | 44abfcc72cfe39909a048ced9e761b09dc93a65f [diff] |
clang-format: copy latest and re-format clang-format-17 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: I8c1f62e41ce38b2bfab7dbd6f3bea675772fda00 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