commit | 8acaf5479240ac0e4e35bec76db217d67fd0baa2 | [log] [tgz] |
---|---|---|
author | Shawn McCarney <shawnmm@us.ibm.com> | Tue Mar 30 10:38:37 2021 -0500 |
committer | Shawn McCarney <shawnmm@us.ibm.com> | Tue Apr 06 18:20:54 2021 +0000 |
tree | d0abc1dc30bbbed03b0ae8ae4f7688f60a9e950c | |
parent | 572a905143f61e6456bb7713dee8b01a4948e196 [diff] |
regulators: Wait for compatible system types There are two options for naming the JSON configuration file: 1. Default name 2. Name based on compatible system types provided by EntityManager If option #2 is used, there is no guarantee that EntityManager will have published the compatible systems types on D-Bus before a boot is attempted. This is not common, but the problem has occurred. When the boot begins, the regulators application configures the voltage regulators. If the config file has not been found and loaded, this configuration cannot occur. This commit enhances the regulators application to wait for EntityManager to publish the compatible systems information during the boot so that the regulators can be configured. A maximum wait time is enforced to prevent the boot from being blocked indefinitely. If this maximum wait time is reached, a critical error is logged indicating that the voltage regulators could not be configured. Tested: * System types available before boot * Have to wait for system types during boot * System types found within 5 minutes * System types not found within 5 minutes * For complete test plan details, see https://gist.github.com/smccarney/b059a5f4da1a9138af770217cbafaea3 Signed-off-by: Shawn McCarney <shawnmm@us.ibm.com> Change-Id: I700a376b94603f36defd1fe266c0a2d7e2a9d30b
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", }