commit | ce1aaddda1d926711e31c4c944a75fbd8719b9e0 | [log] [tgz] |
---|---|---|
author | Shawn McCarney <shawnmm@us.ibm.com> | Thu Jun 27 12:59:33 2024 -0500 |
committer | Shawn McCarney <shawnmm@us.ibm.com> | Thu Jun 27 13:40:11 2024 -0500 |
tree | 3fe22fa60cff44be8a16bd346f1c242bf3c331e4 | |
parent | 16275831b63e2df21eed140b26810f9591b00c35 [diff] |
pseq: Update STATUS_VOUT checks in config files Update the phosphor-power-sequencer JSON configuration files for the following systems: * Rainier * BlueRidge * Everest * Fuji Add STATUS_VOUT checking for voltage rails connected to digital monitors (DMONs) on the UCD90320 power sequencer. Checking STATUS_VOUT is more accurate than other methods in some scenarios. Also remove STATUS_VOUT and READ_VOUT checking for the PSU rails on Everest and Fuji. PMBus information is not available for the PSU rail due to the way it is configured in the power sequencer device. Change-Id: If5e630b2c17e0a34e240b1df512a9662a5370289 Signed-off-by: Shawn McCarney <shawnmm@us.ibm.com>
This repository contains applications for configuring and monitoring devices that deliver power to the system.
To build all applications in this repository:
meson setup 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", }