commit | 03a25f1bc90068208f555e0244c67e9a2f35791a | [log] [tgz] |
---|---|---|
author | Shawn McCarney <shawnmm@us.ibm.com> | Sat Apr 24 17:02:04 2021 -0500 |
committer | Shawn McCarney <shawnmm@us.ibm.com> | Tue Apr 27 14:07:23 2021 -0500 |
tree | 041d5a7f31c932fd2a4f93bbd2e571d293966d98 | |
parent | 837ece7cdfb2654da19f91612e064041cb7bcce9 [diff] |
regulators: Create DBusSensors class Create the DBusSensors class. This is a concrete implementation of the Sensors abstract base class. This class manages all the voltage regulator sensors in the system. Also add a lastUpdateTime data member to the DBusSensor class. This data member is set whenever the sensor is updated. This enables the DBusSensors class to detect sensors that were not updated during the current monitoring cycle. Sensors that were not updated during the current monitoring cycle are deleted. These sensors were likely produced by a hardware device that was removed or replaced with a different version. Tested: * Ran through entire monitoring cycle multiple times * Tested that lastUpdateTime is set correctly when a sensor is modified * Sensor value updated * Sensor disabled * Sensor put in error state * Tested where new sensor was created * Tested where existing sensor was updated * Tested where all sensors disabled * Tested where all sensors for a rail put in error state * Tested where sensors removed due to not being updated this cycle * Tested where D-Bus exception occurs when trying to create a sensor * See complete test plan at https://gist.github.com/smccarney/69efb813c0005571aee687f67e489278 Signed-off-by: Shawn McCarney <shawnmm@us.ibm.com> Change-Id: Ib1fc399f100188cc048ac3ab5892117b74f844e9
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", }