commit | cfe788bdd48e7d4c1c86358c066023555231f5f4 | [log] [tgz] |
---|---|---|
author | George Liu <liuxiwei@ieisystem.com> | Mon Aug 05 14:16:32 2024 +0800 |
committer | George Liu <liuxiwei@ieisystem.com> | Tue Aug 06 09:31:02 2024 +0800 |
tree | c35f1a15ca255b5f5001874a06d0bcf95aa6e3dc | |
parent | 5119d963fc6f868d0ec08b92b1e90e86444e717f [diff] |
README.md: Fix MD040 warnings The following warnings are generated by using markdownlint analysis: ``` MD040/fenced-code-language Fenced code blocks should have a language specified [Context: "```"] ``` Refer to markdown-lint [1] to fix MD040 [1]: https://github.com/updownpress/markdown-lint/blob/master/rules/040-fenced-code-language.md Signed-off-by: George Liu <liuxiwei@ieisystem.com> Change-Id: I51aa5398d1be503d8db7af666312e7d30348b56d
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