commit | 85e87e3843ad98b6343571ce99925f35871ace5c | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Wed Dec 18 11:20:49 2024 -0500 |
committer | Patrick Williams <patrick@stwcx.xyz> | Wed Dec 18 11:20:49 2024 -0500 |
tree | 01b892199d5e2662bc9529460540b0ee46e8bac9 | |
parent | 05e8ea8e3c834f2bd029647930dd8c139486bada [diff] |
clang-format: re-format for clang-19 clang-format-19 isn't compatible with the clang-format-18 output, so we need to reformat the code with the latest version. A few parameters in clang-tidy have been deprecated, so adjust the style file accordingly. See Ie2f6eb3b043f2d655c9df806815afd7971fd0947 for updated style. See I88192b41ab7a95599a90915013579608af7bc56f for clang-19 enablement. Change-Id: I3eef9bbba94886ce2995f0b94764ff8e5a4fd87a Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
This repository contains an OpenBMC compliant implementation of power control for x86 servers. It relies on a number of features to do its job. It has several intentional design goals.
This daemon has been successfully used on a variety of server platforms; it should be able to support platforms with power control GPIOs similar to those in its config file.
x86-power-control uses default json file (power-config-host0.json) for GPIO configuration. However this can be customized by producing your own power-config-host0.json file.
Definitions can be configured by two type: GPIO and DBUS
For the platform having direct GPIO access can use the type GPIO and define like below.
{ "Name": "PostComplete", "LineName": "POST_COMPLETE", "Type": "GPIO" }
For the platform not having direct GPIO access can use dbus based event monitor by using the type DBUS.
{ "Name": "PowerButton", "DbusName": "xyz.openbmc_project.Chassis.Event", "Path": "/xyz/openbmc_project/Chassis/Event", "Interface": "xyz.openbmc_project.Chassis.Event", "Property": "PowerButton_Host1", "Type": "DBUS" }
x86-power-control will monitor the property change from the given DbusName and take appropriate action. *define Property as a bool variable.
Caveats: This implementation does not currently implement the common targets that other implementations do. There were several attempts to, but all ended in timing issues and boot inconsistencies during stress operations.
Enable chassis system power reset to allow removing power and restoring back.
The POST Complete GPIO is usually held asserted by BIOS after POST complete and de-asserts on reset. This de-assert behavior is currently used to detect warm resets.
Some systems are adding support for a PLT_RST eSPI signal that can be used to more accurately detect warm resets. When this option is enabled, x86-power-control will use PLT_RST to detect warm resets instead of POST Complete.
See https://github.com/Intel-BMC/host-misc-comm-manager for implementation example.