commit | 33d492f47572a6f396a2e7eda123a4cb81cd9094 | [log] [tgz] |
---|---|---|
author | Brandon Wyman <bjwyman@gmail.com> | Wed Mar 23 20:45:17 2022 +0000 |
committer | Shawn McCarney <shawnmm@us.ibm.com> | Thu Mar 24 16:35:43 2022 +0000 |
tree | 6285deb1e89974ab4bd861b499ea9001df05e96c | |
parent | 90d529af3767b371b440faee6550ded96d5cf416 [diff] |
psu-ng: Do not add trailing \0 to VINI SN The SerialNumber property in the asset decorator properties has the correct length, but for some reason a null (\0) was added to the end of the value we send out to the VINI SN property. Doing this results in an incorrect VPD data length. Tested: Built fully p10bmc image, flashed to Rainier 2S2U. Used busctl introspect to examine powersupply properties. Powered on system Used PHYP macro to verifyvpd Change-Id: Id82014c656161bb5e59b2216d7da80c09c3c7f29 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", }