commit | b3ba516f3f418b9b1a98d4bd27210799383262b2 | [log] [tgz] |
---|---|---|
author | Shawn McCarney <shawnmm@us.ibm.com> | Tue Nov 30 22:16:58 2021 -0600 |
committer | Shawn McCarney <shawnmm@us.ibm.com> | Tue Nov 30 23:16:16 2021 -0600 |
tree | a3df637ad7620319d4b7c4c2e8660d319b36e1c3 | |
parent | 7ee4d7e41d301c99cef377028264124fe35b7baa [diff] |
regulators: Enhance additional error data capture Enhance the additional error data capture support to allow the same register to be captured multiple times. The additional error data is stored as key/value pairs. The key format is normally: <deviceID>_register_<register> For example, "vdd1_register_0x7A". If the same register is captured multiple times, a counter is appended to make the key unique. For example, "vdd1_register_0x7A_2". One use case for capturing the same register multiple times is when a voltage regulator produces multiple rails. It may be necessary to do the following: * Set the PMBus PAGE to 0 * Capture a register for the first rail * Set the PMBus PAGE to 1 * Capture the same register again for the second rail Signed-off-by: Shawn McCarney <shawnmm@us.ibm.com> Change-Id: I55c3e071b4b60e103f1de5778ede58b032ea29da
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", }