Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Brandon Wyman | c332442 | 2022-03-24 20:30:57 +0000 | [diff] [blame] | 3 | #include "average.hpp" |
| 4 | #include "maximum.hpp" |
Brandon Wyman | 8d19577 | 2020-01-27 15:03:51 -0600 | [diff] [blame] | 5 | #include "pmbus.hpp" |
Brandon Wyman | c332442 | 2022-03-24 20:30:57 +0000 | [diff] [blame] | 6 | #include "record_manager.hpp" |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 7 | #include "types.hpp" |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 8 | #include "util.hpp" |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 9 | #include "utility.hpp" |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 10 | |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 11 | #include <gpiod.hpp> |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 12 | #include <sdbusplus/bus/match.hpp> |
| 13 | |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 14 | #include <filesystem> |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 15 | #include <stdexcept> |
| 16 | |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 17 | namespace phosphor::power::psu |
| 18 | { |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 19 | |
Chanh Nguyen | c12c53b | 2021-04-06 17:24:47 +0700 | [diff] [blame] | 20 | #if IBM_VPD |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 21 | // PMBus device driver "file name" to read for CCIN value. |
| 22 | constexpr auto CCIN = "ccin"; |
| 23 | constexpr auto PART_NUMBER = "part_number"; |
| 24 | constexpr auto FRU_NUMBER = "fru"; |
| 25 | constexpr auto SERIAL_HEADER = "header"; |
| 26 | constexpr auto SERIAL_NUMBER = "serial_number"; |
| 27 | constexpr auto FW_VERSION = "fw_version"; |
| 28 | |
| 29 | // The D-Bus property name to update with the CCIN value. |
| 30 | constexpr auto MODEL_PROP = "Model"; |
| 31 | constexpr auto PN_PROP = "PartNumber"; |
Brandon Wyman | a169b0f | 2021-12-07 20:18:06 +0000 | [diff] [blame] | 32 | constexpr auto SPARE_PN_PROP = "SparePartNumber"; |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 33 | constexpr auto SN_PROP = "SerialNumber"; |
| 34 | constexpr auto VERSION_PROP = "Version"; |
| 35 | |
| 36 | // ipzVPD Keyword sizes |
| 37 | static constexpr auto FL_KW_SIZE = 20; |
| 38 | #endif |
| 39 | |
Brandon Wyman | f65c406 | 2020-08-19 13:15:53 -0500 | [diff] [blame] | 40 | constexpr auto LOG_LIMIT = 3; |
Brandon Wyman | 06ca459 | 2021-12-06 22:52:23 +0000 | [diff] [blame] | 41 | constexpr auto DEGLITCH_LIMIT = 3; |
Brandon Wyman | f65c406 | 2020-08-19 13:15:53 -0500 | [diff] [blame] | 42 | |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 43 | /** |
| 44 | * @class PowerSupply |
| 45 | * Represents a PMBus power supply device. |
| 46 | */ |
| 47 | class PowerSupply |
| 48 | { |
| 49 | public: |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 50 | PowerSupply() = delete; |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 51 | PowerSupply(const PowerSupply&) = delete; |
| 52 | PowerSupply(PowerSupply&&) = delete; |
| 53 | PowerSupply& operator=(const PowerSupply&) = delete; |
| 54 | PowerSupply& operator=(PowerSupply&&) = delete; |
| 55 | ~PowerSupply() = default; |
| 56 | |
| 57 | /** |
Brandon Wyman | c63941c | 2020-01-27 16:49:33 -0600 | [diff] [blame] | 58 | * @param[in] invpath - String for inventory path to use |
| 59 | * @param[in] i2cbus - The bus number this power supply is on |
| 60 | * @param[in] i2caddr - The 16-bit I2C address of the power supply |
Brandon Wyman | c332442 | 2022-03-24 20:30:57 +0000 | [diff] [blame] | 61 | * @param[in] driver - i2c driver name for power supply |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 62 | * @param[in] gpioLineName - The gpio-line-name to read for presence. See |
| 63 | * https://github.com/openbmc/docs/blob/master/designs/device-tree-gpio-naming.md |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 64 | */ |
Brandon Wyman | c63941c | 2020-01-27 16:49:33 -0600 | [diff] [blame] | 65 | PowerSupply(sdbusplus::bus::bus& bus, const std::string& invpath, |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 66 | std::uint8_t i2cbus, const std::uint16_t i2caddr, |
Brandon Wyman | c332442 | 2022-03-24 20:30:57 +0000 | [diff] [blame] | 67 | const std::string& driver, const std::string& gpioLineName); |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 68 | |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 69 | phosphor::pmbus::PMBusBase& getPMBus() |
| 70 | { |
| 71 | return *pmbusIntf; |
| 72 | } |
| 73 | |
Adriana Kobylak | 3ca062a | 2021-10-20 15:27:23 +0000 | [diff] [blame] | 74 | GPIOInterfaceBase* getPresenceGPIO() |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 75 | { |
| 76 | return presenceGPIO.get(); |
| 77 | } |
| 78 | |
B. J. Wyman | d8b8cb1 | 2021-07-15 22:03:34 +0000 | [diff] [blame] | 79 | std::string getPresenceGPIOName() const |
| 80 | { |
| 81 | if (presenceGPIO != nullptr) |
| 82 | { |
| 83 | return presenceGPIO->getName(); |
| 84 | } |
| 85 | else |
| 86 | { |
| 87 | return std::string(); |
| 88 | } |
| 89 | } |
| 90 | |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 91 | /** |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 92 | * Power supply specific function to analyze for faults/errors. |
| 93 | * |
| 94 | * Various PMBus status bits will be checked for fault conditions. |
| 95 | * If a certain fault bits are on, the appropriate error will be |
| 96 | * committed. |
| 97 | */ |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 98 | void analyze(); |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 99 | |
| 100 | /** |
Brandon Wyman | 59a3579 | 2020-06-04 12:37:40 -0500 | [diff] [blame] | 101 | * Write PMBus ON_OFF_CONFIG |
| 102 | * |
| 103 | * This function will be called to cause the PMBus device driver to send the |
| 104 | * ON_OFF_CONFIG command. Takes one byte of data. |
| 105 | * |
| 106 | * @param[in] data - The ON_OFF_CONFIG data byte mask. |
| 107 | */ |
| 108 | void onOffConfig(uint8_t data); |
| 109 | |
| 110 | /** |
Brandon Wyman | e3f7ad2 | 2021-12-21 20:27:45 +0000 | [diff] [blame] | 111 | * Clears all the member variables that indicate if a fault bit was seen as |
| 112 | * on in the STATUS_WORD or STATUS_MFR_SPECIFIC response. |
| 113 | */ |
| 114 | void clearFaultFlags() |
| 115 | { |
Brandon Wyman | c2906f4 | 2021-12-21 20:14:56 +0000 | [diff] [blame] | 116 | inputFault = 0; |
| 117 | mfrFault = 0; |
Brandon Wyman | e3f7ad2 | 2021-12-21 20:27:45 +0000 | [diff] [blame] | 118 | statusMFR = 0; |
Brandon Wyman | c2906f4 | 2021-12-21 20:14:56 +0000 | [diff] [blame] | 119 | vinUVFault = 0; |
| 120 | cmlFault = 0; |
| 121 | voutOVFault = 0; |
| 122 | ioutOCFault = 0; |
| 123 | voutUVFault = 0; |
| 124 | fanFault = 0; |
| 125 | tempFault = 0; |
Brandon Wyman | e3f7ad2 | 2021-12-21 20:27:45 +0000 | [diff] [blame] | 126 | pgoodFault = 0; |
Brandon Wyman | c2906f4 | 2021-12-21 20:14:56 +0000 | [diff] [blame] | 127 | psKillFault = 0; |
| 128 | ps12VcsFault = 0; |
| 129 | psCS12VFault = 0; |
Brandon Wyman | ba6d960 | 2022-05-02 18:10:47 +0000 | [diff] [blame] | 130 | faultLogged = false; |
Brandon Wyman | e3f7ad2 | 2021-12-21 20:27:45 +0000 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | /** |
Brandon Wyman | 3225a45 | 2022-03-18 18:51:49 +0000 | [diff] [blame] | 134 | * @brief Function to specifically clear VIN_UV/OFF fault(s). |
| 135 | * |
| 136 | * The PMBus HWMON device driver has various alarm "files" to read out of |
| 137 | * sysfs. Reading those files will indicate if various alarms are active or |
| 138 | * not, and then specifically clear those faults that go with that alarm. |
| 139 | * |
| 140 | * The VIN_UV fault, indicated in STATUS_INPUT, goes with in1_lcrit_alarm. |
| 141 | * When a VIN_UV fault occurs, the "Unit Off For Insufficient Input Voltage" |
| 142 | * may also be active. Reading in1_lcrit_alarm should clear both fault bits, |
| 143 | * resulting in the corresponding fault bits in STATUS_WORD also clearing. |
| 144 | * |
| 145 | * See: https://www.kernel.org/doc/html/latest/hwmon/pmbus.html |
| 146 | */ |
| 147 | void clearVinUVFault(); |
| 148 | |
| 149 | /** |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 150 | * Write PMBus CLEAR_FAULTS |
| 151 | * |
| 152 | * This function will be called in various situations in order to clear |
| 153 | * any fault status bits that may have been set, in order to start over |
| 154 | * with a clean state. Presence changes and power state changes will |
| 155 | * want to clear any faults logged. |
| 156 | */ |
Brandon Wyman | 3c20846 | 2020-05-13 16:25:58 -0500 | [diff] [blame] | 157 | void clearFaults(); |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 158 | |
| 159 | /** |
| 160 | * @brief Adds properties to the inventory. |
| 161 | * |
| 162 | * Reads the values from the device and writes them to the |
| 163 | * associated power supply D-Bus inventory object. |
| 164 | * |
| 165 | * This needs to be done on startup, and each time the presence |
| 166 | * state changes. |
| 167 | * |
| 168 | * Properties added: |
| 169 | * - Serial Number |
| 170 | * - Part Number |
| 171 | * - CCIN (Customer Card Identification Number) - added as the Model |
| 172 | * - Firmware version |
| 173 | */ |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 174 | void updateInventory(); |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 175 | |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 176 | /** |
| 177 | * @brief Accessor function to indicate present status |
| 178 | */ |
| 179 | bool isPresent() const |
| 180 | { |
| 181 | return present; |
| 182 | } |
| 183 | |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 184 | /** |
Brandon Wyman | fed0ba2 | 2020-09-26 20:02:51 -0500 | [diff] [blame] | 185 | * @brief Returns the last read value from STATUS_WORD. |
| 186 | */ |
| 187 | uint64_t getStatusWord() const |
| 188 | { |
| 189 | return statusWord; |
| 190 | } |
| 191 | |
| 192 | /** |
Brandon Wyman | f07bc79 | 2021-10-12 19:00:35 +0000 | [diff] [blame] | 193 | * @brief Returns the last read value from STATUS_INPUT. |
| 194 | */ |
| 195 | uint64_t getStatusInput() const |
| 196 | { |
| 197 | return statusInput; |
| 198 | } |
| 199 | |
| 200 | /** |
Jay Meyer | 10d9405 | 2020-11-30 14:41:21 -0600 | [diff] [blame] | 201 | * @brief Returns the last read value from STATUS_MFR. |
| 202 | */ |
| 203 | uint64_t getMFRFault() const |
| 204 | { |
| 205 | return statusMFR; |
| 206 | } |
| 207 | |
| 208 | /** |
Brandon Wyman | 85c7bf4 | 2021-10-19 22:28:48 +0000 | [diff] [blame] | 209 | * @brief Returns the last read value from STATUS_CML. |
| 210 | */ |
| 211 | uint64_t getStatusCML() const |
| 212 | { |
| 213 | return statusCML; |
| 214 | } |
| 215 | |
| 216 | /** |
Brandon Wyman | 6710ba2 | 2021-10-27 17:39:31 +0000 | [diff] [blame] | 217 | * @brief Returns the last read value from STATUS_VOUT. |
| 218 | */ |
| 219 | uint64_t getStatusVout() const |
| 220 | { |
| 221 | return statusVout; |
| 222 | } |
| 223 | |
| 224 | /** |
Brandon Wyman | b10b3be | 2021-11-09 22:12:15 +0000 | [diff] [blame] | 225 | * @brief Returns the last value read from STATUS_IOUT. |
| 226 | */ |
| 227 | uint64_t getStatusIout() const |
| 228 | { |
| 229 | return statusIout; |
| 230 | } |
| 231 | |
| 232 | /** |
Brandon Wyman | 7ee4d7e | 2021-11-19 20:48:23 +0000 | [diff] [blame] | 233 | * @brief Returns the last value read from STATUS_FANS_1_2. |
| 234 | */ |
| 235 | uint64_t getStatusFans12() const |
| 236 | { |
| 237 | return statusFans12; |
| 238 | } |
| 239 | |
| 240 | /** |
Brandon Wyman | 96893a4 | 2021-11-05 19:56:57 +0000 | [diff] [blame] | 241 | * @brief Returns the last value read from STATUS_TEMPERATURE. |
| 242 | */ |
| 243 | uint64_t getStatusTemperature() const |
| 244 | { |
| 245 | return statusTemperature; |
| 246 | } |
| 247 | |
| 248 | /** |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 249 | * @brief Returns true if a fault was found. |
| 250 | */ |
| 251 | bool isFaulted() const |
| 252 | { |
Brandon Wyman | c2906f4 | 2021-12-21 20:14:56 +0000 | [diff] [blame] | 253 | return (hasCommFault() || (vinUVFault >= DEGLITCH_LIMIT) || |
| 254 | (inputFault >= DEGLITCH_LIMIT) || |
| 255 | (voutOVFault >= DEGLITCH_LIMIT) || |
| 256 | (ioutOCFault >= DEGLITCH_LIMIT) || |
| 257 | (voutUVFault >= DEGLITCH_LIMIT) || |
| 258 | (fanFault >= DEGLITCH_LIMIT) || (tempFault >= DEGLITCH_LIMIT) || |
| 259 | (pgoodFault >= DEGLITCH_LIMIT) || (mfrFault >= DEGLITCH_LIMIT)); |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 260 | } |
| 261 | |
| 262 | /** |
Brandon Wyman | b76ab24 | 2020-09-16 18:06:06 -0500 | [diff] [blame] | 263 | * @brief Return whether a fault has been logged for this power supply |
| 264 | */ |
| 265 | bool isFaultLogged() const |
| 266 | { |
| 267 | return faultLogged; |
| 268 | } |
| 269 | |
| 270 | /** |
| 271 | * @brief Called when a fault for this power supply has been logged. |
| 272 | */ |
| 273 | void setFaultLogged() |
| 274 | { |
| 275 | faultLogged = true; |
| 276 | } |
| 277 | |
| 278 | /** |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 279 | * @brief Returns true if INPUT fault occurred. |
| 280 | */ |
| 281 | bool hasInputFault() const |
| 282 | { |
Brandon Wyman | c2906f4 | 2021-12-21 20:14:56 +0000 | [diff] [blame] | 283 | return (inputFault >= DEGLITCH_LIMIT); |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 284 | } |
| 285 | |
| 286 | /** |
| 287 | * @brief Returns true if MFRSPECIFIC occurred. |
| 288 | */ |
| 289 | bool hasMFRFault() const |
| 290 | { |
Brandon Wyman | c2906f4 | 2021-12-21 20:14:56 +0000 | [diff] [blame] | 291 | return (mfrFault >= DEGLITCH_LIMIT); |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 292 | } |
| 293 | |
| 294 | /** |
| 295 | * @brief Returns true if VIN_UV_FAULT occurred. |
| 296 | */ |
| 297 | bool hasVINUVFault() const |
| 298 | { |
Brandon Wyman | c2906f4 | 2021-12-21 20:14:56 +0000 | [diff] [blame] | 299 | return (vinUVFault >= DEGLITCH_LIMIT); |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 300 | } |
| 301 | |
Brandon Wyman | c9efe41 | 2020-10-09 15:42:50 -0500 | [diff] [blame] | 302 | /** |
Brandon Wyman | 6710ba2 | 2021-10-27 17:39:31 +0000 | [diff] [blame] | 303 | * @brief Returns true if VOUT_OV_FAULT occurred. |
| 304 | */ |
| 305 | bool hasVoutOVFault() const |
| 306 | { |
Brandon Wyman | c2906f4 | 2021-12-21 20:14:56 +0000 | [diff] [blame] | 307 | return (voutOVFault >= DEGLITCH_LIMIT); |
Brandon Wyman | 6710ba2 | 2021-10-27 17:39:31 +0000 | [diff] [blame] | 308 | } |
| 309 | |
| 310 | /** |
Brandon Wyman | b10b3be | 2021-11-09 22:12:15 +0000 | [diff] [blame] | 311 | * @brief Returns true if IOUT_OC fault occurred (bit 4 STATUS_BYTE). |
| 312 | */ |
| 313 | bool hasIoutOCFault() const |
| 314 | { |
Brandon Wyman | c2906f4 | 2021-12-21 20:14:56 +0000 | [diff] [blame] | 315 | return (ioutOCFault >= DEGLITCH_LIMIT); |
Brandon Wyman | b10b3be | 2021-11-09 22:12:15 +0000 | [diff] [blame] | 316 | } |
| 317 | |
| 318 | /** |
Brandon Wyman | 2cf4694 | 2021-10-28 19:09:16 +0000 | [diff] [blame] | 319 | * @brief Returns true if VOUT_UV_FAULT occurred. |
| 320 | */ |
| 321 | bool hasVoutUVFault() const |
| 322 | { |
Brandon Wyman | c2906f4 | 2021-12-21 20:14:56 +0000 | [diff] [blame] | 323 | return (voutUVFault >= DEGLITCH_LIMIT); |
Brandon Wyman | 2cf4694 | 2021-10-28 19:09:16 +0000 | [diff] [blame] | 324 | } |
| 325 | |
| 326 | /** |
Brandon Wyman | 7ee4d7e | 2021-11-19 20:48:23 +0000 | [diff] [blame] | 327 | *@brief Returns true if fan fault occurred. |
| 328 | */ |
| 329 | bool hasFanFault() const |
| 330 | { |
Brandon Wyman | c2906f4 | 2021-12-21 20:14:56 +0000 | [diff] [blame] | 331 | return (fanFault >= DEGLITCH_LIMIT); |
Brandon Wyman | 7ee4d7e | 2021-11-19 20:48:23 +0000 | [diff] [blame] | 332 | } |
| 333 | |
| 334 | /** |
Brandon Wyman | 96893a4 | 2021-11-05 19:56:57 +0000 | [diff] [blame] | 335 | * @brief Returns true if TEMPERATURE fault occurred. |
| 336 | */ |
| 337 | bool hasTempFault() const |
| 338 | { |
Brandon Wyman | c2906f4 | 2021-12-21 20:14:56 +0000 | [diff] [blame] | 339 | return (tempFault >= DEGLITCH_LIMIT); |
Brandon Wyman | 96893a4 | 2021-11-05 19:56:57 +0000 | [diff] [blame] | 340 | } |
| 341 | |
| 342 | /** |
Brandon Wyman | 2916ea5 | 2021-11-06 03:31:18 +0000 | [diff] [blame] | 343 | * @brief Returns true if there is a PGood fault (PGOOD# inactive, or OFF |
| 344 | * bit on). |
| 345 | */ |
| 346 | bool hasPgoodFault() const |
| 347 | { |
Brandon Wyman | 06ca459 | 2021-12-06 22:52:23 +0000 | [diff] [blame] | 348 | return (pgoodFault >= DEGLITCH_LIMIT); |
Brandon Wyman | 2916ea5 | 2021-11-06 03:31:18 +0000 | [diff] [blame] | 349 | } |
| 350 | |
| 351 | /** |
Brandon Wyman | 39ea02b | 2021-11-23 23:22:23 +0000 | [diff] [blame] | 352 | * @brief Return true if there is a PS_Kill fault. |
| 353 | */ |
| 354 | bool hasPSKillFault() const |
| 355 | { |
Brandon Wyman | c2906f4 | 2021-12-21 20:14:56 +0000 | [diff] [blame] | 356 | return (psKillFault >= DEGLITCH_LIMIT); |
Brandon Wyman | 39ea02b | 2021-11-23 23:22:23 +0000 | [diff] [blame] | 357 | } |
| 358 | |
| 359 | /** |
| 360 | * @brief Returns true if there is a 12Vcs (standy power) fault. |
| 361 | */ |
| 362 | bool hasPS12VcsFault() const |
| 363 | { |
Brandon Wyman | c2906f4 | 2021-12-21 20:14:56 +0000 | [diff] [blame] | 364 | return (ps12VcsFault >= DEGLITCH_LIMIT); |
Brandon Wyman | 39ea02b | 2021-11-23 23:22:23 +0000 | [diff] [blame] | 365 | } |
| 366 | |
| 367 | /** |
| 368 | * @brief Returns true if there is a 12V current-share fault. |
| 369 | */ |
| 370 | bool hasPSCS12VFault() const |
| 371 | { |
Brandon Wyman | c2906f4 | 2021-12-21 20:14:56 +0000 | [diff] [blame] | 372 | return (psCS12VFault >= DEGLITCH_LIMIT); |
Brandon Wyman | 39ea02b | 2021-11-23 23:22:23 +0000 | [diff] [blame] | 373 | } |
| 374 | |
| 375 | /** |
Brandon Wyman | c9efe41 | 2020-10-09 15:42:50 -0500 | [diff] [blame] | 376 | * @brief Returns the device path |
| 377 | * |
| 378 | * This can be used for error call outs. |
| 379 | * Example: /sys/bus/i2c/devices/3-0068 |
| 380 | */ |
Brandon Wyman | 4176d6b | 2020-10-07 17:41:06 -0500 | [diff] [blame] | 381 | const std::string getDevicePath() const |
| 382 | { |
| 383 | return pmbusIntf->path(); |
| 384 | } |
| 385 | |
Brandon Wyman | c9efe41 | 2020-10-09 15:42:50 -0500 | [diff] [blame] | 386 | /** |
Brandon Wyman | 321a615 | 2022-03-19 00:11:44 +0000 | [diff] [blame] | 387 | * @brief Returns this power supply's inventory path. |
Brandon Wyman | c9efe41 | 2020-10-09 15:42:50 -0500 | [diff] [blame] | 388 | * |
| 389 | * This can be used for error call outs. |
| 390 | * Example: |
| 391 | * /xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1 |
| 392 | */ |
Brandon Wyman | 7e49527 | 2020-09-26 19:57:46 -0500 | [diff] [blame] | 393 | const std::string& getInventoryPath() const |
| 394 | { |
| 395 | return inventoryPath; |
| 396 | } |
| 397 | |
Brandon Wyman | c9efe41 | 2020-10-09 15:42:50 -0500 | [diff] [blame] | 398 | /** |
Brandon Wyman | 321a615 | 2022-03-19 00:11:44 +0000 | [diff] [blame] | 399 | * @brief Returns the short name (last part of inventoryPath). |
| 400 | */ |
| 401 | const std::string& getShortName() const |
| 402 | { |
| 403 | return shortName; |
| 404 | } |
| 405 | |
| 406 | /** |
Brandon Wyman | c9efe41 | 2020-10-09 15:42:50 -0500 | [diff] [blame] | 407 | * @brief Returns the firmware revision version read from the power supply |
| 408 | */ |
| 409 | const std::string& getFWVersion() const |
| 410 | { |
| 411 | return fwVersion; |
| 412 | } |
| 413 | |
Adriana Kobylak | 572a905 | 2021-03-30 15:58:07 +0000 | [diff] [blame] | 414 | /** |
| 415 | * @brief Returns the model name of the power supply |
| 416 | */ |
| 417 | const std::string& getModelName() const |
| 418 | { |
| 419 | return modelName; |
| 420 | } |
| 421 | |
Brandon Wyman | f65c406 | 2020-08-19 13:15:53 -0500 | [diff] [blame] | 422 | /** @brief Returns true if the number of failed reads exceeds limit |
| 423 | * TODO: or CML bit on. |
| 424 | */ |
| 425 | bool hasCommFault() const |
| 426 | { |
Brandon Wyman | c2906f4 | 2021-12-21 20:14:56 +0000 | [diff] [blame] | 427 | return ((readFail >= LOG_LIMIT) || (cmlFault >= DEGLITCH_LIMIT)); |
Brandon Wyman | f65c406 | 2020-08-19 13:15:53 -0500 | [diff] [blame] | 428 | } |
| 429 | |
Adriana Kobylak | 4175ffb | 2021-08-02 14:51:05 +0000 | [diff] [blame] | 430 | /** |
| 431 | * @brief Reads the pmbus input voltage and returns that actual voltage |
| 432 | * reading and the calculated input voltage based on thresholds. |
| 433 | * @param[out] actualInputVoltage - The actual voltage reading, in Volts. |
| 434 | * @param[out] inputVoltage - A rounded up/down value of the actual input |
| 435 | * voltage based on thresholds, in Volts. |
| 436 | */ |
| 437 | void getInputVoltage(double& actualInputVoltage, int& inputVoltage) const; |
| 438 | |
Matt Spinler | 0975eaf | 2022-02-14 15:38:30 -0600 | [diff] [blame] | 439 | /** |
| 440 | * @brief Check if the PS is considered to be available or not |
| 441 | * |
| 442 | * It is unavailable if any of: |
| 443 | * - not present |
| 444 | * - input fault active |
| 445 | * - Vin UV fault active |
| 446 | * - PS KILL fault active |
| 447 | * - Iout OC fault active |
| 448 | * |
| 449 | * Other faults will, through creating error logs with callouts, already |
| 450 | * be setting the Functional property to false. |
| 451 | * |
| 452 | * On changes, the Available property is updated in the inventory. |
| 453 | */ |
| 454 | void checkAvailability(); |
| 455 | |
Brandon Wyman | c332442 | 2022-03-24 20:30:57 +0000 | [diff] [blame] | 456 | /** |
| 457 | * @brief Setup for power supply input history. |
| 458 | * |
| 459 | * This will setup the variables and interfaces needed to get the power |
| 460 | * supply input history data over to D-Bus. The only known support for this |
| 461 | * at this time is the INPUT_HISTORY command implemented by the IBM Common |
| 462 | * Form Factor Power Suppplies (ibm-cffps). The INPUT_HISTORY command for |
| 463 | * ibm-cffps is implemented via a manufacturing specific PMBus command. |
| 464 | */ |
| 465 | void setupInputHistory(); |
| 466 | |
| 467 | /** |
| 468 | * @brief Returns true if this power supply has input history (supported). |
| 469 | */ |
| 470 | bool hasInputHistory() const |
| 471 | { |
| 472 | return inputHistorySupported; |
| 473 | } |
| 474 | |
| 475 | /** |
| 476 | * @brief Returns the number of input history records |
| 477 | * |
| 478 | * PowerSupply wrapper to getNumRecords() from RecordManager. |
| 479 | */ |
| 480 | size_t getNumInputHistoryRecords() const |
| 481 | { |
| 482 | if (recordManager) |
| 483 | { |
| 484 | return recordManager->getNumRecords(); |
| 485 | } |
| 486 | else |
| 487 | { |
| 488 | return 0; |
| 489 | } |
| 490 | } |
| 491 | |
Brandon Wyman | 18a24d9 | 2022-04-19 22:48:34 +0000 | [diff] [blame] | 492 | /** |
| 493 | * @brief Returns true when INPUT_HISTORY sync is required. |
| 494 | */ |
| 495 | bool isSyncHistoryRequired() const |
| 496 | { |
| 497 | return syncHistoryRequired; |
| 498 | } |
| 499 | |
| 500 | /** |
| 501 | * @brief Clears the indicator that sync required for INPUT_HISTORY. |
| 502 | * |
| 503 | * Sets variable to false to indicate that the sync is no longer required. |
| 504 | * This can be used after the PSUManager has reacted to the need for the |
| 505 | * INPUT_HISTORY data to be synchronized. |
| 506 | */ |
| 507 | void clearSyncHistoryRequired() |
| 508 | { |
| 509 | syncHistoryRequired = false; |
| 510 | } |
| 511 | |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 512 | private: |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 513 | /** @brief systemd bus member */ |
| 514 | sdbusplus::bus::bus& bus; |
| 515 | |
Brandon Wyman | 9564e94 | 2020-11-10 14:01:42 -0600 | [diff] [blame] | 516 | /** @brief Will be updated to the latest/lastvalue read from STATUS_WORD.*/ |
Brandon Wyman | fed0ba2 | 2020-09-26 20:02:51 -0500 | [diff] [blame] | 517 | uint64_t statusWord = 0; |
| 518 | |
Brandon Wyman | 9e292ee | 2022-03-10 22:56:23 +0000 | [diff] [blame] | 519 | /** @brief Will be set to the last read value of STATUS_WORD. */ |
| 520 | uint64_t statusWordOld = 0; |
| 521 | |
Brandon Wyman | f07bc79 | 2021-10-12 19:00:35 +0000 | [diff] [blame] | 522 | /** @brief Will be updated to the latest/lastvalue read from STATUS_INPUT.*/ |
| 523 | uint64_t statusInput = 0; |
| 524 | |
Jay Meyer | 10d9405 | 2020-11-30 14:41:21 -0600 | [diff] [blame] | 525 | /** @brief Will be updated to the latest/lastvalue read from STATUS_MFR.*/ |
| 526 | uint64_t statusMFR = 0; |
| 527 | |
Brandon Wyman | 85c7bf4 | 2021-10-19 22:28:48 +0000 | [diff] [blame] | 528 | /** @brief Will be updated to the latest/last value read from STATUS_CML.*/ |
| 529 | uint64_t statusCML = 0; |
| 530 | |
Brandon Wyman | 6710ba2 | 2021-10-27 17:39:31 +0000 | [diff] [blame] | 531 | /** @brief Will be updated to the latest/last value read from STATUS_VOUT.*/ |
| 532 | uint64_t statusVout = 0; |
| 533 | |
Brandon Wyman | b10b3be | 2021-11-09 22:12:15 +0000 | [diff] [blame] | 534 | /** @brief Will be updated to the latest/last value read from STATUS_IOUT.*/ |
| 535 | uint64_t statusIout = 0; |
| 536 | |
Brandon Wyman | 96893a4 | 2021-11-05 19:56:57 +0000 | [diff] [blame] | 537 | /** @brief Will be updated to the latest/last value read from |
Brandon Wyman | 7ee4d7e | 2021-11-19 20:48:23 +0000 | [diff] [blame] | 538 | * STATUS_FANS_1_2. */ |
| 539 | uint64_t statusFans12 = 0; |
| 540 | |
| 541 | /** @brief Will be updated to the latest/last value read from |
Brandon Wyman | 96893a4 | 2021-11-05 19:56:57 +0000 | [diff] [blame] | 542 | * STATUS_TEMPERATURE.*/ |
| 543 | uint64_t statusTemperature = 0; |
| 544 | |
Brandon Wyman | 82affd9 | 2021-11-24 19:12:49 +0000 | [diff] [blame] | 545 | /** @brief Will be updated with latest converted value read from READ_VIN */ |
| 546 | int inputVoltage = phosphor::pmbus::in_input::VIN_VOLTAGE_0; |
| 547 | |
Brandon Wyman | 4fc191f | 2022-03-10 23:07:13 +0000 | [diff] [blame] | 548 | /** @brief Will be updated with the actual voltage last read from READ_VIN |
| 549 | */ |
| 550 | double actualInputVoltage = 0; |
| 551 | |
Brandon Wyman | b76ab24 | 2020-09-16 18:06:06 -0500 | [diff] [blame] | 552 | /** @brief True if an error for a fault has already been logged. */ |
| 553 | bool faultLogged = false; |
| 554 | |
Brandon Wyman | c2906f4 | 2021-12-21 20:14:56 +0000 | [diff] [blame] | 555 | /** @brief Incremented if bit 1 of STATUS_WORD low byte is on. |
| 556 | * |
| 557 | * Considered faulted if reaches DEGLITCH_LIMIT. |
| 558 | */ |
| 559 | size_t cmlFault = 0; |
Brandon Wyman | 85c7bf4 | 2021-10-19 22:28:48 +0000 | [diff] [blame] | 560 | |
Brandon Wyman | c2906f4 | 2021-12-21 20:14:56 +0000 | [diff] [blame] | 561 | /** @brief Incremented if bit 5 of STATUS_WORD high byte is on. |
| 562 | * |
| 563 | * Considered faulted if reaches DEGLITCH_LIMIT. |
| 564 | */ |
| 565 | size_t inputFault = 0; |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 566 | |
Brandon Wyman | c2906f4 | 2021-12-21 20:14:56 +0000 | [diff] [blame] | 567 | /** @brief Incremented if bit 4 of STATUS_WORD high byte is on. |
| 568 | * |
| 569 | * Considered faulted if reaches DEGLITCH_LIMIT. |
| 570 | */ |
| 571 | size_t mfrFault = 0; |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 572 | |
Brandon Wyman | c2906f4 | 2021-12-21 20:14:56 +0000 | [diff] [blame] | 573 | /** @brief Incremented if bit 3 of STATUS_WORD low byte is on. |
| 574 | * |
| 575 | * Considered faulted if reaches DEGLITCH_LIMIT. |
| 576 | */ |
| 577 | size_t vinUVFault = 0; |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 578 | |
Brandon Wyman | c2906f4 | 2021-12-21 20:14:56 +0000 | [diff] [blame] | 579 | /** @brief Incremented if bit 5 of STATUS_WORD low byte is on. |
| 580 | * |
| 581 | * Considered faulted if reaches DEGLITCH_LIMIT. |
| 582 | */ |
| 583 | size_t voutOVFault = 0; |
Brandon Wyman | 6710ba2 | 2021-10-27 17:39:31 +0000 | [diff] [blame] | 584 | |
Brandon Wyman | c2906f4 | 2021-12-21 20:14:56 +0000 | [diff] [blame] | 585 | /** @brief Incremented if bit 4 of STATUS_WORD low byte is on. |
| 586 | * |
| 587 | * Considered faulted if reaches DEGLITCH_LIMIT. |
| 588 | */ |
| 589 | size_t ioutOCFault = 0; |
Brandon Wyman | b10b3be | 2021-11-09 22:12:15 +0000 | [diff] [blame] | 590 | |
Brandon Wyman | c2906f4 | 2021-12-21 20:14:56 +0000 | [diff] [blame] | 591 | /** @brief Incremented if bit 7 of STATUS_WORD high byte is on and bit 5 |
| 592 | * (VOUT_OV) of low byte is off. |
| 593 | * |
| 594 | * Considered faulted if reaches DEGLITCH_LIMIT. |
| 595 | */ |
| 596 | size_t voutUVFault = 0; |
Brandon Wyman | 2cf4694 | 2021-10-28 19:09:16 +0000 | [diff] [blame] | 597 | |
Brandon Wyman | c2906f4 | 2021-12-21 20:14:56 +0000 | [diff] [blame] | 598 | /** @brief Incremented if FANS fault/warn bit on in STATUS_WORD. |
| 599 | * |
| 600 | * Considered faulted if reaches DEGLITCH_LIMIT. |
| 601 | */ |
| 602 | size_t fanFault = 0; |
Brandon Wyman | 7ee4d7e | 2021-11-19 20:48:23 +0000 | [diff] [blame] | 603 | |
Brandon Wyman | c2906f4 | 2021-12-21 20:14:56 +0000 | [diff] [blame] | 604 | /** @brief Incremented if bit 2 of STATUS_WORD low byte is on. |
| 605 | * |
| 606 | * Considered faulted if reaches DEGLITCH_LIMIT. */ |
| 607 | size_t tempFault = 0; |
Brandon Wyman | 96893a4 | 2021-11-05 19:56:57 +0000 | [diff] [blame] | 608 | |
Brandon Wyman | 2cf4694 | 2021-10-28 19:09:16 +0000 | [diff] [blame] | 609 | /** |
Brandon Wyman | 06ca459 | 2021-12-06 22:52:23 +0000 | [diff] [blame] | 610 | * @brief Incremented if bit 11 or 6 of STATUS_WORD is on. PGOOD# is |
| 611 | * inactive, or the unit is off. |
| 612 | * |
| 613 | * Considered faulted if reaches DEGLITCH_LIMIT. |
Brandon Wyman | 2916ea5 | 2021-11-06 03:31:18 +0000 | [diff] [blame] | 614 | */ |
Brandon Wyman | 925c026 | 2021-12-21 20:15:36 +0000 | [diff] [blame] | 615 | size_t pgoodFault = 0; |
Brandon Wyman | 2916ea5 | 2021-11-06 03:31:18 +0000 | [diff] [blame] | 616 | |
Brandon Wyman | 39ea02b | 2021-11-23 23:22:23 +0000 | [diff] [blame] | 617 | /** |
| 618 | * @brief Power Supply Kill fault. |
Brandon Wyman | c2906f4 | 2021-12-21 20:14:56 +0000 | [diff] [blame] | 619 | * |
| 620 | * Incremented based on bits in STATUS_MFR_SPECIFIC. IBM power supplies use |
| 621 | * bit 4 to indicate this fault. Considered faulted if it reaches |
| 622 | * DEGLITCH_LIMIT. |
Brandon Wyman | 39ea02b | 2021-11-23 23:22:23 +0000 | [diff] [blame] | 623 | */ |
Brandon Wyman | c2906f4 | 2021-12-21 20:14:56 +0000 | [diff] [blame] | 624 | size_t psKillFault = 0; |
Brandon Wyman | 39ea02b | 2021-11-23 23:22:23 +0000 | [diff] [blame] | 625 | |
| 626 | /** |
| 627 | * @brief Power Supply 12Vcs fault (standby power). |
Brandon Wyman | c2906f4 | 2021-12-21 20:14:56 +0000 | [diff] [blame] | 628 | * |
| 629 | * Incremented based on bits in STATUS_MFR_SPECIFIC. IBM power supplies use |
| 630 | * bit 6 to indicate this fault. Considered faulted if it reaches |
| 631 | * DEGLITCH_LIMIT. |
Brandon Wyman | 39ea02b | 2021-11-23 23:22:23 +0000 | [diff] [blame] | 632 | */ |
Brandon Wyman | c2906f4 | 2021-12-21 20:14:56 +0000 | [diff] [blame] | 633 | size_t ps12VcsFault = 0; |
Brandon Wyman | 39ea02b | 2021-11-23 23:22:23 +0000 | [diff] [blame] | 634 | |
| 635 | /** |
| 636 | * @brief Power Supply Current-Share fault in 12V domain. |
Brandon Wyman | c2906f4 | 2021-12-21 20:14:56 +0000 | [diff] [blame] | 637 | * |
| 638 | * Incremented based on bits in STATUS_MFR_SPECIFIC. IBM power supplies use |
| 639 | * bit 7 to indicate this fault. Considered faulted if it reaches |
| 640 | * DEGLITCH_LIMIT. |
Brandon Wyman | 39ea02b | 2021-11-23 23:22:23 +0000 | [diff] [blame] | 641 | */ |
Brandon Wyman | c2906f4 | 2021-12-21 20:14:56 +0000 | [diff] [blame] | 642 | size_t psCS12VFault = 0; |
Brandon Wyman | 39ea02b | 2021-11-23 23:22:23 +0000 | [diff] [blame] | 643 | |
Brandon Wyman | f65c406 | 2020-08-19 13:15:53 -0500 | [diff] [blame] | 644 | /** @brief Count of the number of read failures. */ |
| 645 | size_t readFail = 0; |
| 646 | |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 647 | /** |
Brandon Wyman | c220343 | 2021-12-21 23:09:48 +0000 | [diff] [blame] | 648 | * @brief Examine STATUS_WORD for CML (communication, memory, logic fault). |
| 649 | */ |
| 650 | void analyzeCMLFault(); |
| 651 | |
| 652 | /** |
Brandon Wyman | e3b0bb0 | 2021-12-21 23:16:48 +0000 | [diff] [blame] | 653 | * @brief Examine STATUS_WORD for INPUT bit on. |
| 654 | * |
| 655 | * "An input voltage, input current, or input power fault or warning has |
| 656 | * occurred." |
| 657 | */ |
| 658 | void analyzeInputFault(); |
| 659 | |
| 660 | /** |
Brandon Wyman | c2c8713 | 2021-12-21 23:22:18 +0000 | [diff] [blame] | 661 | * @brief Examine STATUS_WORD for VOUT being set. |
| 662 | * |
| 663 | * If VOUT is on, "An output voltage fault or warning has occurred.", and |
| 664 | * VOUT_OV_FAULT is on, there is an output over-voltage fault. |
| 665 | */ |
| 666 | void analyzeVoutOVFault(); |
| 667 | |
Brandon Wyman | a00e730 | 2021-12-21 23:28:29 +0000 | [diff] [blame] | 668 | /* |
| 669 | * @brief Examine STATUS_WORD value read for IOUT_OC_FAULT. |
| 670 | * |
| 671 | * "An output overcurrent fault has occurred." If it is on, and fault not |
| 672 | * set, trace STATUS_WORD, STATUS_MFR_SPECIFIC, and STATUS_IOUT values. |
| 673 | */ |
| 674 | void analyzeIoutOCFault(); |
| 675 | |
Brandon Wyman | c2c8713 | 2021-12-21 23:22:18 +0000 | [diff] [blame] | 676 | /** |
Brandon Wyman | 0837878 | 2021-12-21 23:48:15 +0000 | [diff] [blame] | 677 | * @brief Examines STATUS_WORD value read to see if there is a UV fault. |
| 678 | * |
| 679 | * Checks if the VOUT bit is on, indicating "An output voltage fault or |
| 680 | * warning has occurred", if it is on, but VOUT_OV_FAULT is off, it is |
| 681 | * determined to be an indication of an output under-voltage fault. |
| 682 | */ |
| 683 | void analyzeVoutUVFault(); |
| 684 | |
| 685 | /** |
Brandon Wyman | d5d9a22 | 2021-12-21 23:59:05 +0000 | [diff] [blame] | 686 | * @brief Examine STATUS_WORD for the fan fault/warning bit. |
| 687 | * |
| 688 | * If fanFault is not on, trace that the bit now came on, include |
| 689 | * STATUS_WORD, STATUS_MFR_SPECIFIC, and STATUS_FANS_1_2 values as well, to |
| 690 | * help with understanding what may have caused it to be set. |
| 691 | */ |
| 692 | void analyzeFanFault(); |
| 693 | |
| 694 | /** |
Brandon Wyman | 52cb3f2 | 2021-12-21 23:02:47 +0000 | [diff] [blame] | 695 | * @brief Examine STATUS_WORD for temperature fault. |
| 696 | */ |
| 697 | void analyzeTemperatureFault(); |
| 698 | |
| 699 | /** |
Brandon Wyman | 993b554 | 2021-12-21 22:55:16 +0000 | [diff] [blame] | 700 | * @brief Examine STATUS_WORD for pgood or unit off faults. |
| 701 | */ |
| 702 | void analyzePgoodFault(); |
| 703 | |
| 704 | /** |
Brandon Wyman | 39ea02b | 2021-11-23 23:22:23 +0000 | [diff] [blame] | 705 | * @brief Determine possible manufacturer-specific faults from bits in |
| 706 | * STATUS_MFR. |
| 707 | * |
| 708 | * The bits in the STATUS_MFR_SPECIFIC command response have "Manufacturer |
| 709 | * Defined" meanings. Determine which faults, if any, are present based on |
| 710 | * the power supply (device driver) type. |
| 711 | */ |
| 712 | void determineMFRFault(); |
| 713 | |
| 714 | /** |
Brandon Wyman | 6c2ac39 | 2021-12-21 22:23:06 +0000 | [diff] [blame] | 715 | * @brief Examine STATUS_WORD value read for MFRSPECIFIC bit on. |
| 716 | * |
| 717 | * "A manufacturer specific fault or warning has occurred." |
| 718 | * |
| 719 | * If it is on, call the determineMFRFault() helper function to examine the |
| 720 | * value read from STATUS_MFR_SPECIFIC. |
| 721 | */ |
| 722 | void analyzeMFRFault(); |
| 723 | |
| 724 | /** |
Brandon Wyman | f087f47 | 2021-12-22 00:04:27 +0000 | [diff] [blame] | 725 | * @brief Analyzes the STATUS_WORD for a VIN_UV_FAULT indicator. |
| 726 | */ |
| 727 | void analyzeVinUVFault(); |
| 728 | |
| 729 | /** |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 730 | * @brief D-Bus path to use for this power supply's inventory status. |
| 731 | **/ |
| 732 | std::string inventoryPath; |
| 733 | |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 734 | /** |
Brandon Wyman | 321a615 | 2022-03-19 00:11:44 +0000 | [diff] [blame] | 735 | * @brief Store the short name to avoid string processing. |
| 736 | * |
| 737 | * The short name will be something like powersupply1, the last part of the |
| 738 | * inventoryPath. |
| 739 | */ |
| 740 | std::string shortName; |
| 741 | |
| 742 | /** |
| 743 | * @brief Given a full inventory path, returns the last node of the path as |
| 744 | * the "short name" |
| 745 | */ |
| 746 | std::string findShortName(const std::string& invPath) |
| 747 | { |
| 748 | auto const lastSlashPos = invPath.find_last_of('/'); |
| 749 | |
| 750 | if ((lastSlashPos == std::string::npos) || |
| 751 | ((lastSlashPos + 1) == invPath.size())) |
| 752 | { |
| 753 | return invPath; |
| 754 | } |
| 755 | else |
| 756 | { |
| 757 | return invPath.substr(lastSlashPos + 1); |
| 758 | } |
| 759 | } |
| 760 | |
| 761 | /** |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 762 | * @brief The libgpiod object for monitoring PSU presence |
| 763 | */ |
Adriana Kobylak | 3ca062a | 2021-10-20 15:27:23 +0000 | [diff] [blame] | 764 | std::unique_ptr<GPIOInterfaceBase> presenceGPIO = nullptr; |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 765 | |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 766 | /** @brief True if the power supply is present. */ |
| 767 | bool present = false; |
| 768 | |
Adriana Kobylak | 572a905 | 2021-03-30 15:58:07 +0000 | [diff] [blame] | 769 | /** @brief Power supply model name. */ |
| 770 | std::string modelName; |
| 771 | |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 772 | /** @brief D-Bus match variable used to subscribe to Present property |
| 773 | * changes. |
| 774 | **/ |
| 775 | std::unique_ptr<sdbusplus::bus::match_t> presentMatch; |
| 776 | |
| 777 | /** @brief D-Bus match variable used to subscribe for Present property |
| 778 | * interface added. |
| 779 | */ |
| 780 | std::unique_ptr<sdbusplus::bus::match_t> presentAddedMatch; |
| 781 | |
| 782 | /** |
Brandon Wyman | 8d19577 | 2020-01-27 15:03:51 -0600 | [diff] [blame] | 783 | * @brief Pointer to the PMBus interface |
| 784 | * |
| 785 | * Used to read or write to/from PMBus power supply devices. |
| 786 | */ |
Brandon Wyman | 9564e94 | 2020-11-10 14:01:42 -0600 | [diff] [blame] | 787 | std::unique_ptr<phosphor::pmbus::PMBusBase> pmbusIntf = nullptr; |
Brandon Wyman | 8d19577 | 2020-01-27 15:03:51 -0600 | [diff] [blame] | 788 | |
Brandon Wyman | c9efe41 | 2020-10-09 15:42:50 -0500 | [diff] [blame] | 789 | /** @brief Stored copy of the firmware version/revision string */ |
| 790 | std::string fwVersion; |
| 791 | |
Brandon Wyman | 8d19577 | 2020-01-27 15:03:51 -0600 | [diff] [blame] | 792 | /** |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 793 | * @brief The file system path used for binding the device driver. |
| 794 | */ |
| 795 | const std::filesystem::path bindPath; |
| 796 | |
| 797 | /* @brief The string to pass in for binding the device driver. */ |
| 798 | std::string bindDevice; |
| 799 | |
| 800 | /** |
Matt Spinler | 0975eaf | 2022-02-14 15:38:30 -0600 | [diff] [blame] | 801 | * @brief The result of the most recent availability check |
| 802 | * |
| 803 | * Saved on the object so changes can be detected. |
| 804 | */ |
| 805 | bool available = false; |
| 806 | |
| 807 | /** |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 808 | * @brief Binds or unbinds the power supply device driver |
| 809 | * |
| 810 | * Called when a presence change is detected to either bind the device |
| 811 | * driver for the power supply when it is installed, or unbind the device |
| 812 | * driver when the power supply is removed. |
| 813 | * |
| 814 | * Writes <device> to <path>/bind (or unbind) |
| 815 | * |
| 816 | * @param present - when true, will bind the device driver |
| 817 | * when false, will unbind the device driver |
| 818 | */ |
| 819 | void bindOrUnbindDriver(bool present); |
| 820 | |
| 821 | /** |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 822 | * @brief Updates the presence status by querying D-Bus |
| 823 | * |
| 824 | * The D-Bus inventory properties for this power supply will be read to |
| 825 | * determine if the power supply is present or not and update this |
| 826 | * object's present member variable to reflect current status. |
| 827 | **/ |
| 828 | void updatePresence(); |
| 829 | |
| 830 | /** |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 831 | * @brief Updates the power supply presence by reading the GPIO line. |
| 832 | */ |
| 833 | void updatePresenceGPIO(); |
| 834 | |
| 835 | /** |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 836 | * @brief Callback for inventory property changes |
| 837 | * |
| 838 | * Process change of Present property for power supply. |
| 839 | * |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 840 | * This is used if we are watching the D-Bus properties instead of reading |
| 841 | * the GPIO presence line ourselves. |
| 842 | * |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 843 | * @param[in] msg - Data associated with Present change signal |
| 844 | **/ |
| 845 | void inventoryChanged(sdbusplus::message::message& msg); |
Brandon Wyman | 9a507db | 2021-02-25 16:15:22 -0600 | [diff] [blame] | 846 | |
| 847 | /** |
| 848 | * @brief Callback for inventory property added. |
| 849 | * |
| 850 | * Process add of the interface with the Present property for power supply. |
| 851 | * |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 852 | * This is used if we are watching the D-Bus properties instead of reading |
| 853 | * the GPIO presence line ourselves. |
| 854 | * |
Brandon Wyman | 9a507db | 2021-02-25 16:15:22 -0600 | [diff] [blame] | 855 | * @param[in] msg - Data associated with Present add signal |
| 856 | **/ |
| 857 | void inventoryAdded(sdbusplus::message::message& msg); |
Brandon Wyman | c332442 | 2022-03-24 20:30:57 +0000 | [diff] [blame] | 858 | |
| 859 | /** |
Brandon Wyman | ae35ac5 | 2022-05-23 22:33:40 +0000 | [diff] [blame] | 860 | * @brief Reads the pmbus MFR_POUT_MAX value. |
| 861 | * |
| 862 | * "The MFR_POUT_MAX command sets or retrieves the maximum rated output |
| 863 | * power, in watts, that the unit is rated to supply." |
| 864 | * |
| 865 | * @return max_power_out value converted from string. |
| 866 | */ |
| 867 | auto getMaxPowerOut() const; |
| 868 | |
| 869 | /** |
Brandon Wyman | c332442 | 2022-03-24 20:30:57 +0000 | [diff] [blame] | 870 | * @brief Reads the most recent input history record from the power supply |
| 871 | * and updates the average and maximum properties in D-Bus if there is a new |
| 872 | * reading available. |
| 873 | * |
| 874 | * This will still run every time analyze() is called so code can post new |
| 875 | * data as soon as possible and the timestamp will more accurately reflect |
| 876 | * the correct time. |
| 877 | * |
| 878 | * D-Bus is only updated if there is a change and the oldest record will be |
| 879 | * pruned if the property already contains the max number of records. |
| 880 | */ |
| 881 | void updateHistory(); |
| 882 | |
| 883 | /** |
| 884 | * @brief Set to true if INPUT_HISTORY command supported. |
| 885 | * |
| 886 | * Not all power supplies will support the INPUT_HISTORY command. The IBM |
| 887 | * Common Form Factor power supplies do support this command. |
| 888 | */ |
| 889 | bool inputHistorySupported{false}; |
| 890 | |
| 891 | /** |
Brandon Wyman | 18a24d9 | 2022-04-19 22:48:34 +0000 | [diff] [blame] | 892 | * @brief Set to true when INPUT_HISTORY sync is required. |
| 893 | * |
| 894 | * A power supply will need to synchronize its INPUT_HISTORY data with the |
| 895 | * other power supplies installed in the system when it goes from missing to |
| 896 | * present. |
| 897 | */ |
| 898 | bool syncHistoryRequired{false}; |
| 899 | |
| 900 | /** |
Brandon Wyman | c332442 | 2022-03-24 20:30:57 +0000 | [diff] [blame] | 901 | * @brief Class that manages the input power history records. |
| 902 | **/ |
| 903 | std::unique_ptr<history::RecordManager> recordManager; |
| 904 | |
| 905 | /** |
| 906 | * @brief The D-Bus object for the average input power history |
| 907 | **/ |
| 908 | std::unique_ptr<history::Average> average; |
| 909 | |
| 910 | /** |
| 911 | * @brief The D-Bus object for the maximum input power history |
| 912 | **/ |
| 913 | std::unique_ptr<history::Maximum> maximum; |
| 914 | |
| 915 | /** |
| 916 | * @brief The base D-Bus object path to use for the average and maximum |
| 917 | * objects. |
| 918 | **/ |
| 919 | std::string historyObjectPath; |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 920 | }; |
| 921 | |
| 922 | } // namespace phosphor::power::psu |