Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Brandon Wyman | 8d19577 | 2020-01-27 15:03:51 -0600 | [diff] [blame] | 3 | #include "pmbus.hpp" |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 4 | #include "types.hpp" |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 5 | #include "util.hpp" |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 6 | #include "utility.hpp" |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 7 | |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 8 | #include <gpiod.hpp> |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 9 | #include <sdbusplus/bus/match.hpp> |
| 10 | |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 11 | #include <filesystem> |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 12 | #include <stdexcept> |
| 13 | |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 14 | namespace phosphor::power::psu |
| 15 | { |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 16 | |
Chanh Nguyen | c12c53b | 2021-04-06 17:24:47 +0700 | [diff] [blame] | 17 | #if IBM_VPD |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 18 | // PMBus device driver "file name" to read for CCIN value. |
| 19 | constexpr auto CCIN = "ccin"; |
| 20 | constexpr auto PART_NUMBER = "part_number"; |
| 21 | constexpr auto FRU_NUMBER = "fru"; |
| 22 | constexpr auto SERIAL_HEADER = "header"; |
| 23 | constexpr auto SERIAL_NUMBER = "serial_number"; |
| 24 | constexpr auto FW_VERSION = "fw_version"; |
| 25 | |
| 26 | // The D-Bus property name to update with the CCIN value. |
| 27 | constexpr auto MODEL_PROP = "Model"; |
| 28 | constexpr auto PN_PROP = "PartNumber"; |
| 29 | constexpr auto SN_PROP = "SerialNumber"; |
| 30 | constexpr auto VERSION_PROP = "Version"; |
| 31 | |
| 32 | // ipzVPD Keyword sizes |
| 33 | static constexpr auto FL_KW_SIZE = 20; |
| 34 | #endif |
| 35 | |
Brandon Wyman | f65c406 | 2020-08-19 13:15:53 -0500 | [diff] [blame] | 36 | constexpr auto LOG_LIMIT = 3; |
| 37 | |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 38 | /** |
| 39 | * @class PowerSupply |
| 40 | * Represents a PMBus power supply device. |
| 41 | */ |
| 42 | class PowerSupply |
| 43 | { |
| 44 | public: |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 45 | PowerSupply() = delete; |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 46 | PowerSupply(const PowerSupply&) = delete; |
| 47 | PowerSupply(PowerSupply&&) = delete; |
| 48 | PowerSupply& operator=(const PowerSupply&) = delete; |
| 49 | PowerSupply& operator=(PowerSupply&&) = delete; |
| 50 | ~PowerSupply() = default; |
| 51 | |
| 52 | /** |
Brandon Wyman | c63941c | 2020-01-27 16:49:33 -0600 | [diff] [blame] | 53 | * @param[in] invpath - String for inventory path to use |
| 54 | * @param[in] i2cbus - The bus number this power supply is on |
| 55 | * @param[in] i2caddr - The 16-bit I2C address of the power supply |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 56 | * @param[in] gpioLineName - The gpio-line-name to read for presence. See |
| 57 | * 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] | 58 | */ |
Brandon Wyman | c63941c | 2020-01-27 16:49:33 -0600 | [diff] [blame] | 59 | PowerSupply(sdbusplus::bus::bus& bus, const std::string& invpath, |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 60 | std::uint8_t i2cbus, const std::uint16_t i2caddr, |
| 61 | const std::string& gpioLineName); |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 62 | |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 63 | phosphor::pmbus::PMBusBase& getPMBus() |
| 64 | { |
| 65 | return *pmbusIntf; |
| 66 | } |
| 67 | |
Adriana Kobylak | 3ca062a | 2021-10-20 15:27:23 +0000 | [diff] [blame] | 68 | GPIOInterfaceBase* getPresenceGPIO() |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 69 | { |
| 70 | return presenceGPIO.get(); |
| 71 | } |
| 72 | |
B. J. Wyman | d8b8cb1 | 2021-07-15 22:03:34 +0000 | [diff] [blame] | 73 | std::string getPresenceGPIOName() const |
| 74 | { |
| 75 | if (presenceGPIO != nullptr) |
| 76 | { |
| 77 | return presenceGPIO->getName(); |
| 78 | } |
| 79 | else |
| 80 | { |
| 81 | return std::string(); |
| 82 | } |
| 83 | } |
| 84 | |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 85 | /** |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 86 | * Power supply specific function to analyze for faults/errors. |
| 87 | * |
| 88 | * Various PMBus status bits will be checked for fault conditions. |
| 89 | * If a certain fault bits are on, the appropriate error will be |
| 90 | * committed. |
| 91 | */ |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 92 | void analyze(); |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 93 | |
| 94 | /** |
Brandon Wyman | 59a3579 | 2020-06-04 12:37:40 -0500 | [diff] [blame] | 95 | * Write PMBus ON_OFF_CONFIG |
| 96 | * |
| 97 | * This function will be called to cause the PMBus device driver to send the |
| 98 | * ON_OFF_CONFIG command. Takes one byte of data. |
| 99 | * |
| 100 | * @param[in] data - The ON_OFF_CONFIG data byte mask. |
| 101 | */ |
| 102 | void onOffConfig(uint8_t data); |
| 103 | |
| 104 | /** |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 105 | * Write PMBus CLEAR_FAULTS |
| 106 | * |
| 107 | * This function will be called in various situations in order to clear |
| 108 | * any fault status bits that may have been set, in order to start over |
| 109 | * with a clean state. Presence changes and power state changes will |
| 110 | * want to clear any faults logged. |
| 111 | */ |
Brandon Wyman | 3c20846 | 2020-05-13 16:25:58 -0500 | [diff] [blame] | 112 | void clearFaults(); |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 113 | |
| 114 | /** |
| 115 | * @brief Adds properties to the inventory. |
| 116 | * |
| 117 | * Reads the values from the device and writes them to the |
| 118 | * associated power supply D-Bus inventory object. |
| 119 | * |
| 120 | * This needs to be done on startup, and each time the presence |
| 121 | * state changes. |
| 122 | * |
| 123 | * Properties added: |
| 124 | * - Serial Number |
| 125 | * - Part Number |
| 126 | * - CCIN (Customer Card Identification Number) - added as the Model |
| 127 | * - Firmware version |
| 128 | */ |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 129 | void updateInventory(); |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 130 | |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 131 | /** |
| 132 | * @brief Accessor function to indicate present status |
| 133 | */ |
| 134 | bool isPresent() const |
| 135 | { |
| 136 | return present; |
| 137 | } |
| 138 | |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 139 | /** |
Brandon Wyman | fed0ba2 | 2020-09-26 20:02:51 -0500 | [diff] [blame] | 140 | * @brief Returns the last read value from STATUS_WORD. |
| 141 | */ |
| 142 | uint64_t getStatusWord() const |
| 143 | { |
| 144 | return statusWord; |
| 145 | } |
| 146 | |
| 147 | /** |
Brandon Wyman | f07bc79 | 2021-10-12 19:00:35 +0000 | [diff] [blame] | 148 | * @brief Returns the last read value from STATUS_INPUT. |
| 149 | */ |
| 150 | uint64_t getStatusInput() const |
| 151 | { |
| 152 | return statusInput; |
| 153 | } |
| 154 | |
| 155 | /** |
Jay Meyer | 10d9405 | 2020-11-30 14:41:21 -0600 | [diff] [blame] | 156 | * @brief Returns the last read value from STATUS_MFR. |
| 157 | */ |
| 158 | uint64_t getMFRFault() const |
| 159 | { |
| 160 | return statusMFR; |
| 161 | } |
| 162 | |
| 163 | /** |
Brandon Wyman | 85c7bf4 | 2021-10-19 22:28:48 +0000 | [diff] [blame] | 164 | * @brief Returns the last read value from STATUS_CML. |
| 165 | */ |
| 166 | uint64_t getStatusCML() const |
| 167 | { |
| 168 | return statusCML; |
| 169 | } |
| 170 | |
| 171 | /** |
Brandon Wyman | 6710ba2 | 2021-10-27 17:39:31 +0000 | [diff] [blame] | 172 | * @brief Returns the last read value from STATUS_VOUT. |
| 173 | */ |
| 174 | uint64_t getStatusVout() const |
| 175 | { |
| 176 | return statusVout; |
| 177 | } |
| 178 | |
| 179 | /** |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 180 | * @brief Returns true if a fault was found. |
| 181 | */ |
| 182 | bool isFaulted() const |
| 183 | { |
Brandon Wyman | 4176d6b | 2020-10-07 17:41:06 -0500 | [diff] [blame] | 184 | return (faultFound || hasCommFault()); |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 185 | } |
| 186 | |
| 187 | /** |
Brandon Wyman | b76ab24 | 2020-09-16 18:06:06 -0500 | [diff] [blame] | 188 | * @brief Return whether a fault has been logged for this power supply |
| 189 | */ |
| 190 | bool isFaultLogged() const |
| 191 | { |
| 192 | return faultLogged; |
| 193 | } |
| 194 | |
| 195 | /** |
| 196 | * @brief Called when a fault for this power supply has been logged. |
| 197 | */ |
| 198 | void setFaultLogged() |
| 199 | { |
| 200 | faultLogged = true; |
| 201 | } |
| 202 | |
| 203 | /** |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 204 | * @brief Returns true if INPUT fault occurred. |
| 205 | */ |
| 206 | bool hasInputFault() const |
| 207 | { |
| 208 | return inputFault; |
| 209 | } |
| 210 | |
| 211 | /** |
| 212 | * @brief Returns true if MFRSPECIFIC occurred. |
| 213 | */ |
| 214 | bool hasMFRFault() const |
| 215 | { |
| 216 | return mfrFault; |
| 217 | } |
| 218 | |
| 219 | /** |
| 220 | * @brief Returns true if VIN_UV_FAULT occurred. |
| 221 | */ |
| 222 | bool hasVINUVFault() const |
| 223 | { |
| 224 | return vinUVFault; |
| 225 | } |
| 226 | |
Brandon Wyman | c9efe41 | 2020-10-09 15:42:50 -0500 | [diff] [blame] | 227 | /** |
Brandon Wyman | 6710ba2 | 2021-10-27 17:39:31 +0000 | [diff] [blame] | 228 | * @brief Returns true if VOUT_OV_FAULT occurred. |
| 229 | */ |
| 230 | bool hasVoutOVFault() const |
| 231 | { |
| 232 | return voutOVFault; |
| 233 | } |
| 234 | |
| 235 | /** |
Brandon Wyman | c9efe41 | 2020-10-09 15:42:50 -0500 | [diff] [blame] | 236 | * @brief Returns the device path |
| 237 | * |
| 238 | * This can be used for error call outs. |
| 239 | * Example: /sys/bus/i2c/devices/3-0068 |
| 240 | */ |
Brandon Wyman | 4176d6b | 2020-10-07 17:41:06 -0500 | [diff] [blame] | 241 | const std::string getDevicePath() const |
| 242 | { |
| 243 | return pmbusIntf->path(); |
| 244 | } |
| 245 | |
Brandon Wyman | c9efe41 | 2020-10-09 15:42:50 -0500 | [diff] [blame] | 246 | /** |
| 247 | * @brief Returns this power supplies inventory path. |
| 248 | * |
| 249 | * This can be used for error call outs. |
| 250 | * Example: |
| 251 | * /xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1 |
| 252 | */ |
Brandon Wyman | 7e49527 | 2020-09-26 19:57:46 -0500 | [diff] [blame] | 253 | const std::string& getInventoryPath() const |
| 254 | { |
| 255 | return inventoryPath; |
| 256 | } |
| 257 | |
Brandon Wyman | c9efe41 | 2020-10-09 15:42:50 -0500 | [diff] [blame] | 258 | /** |
| 259 | * @brief Returns the firmware revision version read from the power supply |
| 260 | */ |
| 261 | const std::string& getFWVersion() const |
| 262 | { |
| 263 | return fwVersion; |
| 264 | } |
| 265 | |
Adriana Kobylak | 572a905 | 2021-03-30 15:58:07 +0000 | [diff] [blame] | 266 | /** |
| 267 | * @brief Returns the model name of the power supply |
| 268 | */ |
| 269 | const std::string& getModelName() const |
| 270 | { |
| 271 | return modelName; |
| 272 | } |
| 273 | |
Brandon Wyman | f65c406 | 2020-08-19 13:15:53 -0500 | [diff] [blame] | 274 | /** @brief Returns true if the number of failed reads exceeds limit |
| 275 | * TODO: or CML bit on. |
| 276 | */ |
| 277 | bool hasCommFault() const |
| 278 | { |
Brandon Wyman | 85c7bf4 | 2021-10-19 22:28:48 +0000 | [diff] [blame] | 279 | return ((readFail >= LOG_LIMIT) || (cmlFault)); |
Brandon Wyman | f65c406 | 2020-08-19 13:15:53 -0500 | [diff] [blame] | 280 | } |
| 281 | |
Adriana Kobylak | 4175ffb | 2021-08-02 14:51:05 +0000 | [diff] [blame] | 282 | /** |
| 283 | * @brief Reads the pmbus input voltage and returns that actual voltage |
| 284 | * reading and the calculated input voltage based on thresholds. |
| 285 | * @param[out] actualInputVoltage - The actual voltage reading, in Volts. |
| 286 | * @param[out] inputVoltage - A rounded up/down value of the actual input |
| 287 | * voltage based on thresholds, in Volts. |
| 288 | */ |
| 289 | void getInputVoltage(double& actualInputVoltage, int& inputVoltage) const; |
| 290 | |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 291 | private: |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 292 | /** @brief systemd bus member */ |
| 293 | sdbusplus::bus::bus& bus; |
| 294 | |
Brandon Wyman | 9564e94 | 2020-11-10 14:01:42 -0600 | [diff] [blame] | 295 | /** @brief Will be updated to the latest/lastvalue read from STATUS_WORD.*/ |
Brandon Wyman | fed0ba2 | 2020-09-26 20:02:51 -0500 | [diff] [blame] | 296 | uint64_t statusWord = 0; |
| 297 | |
Brandon Wyman | f07bc79 | 2021-10-12 19:00:35 +0000 | [diff] [blame] | 298 | /** @brief Will be updated to the latest/lastvalue read from STATUS_INPUT.*/ |
| 299 | uint64_t statusInput = 0; |
| 300 | |
Jay Meyer | 10d9405 | 2020-11-30 14:41:21 -0600 | [diff] [blame] | 301 | /** @brief Will be updated to the latest/lastvalue read from STATUS_MFR.*/ |
| 302 | uint64_t statusMFR = 0; |
| 303 | |
Brandon Wyman | 85c7bf4 | 2021-10-19 22:28:48 +0000 | [diff] [blame] | 304 | /** @brief Will be updated to the latest/last value read from STATUS_CML.*/ |
| 305 | uint64_t statusCML = 0; |
| 306 | |
Brandon Wyman | 6710ba2 | 2021-10-27 17:39:31 +0000 | [diff] [blame] | 307 | /** @brief Will be updated to the latest/last value read from STATUS_VOUT.*/ |
| 308 | uint64_t statusVout = 0; |
| 309 | |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 310 | /** @brief True if a fault has already been found and not cleared */ |
| 311 | bool faultFound = false; |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 312 | |
Brandon Wyman | b76ab24 | 2020-09-16 18:06:06 -0500 | [diff] [blame] | 313 | /** @brief True if an error for a fault has already been logged. */ |
| 314 | bool faultLogged = false; |
| 315 | |
Brandon Wyman | 85c7bf4 | 2021-10-19 22:28:48 +0000 | [diff] [blame] | 316 | /** @brief True if bit 2 of STATUS_WORD low byte is on. */ |
| 317 | bool cmlFault = false; |
| 318 | |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 319 | /** @brief True if bit 5 of STATUS_WORD high byte is on. */ |
| 320 | bool inputFault = false; |
| 321 | |
| 322 | /** @brief True if bit 4 of STATUS_WORD high byte is on. */ |
| 323 | bool mfrFault = false; |
| 324 | |
| 325 | /** @brief True if bit 3 of STATUS_WORD low byte is on. */ |
| 326 | bool vinUVFault = false; |
| 327 | |
Brandon Wyman | 6710ba2 | 2021-10-27 17:39:31 +0000 | [diff] [blame] | 328 | /** @brief True if bit 5 of STATUS_WORD low byte is on. */ |
| 329 | bool voutOVFault = false; |
| 330 | |
Brandon Wyman | f65c406 | 2020-08-19 13:15:53 -0500 | [diff] [blame] | 331 | /** @brief Count of the number of read failures. */ |
| 332 | size_t readFail = 0; |
| 333 | |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 334 | /** |
| 335 | * @brief D-Bus path to use for this power supply's inventory status. |
| 336 | **/ |
| 337 | std::string inventoryPath; |
| 338 | |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 339 | /** |
| 340 | * @brief The libgpiod object for monitoring PSU presence |
| 341 | */ |
Adriana Kobylak | 3ca062a | 2021-10-20 15:27:23 +0000 | [diff] [blame] | 342 | std::unique_ptr<GPIOInterfaceBase> presenceGPIO = nullptr; |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 343 | |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 344 | /** @brief True if the power supply is present. */ |
| 345 | bool present = false; |
| 346 | |
Adriana Kobylak | 572a905 | 2021-03-30 15:58:07 +0000 | [diff] [blame] | 347 | /** @brief Power supply model name. */ |
| 348 | std::string modelName; |
| 349 | |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 350 | /** @brief D-Bus match variable used to subscribe to Present property |
| 351 | * changes. |
| 352 | **/ |
| 353 | std::unique_ptr<sdbusplus::bus::match_t> presentMatch; |
| 354 | |
| 355 | /** @brief D-Bus match variable used to subscribe for Present property |
| 356 | * interface added. |
| 357 | */ |
| 358 | std::unique_ptr<sdbusplus::bus::match_t> presentAddedMatch; |
| 359 | |
| 360 | /** |
Brandon Wyman | 8d19577 | 2020-01-27 15:03:51 -0600 | [diff] [blame] | 361 | * @brief Pointer to the PMBus interface |
| 362 | * |
| 363 | * Used to read or write to/from PMBus power supply devices. |
| 364 | */ |
Brandon Wyman | 9564e94 | 2020-11-10 14:01:42 -0600 | [diff] [blame] | 365 | std::unique_ptr<phosphor::pmbus::PMBusBase> pmbusIntf = nullptr; |
Brandon Wyman | 8d19577 | 2020-01-27 15:03:51 -0600 | [diff] [blame] | 366 | |
Brandon Wyman | c9efe41 | 2020-10-09 15:42:50 -0500 | [diff] [blame] | 367 | /** @brief Stored copy of the firmware version/revision string */ |
| 368 | std::string fwVersion; |
| 369 | |
Brandon Wyman | 8d19577 | 2020-01-27 15:03:51 -0600 | [diff] [blame] | 370 | /** |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 371 | * @brief The file system path used for binding the device driver. |
| 372 | */ |
| 373 | const std::filesystem::path bindPath; |
| 374 | |
| 375 | /* @brief The string to pass in for binding the device driver. */ |
| 376 | std::string bindDevice; |
| 377 | |
| 378 | /** |
| 379 | * @brief Binds or unbinds the power supply device driver |
| 380 | * |
| 381 | * Called when a presence change is detected to either bind the device |
| 382 | * driver for the power supply when it is installed, or unbind the device |
| 383 | * driver when the power supply is removed. |
| 384 | * |
| 385 | * Writes <device> to <path>/bind (or unbind) |
| 386 | * |
| 387 | * @param present - when true, will bind the device driver |
| 388 | * when false, will unbind the device driver |
| 389 | */ |
| 390 | void bindOrUnbindDriver(bool present); |
| 391 | |
| 392 | /** |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 393 | * @brief Updates the presence status by querying D-Bus |
| 394 | * |
| 395 | * The D-Bus inventory properties for this power supply will be read to |
| 396 | * determine if the power supply is present or not and update this |
| 397 | * object's present member variable to reflect current status. |
| 398 | **/ |
| 399 | void updatePresence(); |
| 400 | |
| 401 | /** |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 402 | * @brief Updates the power supply presence by reading the GPIO line. |
| 403 | */ |
| 404 | void updatePresenceGPIO(); |
| 405 | |
| 406 | /** |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 407 | * @brief Callback for inventory property changes |
| 408 | * |
| 409 | * Process change of Present property for power supply. |
| 410 | * |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 411 | * This is used if we are watching the D-Bus properties instead of reading |
| 412 | * the GPIO presence line ourselves. |
| 413 | * |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 414 | * @param[in] msg - Data associated with Present change signal |
| 415 | **/ |
| 416 | void inventoryChanged(sdbusplus::message::message& msg); |
Brandon Wyman | 9a507db | 2021-02-25 16:15:22 -0600 | [diff] [blame] | 417 | |
| 418 | /** |
| 419 | * @brief Callback for inventory property added. |
| 420 | * |
| 421 | * Process add of the interface with the Present property for power supply. |
| 422 | * |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 423 | * This is used if we are watching the D-Bus properties instead of reading |
| 424 | * the GPIO presence line ourselves. |
| 425 | * |
Brandon Wyman | 9a507db | 2021-02-25 16:15:22 -0600 | [diff] [blame] | 426 | * @param[in] msg - Data associated with Present add signal |
| 427 | **/ |
| 428 | void inventoryAdded(sdbusplus::message::message& msg); |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 429 | }; |
| 430 | |
| 431 | } // namespace phosphor::power::psu |