Brandon Wyman | 24e422f | 2017-07-25 19:40:14 -0500 | [diff] [blame] | 1 | #pragma once |
Matt Spinler | 8238414 | 2018-01-18 14:15:03 -0600 | [diff] [blame] | 2 | #include "average.hpp" |
Brandon Wyman | 1db9a9e | 2017-07-26 18:50:22 -0500 | [diff] [blame] | 3 | #include "device.hpp" |
Matt Spinler | 8238414 | 2018-01-18 14:15:03 -0600 | [diff] [blame] | 4 | #include "maximum.hpp" |
Brandon Wyman | a1e9634 | 2017-09-25 16:47:44 -0500 | [diff] [blame] | 5 | #include "names_values.hpp" |
Matt Spinler | 8238414 | 2018-01-18 14:15:03 -0600 | [diff] [blame] | 6 | #include "pmbus.hpp" |
| 7 | #include "record_manager.hpp" |
Brandon Wyman | 24e422f | 2017-07-25 19:40:14 -0500 | [diff] [blame] | 8 | |
George Liu | 690e780 | 2019-08-23 11:04:01 +0800 | [diff] [blame] | 9 | #include <nlohmann/json.hpp> |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 10 | #include <sdbusplus/bus/match.hpp> |
| 11 | #include <sdeventplus/clock.hpp> |
| 12 | #include <sdeventplus/event.hpp> |
| 13 | #include <sdeventplus/utility/timer.hpp> |
| 14 | |
Lei YU | ab09332 | 2019-10-09 16:43:22 +0800 | [diff] [blame] | 15 | namespace phosphor |
Brandon Wyman | 24e422f | 2017-07-25 19:40:14 -0500 | [diff] [blame] | 16 | { |
| 17 | namespace power |
| 18 | { |
| 19 | namespace psu |
| 20 | { |
Brandon Wyman | 1029554 | 2017-08-09 18:20:44 -0500 | [diff] [blame] | 21 | namespace sdbusRule = sdbusplus::bus::match::rules; |
| 22 | |
Brandon Wyman | 593d24f | 2017-10-13 18:15:23 -0500 | [diff] [blame] | 23 | constexpr auto FAULT_COUNT = 3; |
| 24 | |
Brandon Wyman | 24e422f | 2017-07-25 19:40:14 -0500 | [diff] [blame] | 25 | /** |
| 26 | * @class PowerSupply |
Brandon Wyman | 1db9a9e | 2017-07-26 18:50:22 -0500 | [diff] [blame] | 27 | * Represents a PMBus power supply device. |
Brandon Wyman | 24e422f | 2017-07-25 19:40:14 -0500 | [diff] [blame] | 28 | */ |
Brandon Wyman | 1db9a9e | 2017-07-26 18:50:22 -0500 | [diff] [blame] | 29 | class PowerSupply : public Device |
Brandon Wyman | 24e422f | 2017-07-25 19:40:14 -0500 | [diff] [blame] | 30 | { |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 31 | public: |
| 32 | PowerSupply() = delete; |
| 33 | PowerSupply(const PowerSupply&) = delete; |
| 34 | PowerSupply(PowerSupply&&) = default; |
| 35 | PowerSupply& operator=(const PowerSupply&) = default; |
| 36 | PowerSupply& operator=(PowerSupply&&) = default; |
| 37 | ~PowerSupply() = default; |
Brandon Wyman | 24e422f | 2017-07-25 19:40:14 -0500 | [diff] [blame] | 38 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 39 | /** |
| 40 | * Constructor |
| 41 | * |
| 42 | * @param[in] name - the device name |
| 43 | * @param[in] inst - the device instance |
| 44 | * @param[in] objpath - the path to monitor |
| 45 | * @param[in] invpath - the inventory path to use |
| 46 | * @param[in] bus - D-Bus bus object |
| 47 | * @param[in] e - event object |
| 48 | * @param[in] t - time to allow power supply to assert PG# |
| 49 | * @param[in] p - time to allow power supply presence state to |
| 50 | * settle/deglitch and allow for application of power |
| 51 | * prior to fault checking |
| 52 | */ |
| 53 | PowerSupply(const std::string& name, size_t inst, |
| 54 | const std::string& objpath, const std::string& invpath, |
| 55 | sdbusplus::bus::bus& bus, const sdeventplus::Event& e, |
| 56 | std::chrono::seconds& t, std::chrono::seconds& p); |
Brandon Wyman | 1db9a9e | 2017-07-26 18:50:22 -0500 | [diff] [blame] | 57 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 58 | /** |
| 59 | * Power supply specific function to analyze for faults/errors. |
| 60 | * |
| 61 | * Various PMBus status bits will be checked for fault conditions. |
| 62 | * If a certain fault bits are on, the appropriate error will be |
| 63 | * committed. |
| 64 | */ |
| 65 | void analyze() override; |
Brandon Wyman | 1db9a9e | 2017-07-26 18:50:22 -0500 | [diff] [blame] | 66 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 67 | /** |
| 68 | * Write PMBus CLEAR_FAULTS |
| 69 | * |
| 70 | * This function will be called in various situations in order to clear |
| 71 | * any fault status bits that may have been set, in order to start over |
| 72 | * with a clean state. Presence changes and power state changes will |
| 73 | * want to clear any faults logged. |
| 74 | */ |
| 75 | void clearFaults() override; |
Brandon Wyman | 1db9a9e | 2017-07-26 18:50:22 -0500 | [diff] [blame] | 76 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 77 | /** |
| 78 | * Mark error for specified callout and message as resolved. |
| 79 | * |
| 80 | * @param[in] callout - The callout to be resolved (inventory path) |
| 81 | * @parma[in] message - The message for the fault to be resolved |
| 82 | */ |
| 83 | void resolveError(const std::string& callout, const std::string& message); |
Brandon Wyman | 43ce208 | 2017-11-30 17:24:01 -0600 | [diff] [blame] | 84 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 85 | /** |
| 86 | * Enables making the input power history available on D-Bus |
| 87 | * |
| 88 | * @param[in] objectPath - the D-Bus object path to use |
| 89 | * @param[in] maxRecords - the number of history records to keep |
| 90 | * @param[in] syncGPIOPath - The gpiochip device path to use for |
| 91 | * sending the sync command |
| 92 | * @paramp[in] syncGPIONum - the GPIO number for the sync command |
| 93 | */ |
| 94 | void enableHistory(const std::string& objectPath, size_t numRecords, |
| 95 | const std::string& syncGPIOPath, size_t syncGPIONum); |
Matt Spinler | 8238414 | 2018-01-18 14:15:03 -0600 | [diff] [blame] | 96 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 97 | private: |
| 98 | /** |
| 99 | * The path to use for reading various PMBus bits/words. |
| 100 | */ |
| 101 | std::string monitorPath; |
Brandon Wyman | 1db9a9e | 2017-07-26 18:50:22 -0500 | [diff] [blame] | 102 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 103 | /** |
| 104 | * @brief Pointer to the PMBus interface |
| 105 | * |
| 106 | * Used to read out of or write to the /sysfs tree(s) containing files |
| 107 | * that a device driver monitors the PMBus interface to the power |
| 108 | * supplies. |
| 109 | */ |
Lei YU | ab09332 | 2019-10-09 16:43:22 +0800 | [diff] [blame] | 110 | phosphor::pmbus::PMBus pmbusIntf; |
Brandon Wyman | 442035f | 2017-08-08 15:58:45 -0500 | [diff] [blame] | 111 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 112 | /** |
| 113 | * @brief D-Bus path to use for this power supply's inventory status. |
| 114 | */ |
| 115 | std::string inventoryPath; |
Brandon Wyman | 431fbe4 | 2017-08-18 16:22:09 -0500 | [diff] [blame] | 116 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 117 | /** @brief Connection for sdbusplus bus */ |
| 118 | sdbusplus::bus::bus& bus; |
Brandon Wyman | 431fbe4 | 2017-08-18 16:22:09 -0500 | [diff] [blame] | 119 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 120 | /** @brief True if the power supply is present. */ |
| 121 | bool present = false; |
Brandon Wyman | 1029554 | 2017-08-09 18:20:44 -0500 | [diff] [blame] | 122 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 123 | /** @brief Used to subscribe to D-Bus property changes for Present */ |
| 124 | std::unique_ptr<sdbusplus::bus::match_t> presentMatch; |
Brandon Wyman | 1029554 | 2017-08-09 18:20:44 -0500 | [diff] [blame] | 125 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 126 | /** |
| 127 | * @brief Interval for setting present to true. |
| 128 | * |
| 129 | * The amount of time to wait from not present to present change before |
| 130 | * updating the internal present indicator. Allows person servicing |
| 131 | * the power supply some time to plug in the cable. |
| 132 | */ |
| 133 | std::chrono::seconds presentInterval; |
Brandon Wyman | 590fc28 | 2017-11-01 18:22:25 -0500 | [diff] [blame] | 134 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 135 | /** |
| 136 | * @brief Timer used to delay setting the internal present state. |
| 137 | * |
| 138 | * The timer used to do the callback after the present property has |
| 139 | * changed. |
| 140 | */ |
| 141 | sdeventplus::utility::Timer<sdeventplus::ClockId::Monotonic> presentTimer; |
Brandon Wyman | 590fc28 | 2017-11-01 18:22:25 -0500 | [diff] [blame] | 142 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 143 | /** @brief True if a fault has already been found and not cleared */ |
| 144 | bool faultFound = false; |
Brandon Wyman | 3343e82 | 2017-11-03 16:54:11 -0500 | [diff] [blame] | 145 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 146 | /** @brief True if the power is on. */ |
| 147 | bool powerOn = false; |
Brandon Wyman | 431fbe4 | 2017-08-18 16:22:09 -0500 | [diff] [blame] | 148 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 149 | /** |
| 150 | * @brief Equal to FAULT_COUNT if power on fault has been |
| 151 | * detected. |
| 152 | */ |
| 153 | size_t powerOnFault = 0; |
Brandon Wyman | 764c797 | 2017-08-22 17:05:36 -0500 | [diff] [blame] | 154 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 155 | /** |
| 156 | * @brief Interval to setting powerOn to true. |
| 157 | * |
| 158 | * The amount of time to wait from power state on to setting the |
| 159 | * internal powerOn state to true. The amount of time the power supply |
| 160 | * is allowed to delay setting DGood/PG#. |
| 161 | */ |
| 162 | std::chrono::seconds powerOnInterval; |
Brandon Wyman | 431fbe4 | 2017-08-18 16:22:09 -0500 | [diff] [blame] | 163 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 164 | /** |
| 165 | * @brief Timer used to delay setting the internal powerOn state. |
| 166 | * |
| 167 | * The timer used to do the callback after the power state has been on |
| 168 | * long enough. |
| 169 | */ |
| 170 | sdeventplus::utility::Timer<sdeventplus::ClockId::Monotonic> powerOnTimer; |
Brandon Wyman | 431fbe4 | 2017-08-18 16:22:09 -0500 | [diff] [blame] | 171 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 172 | /** @brief Used to subscribe to D-Bus power on state changes */ |
| 173 | std::unique_ptr<sdbusplus::bus::match_t> powerOnMatch; |
Brandon Wyman | 431fbe4 | 2017-08-18 16:22:09 -0500 | [diff] [blame] | 174 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 175 | /** @brief Indicates that a read failure has occurred. |
| 176 | * |
| 177 | * @details This will be incremented each time a read failure is |
| 178 | * encountered. If it is incremented to FAULT_COUNT, an error |
| 179 | * will be logged. |
| 180 | */ |
| 181 | size_t readFail = 0; |
Brandon Wyman | e4af980 | 2017-11-13 15:58:33 -0600 | [diff] [blame] | 182 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 183 | /** @brief Has a PMBus read failure already been logged? */ |
| 184 | bool readFailLogged = false; |
Brandon Wyman | 442035f | 2017-08-08 15:58:45 -0500 | [diff] [blame] | 185 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 186 | /** |
| 187 | * @brief Indicates an input fault or warning if equal to FAULT_COUNT. |
| 188 | * |
| 189 | * @details This is the "INPUT FAULT OR WARNING" bit in the high byte, |
| 190 | * or the VIN_UV_FAULT bit in the low byte in the STATUS_WORD |
| 191 | * command response. If either of those bits are on, this will |
| 192 | * be incremented. |
| 193 | */ |
| 194 | size_t inputFault = 0; |
Brandon Wyman | 1029554 | 2017-08-09 18:20:44 -0500 | [diff] [blame] | 195 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 196 | /** |
| 197 | * @brief Indicates output over current fault if equal to FAULT_COUNT |
| 198 | * |
| 199 | * @details This is incremented when the "IOUT_OC_FAULT" bit in the low |
| 200 | * byte from the STATUS_WORD command response is on. |
| 201 | */ |
| 202 | size_t outputOCFault = 0; |
Brandon Wyman | b165c25 | 2017-08-25 18:59:54 -0500 | [diff] [blame] | 203 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 204 | /** |
| 205 | * @brief Indicates output overvoltage fault if equal to FAULT_COUNT. |
| 206 | * |
| 207 | * @details This is incremented when the "VOUT_OV_FAULT" bit in the |
| 208 | * STATUS_WORD command response is on. |
| 209 | */ |
| 210 | size_t outputOVFault = 0; |
Brandon Wyman | ab05c07 | 2017-08-30 18:26:41 -0500 | [diff] [blame] | 211 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 212 | /** |
| 213 | * @brief Indicates a fan fault or warning condition was detected if |
| 214 | * equal to FAULT_COUNT. |
| 215 | * |
| 216 | * @details This is incremented when the 'FAN_FAULT' bit in the |
| 217 | * STATUS_WORD command response is on. |
| 218 | */ |
| 219 | size_t fanFault = 0; |
Brandon Wyman | 12661f1 | 2017-08-31 15:28:21 -0500 | [diff] [blame] | 220 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 221 | /** |
| 222 | * @brief Indicates a temperature fault or warn condition was detected |
| 223 | * if equal to FAULT_COUNT. |
| 224 | * |
| 225 | * @details This is incremented when the 'TEMPERATURE_FAULT_WARN' bit |
| 226 | * in the STATUS_WORD command response is on, or if the |
| 227 | * 'OT_FAULT' bit in the STATUS_TEMPERATURE command response |
| 228 | * is on. |
| 229 | */ |
| 230 | size_t temperatureFault = 0; |
Brandon Wyman | 875b363 | 2017-09-13 18:46:03 -0500 | [diff] [blame] | 231 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 232 | /** |
| 233 | * @brief Class that manages the input power history records. |
| 234 | */ |
| 235 | std::unique_ptr<history::RecordManager> recordManager; |
Matt Spinler | 8238414 | 2018-01-18 14:15:03 -0600 | [diff] [blame] | 236 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 237 | /** |
| 238 | * @brief The D-Bus object for the average input power history |
| 239 | */ |
| 240 | std::unique_ptr<history::Average> average; |
Matt Spinler | 8238414 | 2018-01-18 14:15:03 -0600 | [diff] [blame] | 241 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 242 | /** |
| 243 | * @brief The D-Bus object for the maximum input power history |
| 244 | */ |
| 245 | std::unique_ptr<history::Maximum> maximum; |
Matt Spinler | 8238414 | 2018-01-18 14:15:03 -0600 | [diff] [blame] | 246 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 247 | /** |
| 248 | * @brief The base D-Bus object path to use for the average |
| 249 | * and maximum objects. |
| 250 | */ |
| 251 | std::string historyObjectPath; |
Matt Spinler | 8238414 | 2018-01-18 14:15:03 -0600 | [diff] [blame] | 252 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 253 | /** |
| 254 | * @brief The GPIO device path to use for sending the 'sync' |
| 255 | * command to the PS. |
| 256 | */ |
| 257 | std::string syncGPIODevPath; |
Matt Spinler | 8238414 | 2018-01-18 14:15:03 -0600 | [diff] [blame] | 258 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 259 | /** |
| 260 | * @brief The GPIO number to use for sending the 'sync' |
| 261 | * command to the PS. |
| 262 | */ |
| 263 | size_t syncGPIONumber = 0; |
Matt Spinler | 8238414 | 2018-01-18 14:15:03 -0600 | [diff] [blame] | 264 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 265 | /** |
George Liu | 690e780 | 2019-08-23 11:04:01 +0800 | [diff] [blame] | 266 | * @brief The type of the power supply inventory pmbus access. |
| 267 | */ |
Lei YU | 4070546 | 2019-10-09 17:07:11 +0800 | [diff] [blame] | 268 | phosphor::pmbus::Type inventoryPMBusAccessType = |
| 269 | phosphor::pmbus::Type::Base; |
George Liu | 690e780 | 2019-08-23 11:04:01 +0800 | [diff] [blame] | 270 | |
| 271 | /** |
| 272 | * @brief The JSON from the parsed power supply FRU JSON File. |
| 273 | */ |
| 274 | nlohmann::json fruJson; |
| 275 | |
| 276 | /** |
| 277 | * @brief get the power supply access type from the JSON file. |
| 278 | * |
| 279 | */ |
| 280 | void getAccessType(); |
| 281 | |
| 282 | /** |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 283 | * @brief Callback for inventory property changes |
| 284 | * |
| 285 | * Process change of Present property for power supply. |
| 286 | * |
| 287 | * @param[in] msg - Data associated with Present change signal |
| 288 | * |
| 289 | */ |
| 290 | void inventoryChanged(sdbusplus::message::message& msg); |
Brandon Wyman | 1029554 | 2017-08-09 18:20:44 -0500 | [diff] [blame] | 291 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 292 | /** |
| 293 | * Updates the presence status by querying D-Bus |
| 294 | * |
| 295 | * The D-Bus inventory properties for this power supply will be read to |
| 296 | * determine if the power supply is present or not and update this |
| 297 | * objects present member variable to reflect current status. |
| 298 | */ |
| 299 | void updatePresence(); |
Brandon Wyman | 431fbe4 | 2017-08-18 16:22:09 -0500 | [diff] [blame] | 300 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 301 | /** |
| 302 | * @brief Updates the poweredOn status by querying D-Bus |
| 303 | * |
| 304 | * The D-Bus property for the system power state will be read to |
| 305 | * determine if the system is powered on or not. |
| 306 | */ |
| 307 | void updatePowerState(); |
Brandon Wyman | 431fbe4 | 2017-08-18 16:22:09 -0500 | [diff] [blame] | 308 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 309 | /** |
| 310 | * @brief Callback for power state property changes |
| 311 | * |
| 312 | * Process changes to the powered on stat property for the system. |
| 313 | * |
| 314 | * @param[in] msg - Data associated with the power state signal |
| 315 | */ |
| 316 | void powerStateChanged(sdbusplus::message::message& msg); |
Brandon Wyman | 431fbe4 | 2017-08-18 16:22:09 -0500 | [diff] [blame] | 317 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 318 | /** |
| 319 | * @brief Wrapper for PMBus::read() and adding metadata |
| 320 | * |
| 321 | * @param[out] nv - NamesValues instance to store cmd string and value |
| 322 | * @param[in] cmd - String for the command to read data from. |
| 323 | * @param[in] type - The type of file to read the command from. |
| 324 | */ |
| 325 | void captureCmd(util::NamesValues& nv, const std::string& cmd, |
Lei YU | ab09332 | 2019-10-09 16:43:22 +0800 | [diff] [blame] | 326 | phosphor::pmbus::Type type); |
Brandon Wyman | a1e9634 | 2017-09-25 16:47:44 -0500 | [diff] [blame] | 327 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 328 | /** |
| 329 | * @brief Checks for input voltage faults and logs error if needed. |
| 330 | * |
| 331 | * Check for voltage input under voltage fault (VIN_UV_FAULT) and/or |
| 332 | * input fault or warning (INPUT_FAULT), and logs appropriate error(s). |
| 333 | * |
| 334 | * @param[in] statusWord - 2 byte STATUS_WORD value read from sysfs |
| 335 | */ |
| 336 | void checkInputFault(const uint16_t statusWord); |
Brandon Wyman | 603cc00 | 2017-08-28 18:17:58 -0500 | [diff] [blame] | 337 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 338 | /** |
| 339 | * @brief Checks for power good negated or unit is off in wrong state |
| 340 | * |
| 341 | * @param[in] statusWord - 2 byte STATUS_WORD value read from sysfs |
| 342 | */ |
| 343 | void checkPGOrUnitOffFault(const uint16_t statusWord); |
Brandon Wyman | 603cc00 | 2017-08-28 18:17:58 -0500 | [diff] [blame] | 344 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 345 | /** |
| 346 | * @brief Checks for output current over current fault. |
| 347 | * |
| 348 | * IOUT_OC_FAULT is checked, if on, appropriate error is logged. |
| 349 | * |
| 350 | * @param[in] statusWord - 2 byte STATUS_WORD value read from sysfs |
| 351 | */ |
| 352 | void checkCurrentOutOverCurrentFault(const uint16_t statusWord); |
Brandon Wyman | 603cc00 | 2017-08-28 18:17:58 -0500 | [diff] [blame] | 353 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 354 | /** |
| 355 | * @brief Checks for output overvoltage fault. |
| 356 | * |
| 357 | * VOUT_OV_FAULT is checked, if on, appropriate error is logged. |
| 358 | * |
| 359 | * @param[in] statusWord - 2 byte STATUS_WORD value read from sysfs |
| 360 | */ |
| 361 | void checkOutputOvervoltageFault(const uint16_t statusWord); |
Brandon Wyman | ab05c07 | 2017-08-30 18:26:41 -0500 | [diff] [blame] | 362 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 363 | /** |
| 364 | * @brief Checks for a fan fault or warning condition. |
| 365 | * |
| 366 | * The high byte of STATUS_WORD is checked to see if the "FAN FAULT OR |
| 367 | * WARNING" bit is turned on. If it is on, log an error. |
| 368 | * |
| 369 | * @param[in] statusWord - 2 byte STATUS_WORD value read from sysfs |
| 370 | */ |
| 371 | void checkFanFault(const uint16_t statusWord); |
Brandon Wyman | 12661f1 | 2017-08-31 15:28:21 -0500 | [diff] [blame] | 372 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 373 | /** |
| 374 | * @brief Checks for a temperature fault or warning condition. |
| 375 | * |
| 376 | * The low byte of STATUS_WORD is checked to see if the "TEMPERATURE |
| 377 | * FAULT OR WARNING" bit is turned on. If it is on, log an error, |
| 378 | * call out the power supply indicating the fault/warning condition. |
| 379 | * |
| 380 | * @parma[in] statusWord - 2 byte STATUS_WORD value read from sysfs |
| 381 | */ |
| 382 | void checkTemperatureFault(const uint16_t statusWord); |
Brandon Wyman | 875b363 | 2017-09-13 18:46:03 -0500 | [diff] [blame] | 383 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 384 | /** |
| 385 | * @brief Adds properties to the inventory. |
| 386 | * |
| 387 | * Reads the values from the device and writes them to the |
| 388 | * associated power supply D-Bus inventory object. |
| 389 | * |
| 390 | * This needs to be done on startup, and each time the presence |
| 391 | * state changes. |
| 392 | * |
| 393 | * Properties added: |
| 394 | * - Serial Number |
| 395 | * - Part Number |
George Liu | 690e780 | 2019-08-23 11:04:01 +0800 | [diff] [blame] | 396 | * - Manufacturer |
| 397 | * - Model |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 398 | */ |
| 399 | void updateInventory(); |
Matt Spinler | 234ce0d | 2018-01-04 15:06:57 -0600 | [diff] [blame] | 400 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 401 | /** |
| 402 | * @brief Toggles the GPIO to sync power supply input history readings |
| 403 | * |
| 404 | * This GPIO is connected to all supplies. This will clear the |
| 405 | * previous readings out of the supplies and restart them both at the |
| 406 | * same time zero and at record ID 0. The supplies will return 0 |
| 407 | * bytes of data for the input history command right after this until |
| 408 | * a new entry shows up. |
| 409 | * |
| 410 | * This will cause the code to delete all previous history data and |
| 411 | * start fresh. |
| 412 | */ |
| 413 | void syncHistory(); |
Matt Spinler | d734e65 | 2018-01-18 14:31:15 -0600 | [diff] [blame] | 414 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 415 | /** |
| 416 | * @brief Reads the most recent input history record from the power |
| 417 | * supply and updates the average and maximum properties in |
| 418 | * D-Bus if there is a new reading available. |
| 419 | * |
| 420 | * This will still run every time analyze() is called so code can |
| 421 | * post new data as soon as possible and the timestamp will more |
| 422 | * accurately reflect the correct time. |
| 423 | * |
| 424 | * D-Bus is only updated if there is a change and the oldest record |
| 425 | * will be pruned if the property already contains the max number of |
| 426 | * records. |
| 427 | */ |
| 428 | void updateHistory(); |
Brandon Wyman | 24e422f | 2017-07-25 19:40:14 -0500 | [diff] [blame] | 429 | }; |
| 430 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 431 | } // namespace psu |
| 432 | } // namespace power |
Lei YU | ab09332 | 2019-10-09 16:43:22 +0800 | [diff] [blame] | 433 | } // namespace phosphor |