commit | 93ee416a215a0f13e310a0b785b81a24fd08fb1a | [log] [tgz] |
---|---|---|
author | Shawn McCarney <shawnmm@us.ibm.com> | Thu Jul 09 00:11:46 2020 -0500 |
committer | Shawn McCarney <shawnmm@us.ibm.com> | Mon Aug 24 18:31:15 2020 +0000 |
tree | f213da8b5ee649f3175cd7fc194b049cdd95bc44 | |
parent | 8e2294dc8aaac8e00c273cc9cc1132fa780c6a7e [diff] |
regulators: Create high level design document Create a high level design document for the phosphor-regulators application. Summarize the high level algorithms and key C++ classes. The low level design is documented in doxygen comments in the source files. Signed-off-by: Shawn McCarney <shawnmm@us.ibm.com> Change-Id: I4f57063b2d4516da06a1f063ef83bb7ca92788bf
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", }