commit | da369c792c06204a7e74ae56da3dcc741567f9ed | [log] [tgz] |
---|---|---|
author | Brandon Wyman <bjwyman@gmail.com> | Fri Oct 08 18:43:30 2021 +0000 |
committer | Shawn McCarney <shawnmm@us.ibm.com> | Thu Oct 28 17:22:41 2021 +0000 |
tree | 7bb7b9042f8985ac401e3ca50c47eda97bd41790 | |
parent | b85b9dded072889faf937e29af32b2600dcc8d64 [diff] |
psu-ng: Use a separate map for required PSUs data Use a different map for collecting the additional error data from the hasRequiredPSUs() check, to avoid polluting other faults with data collected from that call. Only make the hasRequiredPSUs() call if a power supply is seen as not present, to avoid needlessly calling it every time the analyze() function is called. If there is a power supply detected as not present, then merge the data into the additionalData. Tested: Verified comm fault error details did not include additional data. Prior to change, doubled up PSU call out, and expected/actual count. Change-Id: Ib3fb125b56a74d3b70136897c007fd077306716f Signed-off-by: Brandon Wyman <bjwyman@gmail.com>
This repository contains applications for configuring and monitoring devices that deliver power to the system.
To build all applications in this repository:
meson 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/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", }