commit | 84807b96facd36d4fbf93c16fe1f6ee9988dc4cf | [log] [tgz] |
---|---|---|
author | Shawn McCarney <shawnmm@us.ibm.com> | Thu Apr 30 18:40:03 2020 -0500 |
committer | Shawn McCarney <shawnmm@us.ibm.com> | Thu Apr 30 18:40:03 2020 -0500 |
tree | e43080d7aea189c2f8e55fbb013f34e679182387 | |
parent | 46b5e6934505090d9a251118ebbdcb02a3e044ff [diff] |
regulators: Temporarily hard-code config file name The JSON configuration file name for the current system will be obtained from a D-Bus interface and property. That interface will be provided by the EntityManager application. Unfortunately the interface is not yet completely defined or implemented. While waiting for this interface to be completed, a hard-coded JSON config file name will be used. This is expected to be a very short-term solution (a few weeks). Signed-off-by: Shawn McCarney <shawnmm@us.ibm.com> Change-Id: Id1d29ad704860f02e804877489915d16aac70b90
Code for detecting and analyzing power faults on Witherspoon.
To build this package, do the following steps: 1. meson build 2. ninja -C build To clean the repository again run `rm -rf build`.
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", }