Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 1 | #include "config.h" |
| 2 | |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 3 | #include "power_supply.hpp" |
| 4 | |
| 5 | #include "types.hpp" |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 6 | #include "util.hpp" |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 7 | |
Brandon Wyman | df13c3a | 2020-12-15 14:25:22 -0600 | [diff] [blame] | 8 | #include <fmt/format.h> |
| 9 | |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 10 | #include <xyz/openbmc_project/Common/Device/error.hpp> |
| 11 | |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 12 | #include <chrono> // sleep_for() |
| 13 | #include <cstdint> // uint8_t... |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 14 | #include <fstream> |
| 15 | #include <thread> // sleep_for() |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 16 | |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 17 | namespace phosphor::power::psu |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 18 | { |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 19 | // Amount of time in milliseconds to delay between power supply going from |
| 20 | // missing to present before running the bind command(s). |
| 21 | constexpr auto bindDelay = 1000; |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 22 | |
| 23 | using namespace phosphor::logging; |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 24 | using namespace sdbusplus::xyz::openbmc_project::Common::Device::Error; |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 25 | |
Brandon Wyman | 510acaa | 2020-11-05 18:32:04 -0600 | [diff] [blame] | 26 | PowerSupply::PowerSupply(sdbusplus::bus::bus& bus, const std::string& invpath, |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 27 | std::uint8_t i2cbus, std::uint16_t i2caddr, |
| 28 | const std::string& gpioLineName) : |
Brandon Wyman | 510acaa | 2020-11-05 18:32:04 -0600 | [diff] [blame] | 29 | bus(bus), |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 30 | inventoryPath(invpath), bindPath("/sys/bus/i2c/drivers/ibm-cffps") |
Brandon Wyman | 510acaa | 2020-11-05 18:32:04 -0600 | [diff] [blame] | 31 | { |
| 32 | if (inventoryPath.empty()) |
| 33 | { |
| 34 | throw std::invalid_argument{"Invalid empty inventoryPath"}; |
| 35 | } |
| 36 | |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 37 | if (gpioLineName.empty()) |
| 38 | { |
| 39 | throw std::invalid_argument{"Invalid empty gpioLineName"}; |
| 40 | } |
Brandon Wyman | 510acaa | 2020-11-05 18:32:04 -0600 | [diff] [blame] | 41 | |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 42 | log<level::DEBUG>(fmt::format("gpioLineName: {}", gpioLineName).c_str()); |
| 43 | presenceGPIO = createGPIO(gpioLineName); |
Brandon Wyman | 510acaa | 2020-11-05 18:32:04 -0600 | [diff] [blame] | 44 | |
| 45 | std::ostringstream ss; |
| 46 | ss << std::hex << std::setw(4) << std::setfill('0') << i2caddr; |
| 47 | std::string addrStr = ss.str(); |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 48 | std::string busStr = std::to_string(i2cbus); |
| 49 | bindDevice = busStr; |
| 50 | bindDevice.append("-"); |
| 51 | bindDevice.append(addrStr); |
| 52 | |
Brandon Wyman | 510acaa | 2020-11-05 18:32:04 -0600 | [diff] [blame] | 53 | pmbusIntf = phosphor::pmbus::createPMBus(i2cbus, addrStr); |
| 54 | |
| 55 | // Get the current state of the Present property. |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 56 | try |
| 57 | { |
| 58 | updatePresenceGPIO(); |
| 59 | } |
| 60 | catch (...) |
| 61 | { |
| 62 | // If the above attempt to use the GPIO failed, it likely means that the |
| 63 | // GPIOs are in use by the kernel, meaning it is using gpio-keys. |
| 64 | // So, I should rely on phosphor-gpio-presence to update D-Bus, and |
| 65 | // work that way for power supply presence. |
| 66 | presenceGPIO = nullptr; |
| 67 | // Setup the functions to call when the D-Bus inventory path for the |
| 68 | // Present property changes. |
| 69 | presentMatch = std::make_unique<sdbusplus::bus::match_t>( |
| 70 | bus, |
| 71 | sdbusplus::bus::match::rules::propertiesChanged(inventoryPath, |
| 72 | INVENTORY_IFACE), |
| 73 | [this](auto& msg) { this->inventoryChanged(msg); }); |
| 74 | |
| 75 | presentAddedMatch = std::make_unique<sdbusplus::bus::match_t>( |
| 76 | bus, |
| 77 | sdbusplus::bus::match::rules::interfacesAdded() + |
| 78 | sdbusplus::bus::match::rules::argNpath(0, inventoryPath), |
| 79 | [this](auto& msg) { this->inventoryAdded(msg); }); |
| 80 | |
| 81 | updatePresence(); |
| 82 | updateInventory(); |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | void PowerSupply::bindOrUnbindDriver(bool present) |
| 87 | { |
| 88 | auto action = (present) ? "bind" : "unbind"; |
| 89 | auto path = bindPath / action; |
| 90 | |
| 91 | if (present) |
| 92 | { |
| 93 | log<level::INFO>( |
| 94 | fmt::format("Binding device driver. path: {} device: {}", |
| 95 | path.string(), bindDevice) |
| 96 | .c_str()); |
| 97 | } |
| 98 | else |
| 99 | { |
| 100 | log<level::INFO>( |
| 101 | fmt::format("Unbinding device driver. path: {} device: {}", |
| 102 | path.string(), bindDevice) |
| 103 | .c_str()); |
| 104 | } |
| 105 | |
| 106 | std::ofstream file; |
| 107 | |
| 108 | file.exceptions(std::ofstream::failbit | std::ofstream::badbit | |
| 109 | std::ofstream::eofbit); |
| 110 | |
| 111 | try |
| 112 | { |
| 113 | file.open(path); |
| 114 | file << bindDevice; |
| 115 | file.close(); |
| 116 | } |
Patrick Williams | c1d4de5 | 2021-10-06 12:45:57 -0500 | [diff] [blame] | 117 | catch (const std::exception& e) |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 118 | { |
| 119 | auto err = errno; |
| 120 | |
| 121 | log<level::ERR>( |
| 122 | fmt::format("Failed binding or unbinding device. errno={}", err) |
| 123 | .c_str()); |
| 124 | } |
Brandon Wyman | 510acaa | 2020-11-05 18:32:04 -0600 | [diff] [blame] | 125 | } |
| 126 | |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 127 | void PowerSupply::updatePresence() |
| 128 | { |
| 129 | try |
| 130 | { |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 131 | present = getPresence(bus, inventoryPath); |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 132 | } |
Patrick Williams | 69f10ad | 2021-09-02 09:46:49 -0500 | [diff] [blame] | 133 | catch (const sdbusplus::exception::exception& e) |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 134 | { |
| 135 | // Relying on property change or interface added to retry. |
| 136 | // Log an informational trace to the journal. |
Brandon Wyman | df13c3a | 2020-12-15 14:25:22 -0600 | [diff] [blame] | 137 | log<level::INFO>( |
| 138 | fmt::format("D-Bus property {} access failure exception", |
| 139 | inventoryPath) |
| 140 | .c_str()); |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 141 | } |
| 142 | } |
| 143 | |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 144 | void PowerSupply::updatePresenceGPIO() |
| 145 | { |
| 146 | bool presentOld = present; |
| 147 | |
| 148 | try |
| 149 | { |
| 150 | if (presenceGPIO->read() > 0) |
| 151 | { |
| 152 | present = true; |
| 153 | } |
| 154 | else |
| 155 | { |
| 156 | present = false; |
| 157 | } |
| 158 | } |
Patrick Williams | c1d4de5 | 2021-10-06 12:45:57 -0500 | [diff] [blame] | 159 | catch (const std::exception& e) |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 160 | { |
| 161 | log<level::ERR>( |
| 162 | fmt::format("presenceGPIO read fail: {}", e.what()).c_str()); |
| 163 | throw; |
| 164 | } |
| 165 | |
| 166 | if (presentOld != present) |
| 167 | { |
| 168 | log<level::DEBUG>( |
| 169 | fmt::format("presentOld: {} present: {}", presentOld, present) |
| 170 | .c_str()); |
| 171 | if (present) |
| 172 | { |
| 173 | std::this_thread::sleep_for(std::chrono::milliseconds(bindDelay)); |
| 174 | bindOrUnbindDriver(present); |
| 175 | pmbusIntf->findHwmonDir(); |
| 176 | onOffConfig(phosphor::pmbus::ON_OFF_CONFIG_CONTROL_PIN_ONLY); |
| 177 | clearFaults(); |
| 178 | } |
| 179 | else |
| 180 | { |
| 181 | bindOrUnbindDriver(present); |
| 182 | } |
| 183 | |
| 184 | auto invpath = inventoryPath.substr(strlen(INVENTORY_OBJ_PATH)); |
| 185 | auto const lastSlashPos = invpath.find_last_of('/'); |
| 186 | std::string prettyName = invpath.substr(lastSlashPos + 1); |
| 187 | setPresence(bus, invpath, present, prettyName); |
| 188 | updateInventory(); |
| 189 | } |
| 190 | } |
| 191 | |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 192 | void PowerSupply::analyze() |
| 193 | { |
| 194 | using namespace phosphor::pmbus; |
| 195 | |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 196 | if (presenceGPIO) |
| 197 | { |
| 198 | updatePresenceGPIO(); |
| 199 | } |
| 200 | |
Brandon Wyman | f65c406 | 2020-08-19 13:15:53 -0500 | [diff] [blame] | 201 | if ((present) && (readFail < LOG_LIMIT)) |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 202 | { |
| 203 | try |
| 204 | { |
Brandon Wyman | fed0ba2 | 2020-09-26 20:02:51 -0500 | [diff] [blame] | 205 | statusWord = pmbusIntf->read(STATUS_WORD, Type::Debug); |
Brandon Wyman | f65c406 | 2020-08-19 13:15:53 -0500 | [diff] [blame] | 206 | // Read worked, reset the fail count. |
| 207 | readFail = 0; |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 208 | |
| 209 | if (statusWord) |
| 210 | { |
Brandon Wyman | f07bc79 | 2021-10-12 19:00:35 +0000 | [diff] [blame] | 211 | statusInput = pmbusIntf->read(STATUS_INPUT, Type::Debug); |
Jay Meyer | 10d9405 | 2020-11-30 14:41:21 -0600 | [diff] [blame] | 212 | statusMFR = pmbusIntf->read(STATUS_MFR, Type::Debug); |
Brandon Wyman | 85c7bf4 | 2021-10-19 22:28:48 +0000 | [diff] [blame] | 213 | statusCML = pmbusIntf->read(STATUS_CML, Type::Debug); |
Brandon Wyman | 6710ba2 | 2021-10-27 17:39:31 +0000 | [diff] [blame] | 214 | auto status0Vout = pmbusIntf->insertPageNum(STATUS_VOUT, 0); |
| 215 | statusVout = pmbusIntf->read(status0Vout, Type::Debug); |
Brandon Wyman | 85c7bf4 | 2021-10-19 22:28:48 +0000 | [diff] [blame] | 216 | if (statusWord & status_word::CML_FAULT) |
| 217 | { |
| 218 | if (!cmlFault) |
| 219 | { |
Brandon Wyman | 43d3263 | 2021-10-26 23:44:11 +0000 | [diff] [blame] | 220 | log<level::ERR>( |
Brandon Wyman | 85c7bf4 | 2021-10-19 22:28:48 +0000 | [diff] [blame] | 221 | fmt::format("CML fault: STATUS_WORD = {:#04x}, " |
| 222 | "STATUS_CML = {:#02x}", |
| 223 | statusWord, statusCML) |
| 224 | .c_str()); |
| 225 | } |
| 226 | faultFound = true; |
| 227 | cmlFault = true; |
| 228 | } |
| 229 | |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 230 | if (statusWord & status_word::INPUT_FAULT_WARN) |
| 231 | { |
| 232 | if (!inputFault) |
| 233 | { |
Brandon Wyman | 43d3263 | 2021-10-26 23:44:11 +0000 | [diff] [blame] | 234 | log<level::ERR>( |
Brandon Wyman | f07bc79 | 2021-10-12 19:00:35 +0000 | [diff] [blame] | 235 | fmt::format("INPUT fault: STATUS_WORD = {:#04x}, " |
| 236 | "STATUS_MFR_SPECIFIC = {:#02x}, " |
| 237 | "STATUS_INPUT = {:#02x}", |
| 238 | statusWord, statusMFR, statusInput) |
Brandon Wyman | c899660 | 2021-10-12 19:28:56 +0000 | [diff] [blame] | 239 | .c_str()); |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 240 | } |
| 241 | |
| 242 | faultFound = true; |
| 243 | inputFault = true; |
| 244 | } |
| 245 | |
Brandon Wyman | 6710ba2 | 2021-10-27 17:39:31 +0000 | [diff] [blame] | 246 | if (statusWord & status_word::VOUT_OV_FAULT) |
| 247 | { |
| 248 | if (!voutOVFault) |
| 249 | { |
Brandon Wyman | 43d3263 | 2021-10-26 23:44:11 +0000 | [diff] [blame] | 250 | log<level::ERR>( |
Brandon Wyman | 6710ba2 | 2021-10-27 17:39:31 +0000 | [diff] [blame] | 251 | fmt::format("INPUT fault: STATUS_WORD = {:#04x}, " |
| 252 | "STATUS_MFR_SPECIFIC = {:#02x}, " |
| 253 | "STATUS_VOUT = {:#02x}", |
| 254 | statusWord, statusMFR, statusVout) |
| 255 | .c_str()); |
| 256 | } |
| 257 | faultFound = true; |
| 258 | voutOVFault = true; |
| 259 | } |
| 260 | |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 261 | if (statusWord & status_word::MFR_SPECIFIC_FAULT) |
| 262 | { |
| 263 | if (!mfrFault) |
| 264 | { |
Brandon Wyman | c899660 | 2021-10-12 19:28:56 +0000 | [diff] [blame] | 265 | log<level::ERR>( |
| 266 | fmt::format("MFR fault: " |
| 267 | "STATUS_WORD = {:#04x} " |
| 268 | "STATUS_MFR_SPECIFIC = {:#02x}", |
| 269 | statusWord, statusMFR) |
| 270 | .c_str()); |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 271 | } |
| 272 | faultFound = true; |
| 273 | mfrFault = true; |
| 274 | } |
| 275 | |
| 276 | if (statusWord & status_word::VIN_UV_FAULT) |
| 277 | { |
| 278 | if (!vinUVFault) |
| 279 | { |
Brandon Wyman | 43d3263 | 2021-10-26 23:44:11 +0000 | [diff] [blame] | 280 | log<level::ERR>( |
Brandon Wyman | f07bc79 | 2021-10-12 19:00:35 +0000 | [diff] [blame] | 281 | fmt::format("VIN_UV fault: STATUS_WORD = {:#04x}, " |
| 282 | "STATUS_MFR_SPECIFIC = {:#02x}, " |
| 283 | "STATUS_INPUT = {:#02x}", |
| 284 | statusWord, statusMFR, statusInput) |
Brandon Wyman | c899660 | 2021-10-12 19:28:56 +0000 | [diff] [blame] | 285 | .c_str()); |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 286 | } |
| 287 | |
| 288 | faultFound = true; |
| 289 | vinUVFault = true; |
| 290 | } |
| 291 | } |
| 292 | else |
| 293 | { |
| 294 | faultFound = false; |
Brandon Wyman | 85c7bf4 | 2021-10-19 22:28:48 +0000 | [diff] [blame] | 295 | cmlFault = false; |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 296 | inputFault = false; |
| 297 | mfrFault = false; |
| 298 | vinUVFault = false; |
Brandon Wyman | 6710ba2 | 2021-10-27 17:39:31 +0000 | [diff] [blame] | 299 | voutOVFault = false; |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 300 | } |
| 301 | } |
Patrick Williams | c1d4de5 | 2021-10-06 12:45:57 -0500 | [diff] [blame] | 302 | catch (const ReadFailure& e) |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 303 | { |
Brandon Wyman | f65c406 | 2020-08-19 13:15:53 -0500 | [diff] [blame] | 304 | readFail++; |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 305 | phosphor::logging::commit<ReadFailure>(); |
| 306 | } |
| 307 | } |
| 308 | } |
| 309 | |
Brandon Wyman | 59a3579 | 2020-06-04 12:37:40 -0500 | [diff] [blame] | 310 | void PowerSupply::onOffConfig(uint8_t data) |
| 311 | { |
| 312 | using namespace phosphor::pmbus; |
| 313 | |
| 314 | if (present) |
| 315 | { |
| 316 | log<level::INFO>("ON_OFF_CONFIG write", entry("DATA=0x%02X", data)); |
| 317 | try |
| 318 | { |
| 319 | std::vector<uint8_t> configData{data}; |
| 320 | pmbusIntf->writeBinary(ON_OFF_CONFIG, configData, |
| 321 | Type::HwmonDeviceDebug); |
| 322 | } |
| 323 | catch (...) |
| 324 | { |
| 325 | // The underlying code in writeBinary will log a message to the |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 326 | // journal if the write fails. If the ON_OFF_CONFIG is not setup |
| 327 | // as desired, later fault detection and analysis code should |
| 328 | // catch any of the fall out. We should not need to terminate |
| 329 | // the application if this write fails. |
Brandon Wyman | 59a3579 | 2020-06-04 12:37:40 -0500 | [diff] [blame] | 330 | } |
| 331 | } |
| 332 | } |
| 333 | |
Brandon Wyman | 3c20846 | 2020-05-13 16:25:58 -0500 | [diff] [blame] | 334 | void PowerSupply::clearFaults() |
| 335 | { |
Brandon Wyman | 5474c91 | 2021-02-23 14:39:43 -0600 | [diff] [blame] | 336 | faultLogged = false; |
Brandon Wyman | 3c20846 | 2020-05-13 16:25:58 -0500 | [diff] [blame] | 337 | // The PMBus device driver does not allow for writing CLEAR_FAULTS |
| 338 | // directly. However, the pmbus hwmon device driver code will send a |
| 339 | // CLEAR_FAULTS after reading from any of the hwmon "files" in sysfs, so |
| 340 | // reading in1_input should result in clearing the fault bits in |
| 341 | // STATUS_BYTE/STATUS_WORD. |
| 342 | // I do not care what the return value is. |
Brandon Wyman | 1115153 | 2020-11-10 13:45:57 -0600 | [diff] [blame] | 343 | if (present) |
Brandon Wyman | 3c20846 | 2020-05-13 16:25:58 -0500 | [diff] [blame] | 344 | { |
Brandon Wyman | 9564e94 | 2020-11-10 14:01:42 -0600 | [diff] [blame] | 345 | faultFound = false; |
| 346 | inputFault = false; |
| 347 | mfrFault = false; |
Jay Meyer | 10d9405 | 2020-11-30 14:41:21 -0600 | [diff] [blame] | 348 | statusMFR = 0; |
Brandon Wyman | 9564e94 | 2020-11-10 14:01:42 -0600 | [diff] [blame] | 349 | vinUVFault = false; |
Brandon Wyman | 85c7bf4 | 2021-10-19 22:28:48 +0000 | [diff] [blame] | 350 | cmlFault = false; |
Brandon Wyman | 6710ba2 | 2021-10-27 17:39:31 +0000 | [diff] [blame] | 351 | voutOVFault = false; |
Brandon Wyman | 9564e94 | 2020-11-10 14:01:42 -0600 | [diff] [blame] | 352 | readFail = 0; |
Brandon Wyman | 9564e94 | 2020-11-10 14:01:42 -0600 | [diff] [blame] | 353 | |
Brandon Wyman | 1115153 | 2020-11-10 13:45:57 -0600 | [diff] [blame] | 354 | try |
| 355 | { |
| 356 | static_cast<void>( |
| 357 | pmbusIntf->read("in1_input", phosphor::pmbus::Type::Hwmon)); |
| 358 | } |
Patrick Williams | c1d4de5 | 2021-10-06 12:45:57 -0500 | [diff] [blame] | 359 | catch (const ReadFailure& e) |
Brandon Wyman | 1115153 | 2020-11-10 13:45:57 -0600 | [diff] [blame] | 360 | { |
| 361 | // Since I do not care what the return value is, I really do not |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 362 | // care much if it gets a ReadFailure either. However, this |
| 363 | // should not prevent the application from continuing to run, so |
| 364 | // catching the read failure. |
Brandon Wyman | 1115153 | 2020-11-10 13:45:57 -0600 | [diff] [blame] | 365 | } |
Brandon Wyman | 3c20846 | 2020-05-13 16:25:58 -0500 | [diff] [blame] | 366 | } |
| 367 | } |
| 368 | |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 369 | void PowerSupply::inventoryChanged(sdbusplus::message::message& msg) |
| 370 | { |
| 371 | std::string msgSensor; |
Patrick Williams | abe4941 | 2020-05-13 17:59:47 -0500 | [diff] [blame] | 372 | std::map<std::string, std::variant<uint32_t, bool>> msgData; |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 373 | msg.read(msgSensor, msgData); |
| 374 | |
| 375 | // Check if it was the Present property that changed. |
| 376 | auto valPropMap = msgData.find(PRESENT_PROP); |
| 377 | if (valPropMap != msgData.end()) |
| 378 | { |
| 379 | if (std::get<bool>(valPropMap->second)) |
| 380 | { |
| 381 | present = true; |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 382 | // TODO: Immediately trying to read or write the "files" causes |
| 383 | // read or write failures. |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 384 | using namespace std::chrono_literals; |
| 385 | std::this_thread::sleep_for(20ms); |
Brandon Wyman | 9564e94 | 2020-11-10 14:01:42 -0600 | [diff] [blame] | 386 | pmbusIntf->findHwmonDir(); |
Brandon Wyman | 59a3579 | 2020-06-04 12:37:40 -0500 | [diff] [blame] | 387 | onOffConfig(phosphor::pmbus::ON_OFF_CONFIG_CONTROL_PIN_ONLY); |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 388 | clearFaults(); |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 389 | updateInventory(); |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 390 | } |
| 391 | else |
| 392 | { |
| 393 | present = false; |
| 394 | |
| 395 | // Clear out the now outdated inventory properties |
| 396 | updateInventory(); |
| 397 | } |
| 398 | } |
| 399 | } |
| 400 | |
Brandon Wyman | 9a507db | 2021-02-25 16:15:22 -0600 | [diff] [blame] | 401 | void PowerSupply::inventoryAdded(sdbusplus::message::message& msg) |
| 402 | { |
| 403 | sdbusplus::message::object_path path; |
| 404 | msg.read(path); |
| 405 | // Make sure the signal is for the PSU inventory path |
| 406 | if (path == inventoryPath) |
| 407 | { |
| 408 | std::map<std::string, std::map<std::string, std::variant<bool>>> |
| 409 | interfaces; |
| 410 | // Get map of interfaces and their properties |
| 411 | msg.read(interfaces); |
| 412 | |
| 413 | auto properties = interfaces.find(INVENTORY_IFACE); |
| 414 | if (properties != interfaces.end()) |
| 415 | { |
| 416 | auto property = properties->second.find(PRESENT_PROP); |
| 417 | if (property != properties->second.end()) |
| 418 | { |
| 419 | present = std::get<bool>(property->second); |
| 420 | |
| 421 | log<level::INFO>(fmt::format("Power Supply {} Present {}", |
| 422 | inventoryPath, present) |
| 423 | .c_str()); |
| 424 | |
| 425 | updateInventory(); |
| 426 | } |
| 427 | } |
| 428 | } |
| 429 | } |
| 430 | |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 431 | void PowerSupply::updateInventory() |
| 432 | { |
| 433 | using namespace phosphor::pmbus; |
| 434 | |
Chanh Nguyen | c12c53b | 2021-04-06 17:24:47 +0700 | [diff] [blame] | 435 | #if IBM_VPD |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 436 | std::string ccin; |
| 437 | std::string pn; |
| 438 | std::string fn; |
| 439 | std::string header; |
| 440 | std::string sn; |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 441 | using PropertyMap = |
George Liu | 070c1bc | 2020-10-12 11:28:01 +0800 | [diff] [blame] | 442 | std::map<std::string, |
| 443 | std::variant<std::string, std::vector<uint8_t>, bool>>; |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 444 | PropertyMap assetProps; |
George Liu | 070c1bc | 2020-10-12 11:28:01 +0800 | [diff] [blame] | 445 | PropertyMap operProps; |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 446 | PropertyMap versionProps; |
| 447 | PropertyMap ipzvpdDINFProps; |
| 448 | PropertyMap ipzvpdVINIProps; |
| 449 | using InterfaceMap = std::map<std::string, PropertyMap>; |
| 450 | InterfaceMap interfaces; |
| 451 | using ObjectMap = std::map<sdbusplus::message::object_path, InterfaceMap>; |
| 452 | ObjectMap object; |
| 453 | #endif |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 454 | log<level::DEBUG>( |
| 455 | fmt::format("updateInventory() inventoryPath: {}", inventoryPath) |
| 456 | .c_str()); |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 457 | |
| 458 | if (present) |
| 459 | { |
| 460 | // TODO: non-IBM inventory updates? |
| 461 | |
Chanh Nguyen | c12c53b | 2021-04-06 17:24:47 +0700 | [diff] [blame] | 462 | #if IBM_VPD |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 463 | try |
| 464 | { |
| 465 | ccin = pmbusIntf->readString(CCIN, Type::HwmonDeviceDebug); |
| 466 | assetProps.emplace(MODEL_PROP, ccin); |
Adriana Kobylak | 572a905 | 2021-03-30 15:58:07 +0000 | [diff] [blame] | 467 | modelName = ccin; |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 468 | } |
Patrick Williams | c1d4de5 | 2021-10-06 12:45:57 -0500 | [diff] [blame] | 469 | catch (const ReadFailure& e) |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 470 | { |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 471 | // Ignore the read failure, let pmbus code indicate failure, |
| 472 | // path... |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 473 | // TODO - ibm918 |
| 474 | // https://github.com/openbmc/docs/blob/master/designs/vpd-collection.md |
| 475 | // The BMC must log errors if any of the VPD cannot be properly |
| 476 | // parsed or fails ECC checks. |
| 477 | } |
| 478 | |
| 479 | try |
| 480 | { |
| 481 | pn = pmbusIntf->readString(PART_NUMBER, Type::HwmonDeviceDebug); |
| 482 | assetProps.emplace(PN_PROP, pn); |
| 483 | } |
Patrick Williams | c1d4de5 | 2021-10-06 12:45:57 -0500 | [diff] [blame] | 484 | catch (const ReadFailure& e) |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 485 | { |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 486 | // Ignore the read failure, let pmbus code indicate failure, |
| 487 | // path... |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 488 | } |
| 489 | |
| 490 | try |
| 491 | { |
| 492 | fn = pmbusIntf->readString(FRU_NUMBER, Type::HwmonDeviceDebug); |
| 493 | } |
Patrick Williams | c1d4de5 | 2021-10-06 12:45:57 -0500 | [diff] [blame] | 494 | catch (const ReadFailure& e) |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 495 | { |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 496 | // Ignore the read failure, let pmbus code indicate failure, |
| 497 | // path... |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 498 | } |
| 499 | |
| 500 | try |
| 501 | { |
| 502 | header = |
| 503 | pmbusIntf->readString(SERIAL_HEADER, Type::HwmonDeviceDebug); |
| 504 | sn = pmbusIntf->readString(SERIAL_NUMBER, Type::HwmonDeviceDebug); |
| 505 | assetProps.emplace(SN_PROP, sn); |
| 506 | } |
Patrick Williams | c1d4de5 | 2021-10-06 12:45:57 -0500 | [diff] [blame] | 507 | catch (const ReadFailure& e) |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 508 | { |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 509 | // Ignore the read failure, let pmbus code indicate failure, |
| 510 | // path... |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 511 | } |
| 512 | |
| 513 | try |
| 514 | { |
Brandon Wyman | c9efe41 | 2020-10-09 15:42:50 -0500 | [diff] [blame] | 515 | fwVersion = |
| 516 | pmbusIntf->readString(FW_VERSION, Type::HwmonDeviceDebug); |
| 517 | versionProps.emplace(VERSION_PROP, fwVersion); |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 518 | } |
Patrick Williams | c1d4de5 | 2021-10-06 12:45:57 -0500 | [diff] [blame] | 519 | catch (const ReadFailure& e) |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 520 | { |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 521 | // Ignore the read failure, let pmbus code indicate failure, |
| 522 | // path... |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 523 | } |
| 524 | |
| 525 | ipzvpdVINIProps.emplace("CC", |
| 526 | std::vector<uint8_t>(ccin.begin(), ccin.end())); |
| 527 | ipzvpdVINIProps.emplace("PN", |
| 528 | std::vector<uint8_t>(pn.begin(), pn.end())); |
| 529 | ipzvpdVINIProps.emplace("FN", |
| 530 | std::vector<uint8_t>(fn.begin(), fn.end())); |
| 531 | std::string header_sn = header + sn + '\0'; |
| 532 | ipzvpdVINIProps.emplace( |
| 533 | "SN", std::vector<uint8_t>(header_sn.begin(), header_sn.end())); |
| 534 | std::string description = "IBM PS"; |
| 535 | ipzvpdVINIProps.emplace( |
| 536 | "DR", std::vector<uint8_t>(description.begin(), description.end())); |
| 537 | |
| 538 | // Update the Resource Identifier (RI) keyword |
| 539 | // 2 byte FRC: 0x0003 |
| 540 | // 2 byte RID: 0x1000, 0x1001... |
| 541 | std::uint8_t num = std::stoul( |
| 542 | inventoryPath.substr(inventoryPath.size() - 1, 1), nullptr, 0); |
| 543 | std::vector<uint8_t> ri{0x00, 0x03, 0x10, num}; |
| 544 | ipzvpdDINFProps.emplace("RI", ri); |
| 545 | |
| 546 | // Fill in the FRU Label (FL) keyword. |
| 547 | std::string fl = "E"; |
| 548 | fl.push_back(inventoryPath.back()); |
| 549 | fl.resize(FL_KW_SIZE, ' '); |
| 550 | ipzvpdDINFProps.emplace("FL", |
| 551 | std::vector<uint8_t>(fl.begin(), fl.end())); |
| 552 | |
| 553 | interfaces.emplace(ASSET_IFACE, std::move(assetProps)); |
| 554 | interfaces.emplace(VERSION_IFACE, std::move(versionProps)); |
| 555 | interfaces.emplace(DINF_IFACE, std::move(ipzvpdDINFProps)); |
| 556 | interfaces.emplace(VINI_IFACE, std::move(ipzvpdVINIProps)); |
| 557 | |
George Liu | 070c1bc | 2020-10-12 11:28:01 +0800 | [diff] [blame] | 558 | // Update the Functional |
| 559 | operProps.emplace(FUNCTIONAL_PROP, present); |
| 560 | interfaces.emplace(OPERATIONAL_STATE_IFACE, std::move(operProps)); |
| 561 | |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 562 | auto path = inventoryPath.substr(strlen(INVENTORY_OBJ_PATH)); |
| 563 | object.emplace(path, std::move(interfaces)); |
| 564 | |
| 565 | try |
| 566 | { |
| 567 | auto service = |
| 568 | util::getService(INVENTORY_OBJ_PATH, INVENTORY_MGR_IFACE, bus); |
| 569 | |
| 570 | if (service.empty()) |
| 571 | { |
| 572 | log<level::ERR>("Unable to get inventory manager service"); |
| 573 | return; |
| 574 | } |
| 575 | |
| 576 | auto method = |
| 577 | bus.new_method_call(service.c_str(), INVENTORY_OBJ_PATH, |
| 578 | INVENTORY_MGR_IFACE, "Notify"); |
| 579 | |
| 580 | method.append(std::move(object)); |
| 581 | |
| 582 | auto reply = bus.call(method); |
| 583 | } |
Patrick Williams | c1d4de5 | 2021-10-06 12:45:57 -0500 | [diff] [blame] | 584 | catch (const std::exception& e) |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 585 | { |
Jay Meyer | 6a3fd2c | 2020-08-25 16:37:16 -0500 | [diff] [blame] | 586 | log<level::ERR>( |
| 587 | std::string(e.what() + std::string(" PATH=") + inventoryPath) |
| 588 | .c_str()); |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 589 | } |
| 590 | #endif |
| 591 | } |
| 592 | } |
| 593 | |
Adriana Kobylak | 4175ffb | 2021-08-02 14:51:05 +0000 | [diff] [blame] | 594 | void PowerSupply::getInputVoltage(double& actualInputVoltage, |
| 595 | int& inputVoltage) const |
| 596 | { |
| 597 | using namespace phosphor::pmbus; |
| 598 | |
| 599 | actualInputVoltage = in_input::VIN_VOLTAGE_0; |
| 600 | inputVoltage = in_input::VIN_VOLTAGE_0; |
| 601 | |
| 602 | if (present) |
| 603 | { |
| 604 | try |
| 605 | { |
| 606 | // Read input voltage in millivolts |
| 607 | auto inputVoltageStr = pmbusIntf->readString(READ_VIN, Type::Hwmon); |
| 608 | |
| 609 | // Convert to volts |
| 610 | actualInputVoltage = std::stod(inputVoltageStr) / 1000; |
| 611 | |
| 612 | // Calculate the voltage based on voltage thresholds |
| 613 | if (actualInputVoltage < in_input::VIN_VOLTAGE_MIN) |
| 614 | { |
| 615 | inputVoltage = in_input::VIN_VOLTAGE_0; |
| 616 | } |
| 617 | else if (actualInputVoltage < in_input::VIN_VOLTAGE_110_THRESHOLD) |
| 618 | { |
| 619 | inputVoltage = in_input::VIN_VOLTAGE_110; |
| 620 | } |
| 621 | else |
| 622 | { |
| 623 | inputVoltage = in_input::VIN_VOLTAGE_220; |
| 624 | } |
| 625 | } |
| 626 | catch (const std::exception& e) |
| 627 | { |
| 628 | log<level::ERR>( |
| 629 | fmt::format("READ_VIN read error: {}", e.what()).c_str()); |
| 630 | } |
| 631 | } |
| 632 | } |
| 633 | |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 634 | } // namespace phosphor::power::psu |