commit | 5135df6333f7f2a8b328f148c6443727e15b7873 | [log] [tgz] |
---|---|---|
author | Shawn McCarney <shawnmm@us.ibm.com> | Wed Apr 28 15:53:24 2021 -0500 |
committer | Shawn McCarney <shawnmm@us.ibm.com> | Thu Apr 29 00:32:23 2021 -0500 |
tree | f662d0d8aad98c79d2c40871d835d1be8c1bed56 | |
parent | 8279a11d6485071cfd519e5b280a9039114eb141 [diff] |
regulators: Remove SensorReading data type Remove the SensorReading data type defined in pmbus_utils.hpp and used in several locations. This data type is no longer needed. The original design was for sensor readings to be accumulated in the ActionEnvironment while the PMBus actions were being executed. Then all the sensor readings for a voltage rail would be published on D-Bus at the same time. The current design is for sensor readings to be immediately published on D-Bus as they are read using the new Sensors service. They no longer need to be accumulated in the ActionEnvironment. Signed-off-by: Shawn McCarney <shawnmm@us.ibm.com> Change-Id: Ib61a07b5a7f58be3e2dae540ffb4d5128636b7c0
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", }