| commit | bba4223af822970f36540c2ff33d8913f15f22e6 | [log] [tgz] |
|---|---|---|
| author | Jayanth Othayoth <ojayanth@gmail.com> | Wed Dec 31 08:09:40 2025 -0600 |
| committer | Jayanth Othayoth <ojayanth@gmail.com> | Wed Dec 31 08:28:29 2025 -0600 |
| tree | c48aad579f4e6adb1f94da069cd99e4d1efdeb33 | |
| parent | e9aaf13e4daac6d139567781f6149ad0001f8eeb [diff] |
clang-tidy: Initial commit Added initial .clang-tidy configuration file with recommended C++ checks aligned with the OpenBMC-approved checklist. This setup enforces modern C++ best practices and helps catch common issues early in development. Change-Id: I1ab2f8f0501025179dbb74713989a768c638f46c Signed-off-by: Jayanth Othayoth <ojayanth@gmail.com>
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