commit | fe5b5c665461ca67c6cfc543b96a35407e898f94 | [log] [tgz] |
---|---|---|
author | Faisal Awada <faisal@us.ibm.com> | Sat Mar 22 10:50:01 2025 -0500 |
committer | Faisal Awada <faisal@us.ibm.com> | Fri Mar 28 14:56:20 2025 -0500 |
tree | 2a8cfc996776dea42217be6c51b8f7e2f37699e4 | |
parent | 57fb664c133d31a1f094441f29f30552004bb487 [diff] |
psutil: Add PSU update validation logic This commit adds the PSUUpdateValidator class implementation which validates whether it is safe to proceed with a PSU firmware update based on current system state. It verifies the following: - All present PSUs match the model of the target PSU - Count the number of present PSUs in the system - Ensure that the number of PSUs currently present, none faulty and all of the same model, is sufficient to meet the PSU requirement specified in the system configuration This validator fetches PSU inventory paths, properties such as 'SupportedModel' and 'RedundantCount', and checks the PSU presence and not faulty via D-Bus. The method `validToUpdate()` encapsulates the overall logic, returning true if all criteria for a safe update are met. This class is designed to be integrated before triggering PSU updates to ensure system safety. Tested: - Ran psutils with --validate on powered-on system, verified update blocked - Ran psutils with simulated PSUs of mismatched models, verified update blocked - Ran with matching models and sufficient present PSUs, verified update succeeded Change-Id: I367ef6d1b2cd66e8209f6b67a325de2b1a6da12a Signed-off-by: Faisal Awada <faisal@us.ibm.com>
This repository contains applications for configuring and monitoring devices that deliver power to the system.
Actively-maintained applications:
Legacy applications:
To build all applications in this repository:
meson setup build ninja -C build
To clean the repository and remove all build output:
rm -rf build
You can specify meson options to customize the build process. For example, you can specify:
Several applications in this repository require a PSU JSON config to run. The JSON config file provides information for:
There is an example psu.json to describe the necessary configurations.
inventoryPMBusAccessType
defines the pmbus access type, which tells the service which sysfs type to use to read the attributes. The possible values are:
/sys/bus/i2c/devices/3-0069/
/sys/bus/i2c/devices/3-0069/hwmon/hwmonX/
/sys/kernel/debug/pmbus/hwmonX/
/sys/kernel/debug/<driver>.<instance>/
/sys/kernel/debug/pmbus/hwmonX/cffps1/
fruConfigs
defines the mapping between the attribute file and the FRU inventory interface and property. The configuration example below indicates that the service will read part_number
attribute file from a directory specified by the above pmbus access type, and assign to PartNumber
property in xyz.openbmc_project.Inventory.Decorator.Asset
interface.
"fruConfigs": [ { "propertyName": "PartNumber", "fileName": "part_number", "interface": "xyz.openbmc_project.Inventory.Decorator.Asset" } ]
psuDevices
defines the kernel device dir for each PSU in inventory. The configuration example below indicates that powersupply0
's device is located in /sys/bus/i2c/devices/3-0069
.
"psuDevices": { "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0" : "/sys/bus/i2c/devices/3-0069", }