commit | 43d3263ca782c5894b7bd7fc48bdd1e956e574a6 | [log] [tgz] |
---|---|---|
author | Brandon Wyman <bjwyman@gmail.com> | Tue Oct 26 23:44:11 2021 +0000 |
committer | Brandon Wyman <bjwyman@gmail.com> | Fri Oct 29 21:15:45 2021 +0000 |
tree | 3b96ebb59911ebae9975d6996167b4a15661d4e4 | |
parent | 6710ba2cc776dc9e4306807f4f586c22822100b4 [diff] |
psu-ng: Change fault traces from INFO to ERR Having fault bits on in the various PMBus STATUS_* commands responses is basically bad, an error. Change the journal tracing from log<level::INFO> to log<level::ERR>. Tested: Verified that tracing for power supply fault bits is red. Tested CML fault, INPUT fault, and VOUT faults. Change-Id: If3efda267799630b1bb560347392b03ca73a79f1 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", }