commit | 58e379d1bf271707733a595238530e2e2e77ad86 | [log] [tgz] |
---|---|---|
author | Matt Simmering <matthew.simmering@intel.com> | Fri Sep 23 14:45:50 2022 -0700 |
committer | Matt Simmering <matthew.simmering@intel.com> | Wed Oct 05 08:50:05 2022 -0700 |
tree | 5f9df9ce2dc173d03bf6a6c77998afaf8ca45a98 | |
parent | 461a166a6a3aa172691a7468476ab028a915f55a [diff] |
Add option to ignore soft resets before POST In some cases it is expected that the host will send a soft reset. This can overwrite previous power state changes which we may want to keep. Tested: Set restore policy to always on. AC cycle system. Check restart cause is always on, and not overwritten as soft reset Once host has posted, do warm reset through host and check that restart cause is soft reset. Change-Id: I0bd861f25680a11fc2e7eb77088f3009bcf8b03b Signed-off-by: Matt Simmering <matthew.simmering@intel.com>
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:
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.