commit | 539b608f4a79cd48d2a41830f4ac535643573e95 | [log] [tgz] |
---|---|---|
author | Jim Wright <jlwright@us.ibm.com> | Mon Aug 02 14:50:23 2021 -0500 |
committer | Shawn McCarney <shawnmm@us.ibm.com> | Wed Aug 11 20:52:57 2021 +0000 |
tree | ca89d2fdcc0c1cdda3caae70d6f85411784012e5 | |
parent | 7e2a549eb6094fe9383aaef2b3992c4cf12f9489 [diff] |
pseq: Begin power control implementation Fill in the power control main method. Introduce the power control class and header file. Introduce the power good polling loop. Update meson file to support. Signed-off-by: Jim Wright <jlwright@us.ibm.com> Change-Id: I9a5f9d71a65fa4916c701e3aad334be2989b1b16
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", }