commit | a0a39f82d8299ab4959d1765d56ba614c36236eb | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Fri Aug 16 15:20:19 2024 -0400 |
committer | Patrick Williams <patrick@stwcx.xyz> | Fri Aug 16 15:20:19 2024 -0400 |
tree | c5ae96b936fdcc86002ef65ad703d6fe67e5f9e1 | |
parent | 1cc7921fb3229ee61c3162c2b6cbc8db1231cb34 [diff] |
clang-format: re-format for clang-18 clang-format-18 isn't compatible with the clang-format-17 output, so we need to reformat the code with the latest version. The way clang-18 handles lambda formatting also changed, so we have made changes to the organization default style format to better handle lambda formatting. See I5e08687e696dd240402a2780158664b7113def0e for updated style. See Iea0776aaa7edd483fa395e23de25ebf5a6288f71 for clang-18 enablement. Change-Id: I474dc261d5698b702bab7b9305c1d6958f43d40f 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.