commit | 31ae6ee8c0e17f121e5cb3e581361296d69fdf2d | [log] [tgz] |
---|---|---|
author | Anwaar Hadi <anwaar.hadi@ibm.com> | Thu May 15 17:12:26 2025 +0000 |
committer | Anwaar Hadi <anwaar.hadi@ibm.com> | Tue May 20 22:42:01 2025 +0000 |
tree | d436b4c4ea948cbda4dc93220a1ed47d2ffeb5aa | |
parent | 1f0193ff4fbddf4908cfa2c967c493100b37c0b7 [diff] |
Move phosphor-power-sequencer to lg2 Update the logging API for files in phosphor-power-sequencer from the older phosphor::logging::log style of journal traces to the newer lg2::log style. Tested: * Verified journal traces worked correctly in simulation. * Temporarily modified code to force error message, and verified presence of error message in journalctl output. Change-Id: I1e4fe0b1a5900f2d1403a6a1e09729840af9cd59 Signed-off-by: Anwaar Hadi <anwaar.hadi@ibm.com>
This repository contains applications for configuring and monitoring devices that deliver power to the system.
Actively-maintained applications:
Legacy applications:
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/<driver>.<instance>/
/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", }