commit | 7e49527c2786c6b5d5e661d1bcb883ed065c0ec3 | [log] [tgz] |
---|---|---|
author | Brandon Wyman <bjwyman@gmail.com> | Sat Sep 26 19:57:46 2020 -0500 |
committer | Brandon Wyman <bjwyman@gmail.com> | Tue Oct 06 13:22:10 2020 -0500 |
tree | ceb6f99eb543f43b171c7b5a688a565555cae8ae | |
parent | 63ea78b948b196915cf665f6a8cdb9a3fd757224 [diff] |
psu-ng: Add accessor to get the inventory path When creating errors, the inventory path may be needed for some of the call outs. Signed-off-by: Brandon Wyman <bjwyman@gmail.com> Change-Id: I545aae603478e43909620b087c57ccd4b69d3eef
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", }