Brandon Wyman | 18a24d9 | 2022-04-19 22:48:34 +0000 | [diff] [blame] | 1 | #include "config.h" |
| 2 | |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 3 | #include "psu_manager.hpp" |
| 4 | |
| 5 | #include "utility.hpp" |
| 6 | |
Brandon Wyman | b76ab24 | 2020-09-16 18:06:06 -0500 | [diff] [blame] | 7 | #include <fmt/format.h> |
| 8 | #include <sys/types.h> |
| 9 | #include <unistd.h> |
| 10 | |
Shawn McCarney | 9252b7e | 2022-06-10 12:47:38 -0500 | [diff] [blame] | 11 | #include <algorithm> |
Brandon Wyman | ecbecbc | 2021-08-31 22:53:21 +0000 | [diff] [blame] | 12 | #include <regex> |
Shawn McCarney | 9252b7e | 2022-06-10 12:47:38 -0500 | [diff] [blame] | 13 | #include <set> |
Brandon Wyman | ecbecbc | 2021-08-31 22:53:21 +0000 | [diff] [blame] | 14 | |
Brandon Wyman | aed1f75 | 2019-11-25 18:10:52 -0600 | [diff] [blame] | 15 | using namespace phosphor::logging; |
| 16 | |
Brandon Wyman | 63ea78b | 2020-09-24 16:49:09 -0500 | [diff] [blame] | 17 | namespace phosphor::power::manager |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 18 | { |
Adriana Kobylak | c9b0573 | 2022-03-19 15:15:10 +0000 | [diff] [blame] | 19 | constexpr auto managerBusName = "xyz.openbmc_project.Power.PSUMonitor"; |
| 20 | constexpr auto objectManagerObjPath = |
| 21 | "/xyz/openbmc_project/power/power_supplies"; |
| 22 | constexpr auto powerSystemsInputsObjPath = |
| 23 | "/xyz/openbmc_project/power/power_supplies/chassis0/psus"; |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 24 | |
Brandon Wyman | 510acaa | 2020-11-05 18:32:04 -0600 | [diff] [blame] | 25 | constexpr auto IBMCFFPSInterface = |
| 26 | "xyz.openbmc_project.Configuration.IBMCFFPSConnector"; |
| 27 | constexpr auto i2cBusProp = "I2CBus"; |
| 28 | constexpr auto i2cAddressProp = "I2CAddress"; |
| 29 | constexpr auto psuNameProp = "Name"; |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 30 | constexpr auto presLineName = "NamedPresenceGpio"; |
Brandon Wyman | 510acaa | 2020-11-05 18:32:04 -0600 | [diff] [blame] | 31 | |
Adriana Kobylak | 9bab9e1 | 2021-02-24 15:32:03 -0600 | [diff] [blame] | 32 | constexpr auto supportedConfIntf = |
| 33 | "xyz.openbmc_project.Configuration.SupportedConfiguration"; |
Adriana Kobylak | 9bab9e1 | 2021-02-24 15:32:03 -0600 | [diff] [blame] | 34 | |
Brandon Wyman | c9e840e | 2022-05-10 20:48:41 +0000 | [diff] [blame] | 35 | constexpr auto INPUT_HISTORY_SYNC_DELAY = 5; |
Brandon Wyman | 18a24d9 | 2022-04-19 22:48:34 +0000 | [diff] [blame] | 36 | |
Patrick Williams | 7354ce6 | 2022-07-22 19:26:56 -0500 | [diff] [blame] | 37 | PSUManager::PSUManager(sdbusplus::bus_t& bus, const sdeventplus::Event& e) : |
Adriana Kobylak | c9b0573 | 2022-03-19 15:15:10 +0000 | [diff] [blame] | 38 | bus(bus), powerSystemInputs(bus, powerSystemsInputsObjPath), |
Brandon Wyman | c332442 | 2022-03-24 20:30:57 +0000 | [diff] [blame] | 39 | objectManager(bus, objectManagerObjPath), |
| 40 | historyManager(bus, "/org/open_power/sensors") |
Brandon Wyman | 510acaa | 2020-11-05 18:32:04 -0600 | [diff] [blame] | 41 | { |
Brandon Wyman | 510acaa | 2020-11-05 18:32:04 -0600 | [diff] [blame] | 42 | // Subscribe to InterfacesAdded before doing a property read, otherwise |
| 43 | // the interface could be created after the read attempt but before the |
| 44 | // match is created. |
| 45 | entityManagerIfacesAddedMatch = std::make_unique<sdbusplus::bus::match_t>( |
| 46 | bus, |
| 47 | sdbusplus::bus::match::rules::interfacesAdded() + |
| 48 | sdbusplus::bus::match::rules::sender( |
| 49 | "xyz.openbmc_project.EntityManager"), |
| 50 | std::bind(&PSUManager::entityManagerIfaceAdded, this, |
| 51 | std::placeholders::_1)); |
| 52 | getPSUConfiguration(); |
| 53 | getSystemProperties(); |
| 54 | |
Adriana Kobylak | c9b0573 | 2022-03-19 15:15:10 +0000 | [diff] [blame] | 55 | // Request the bus name before the analyze() function, which is the one that |
| 56 | // determines the brownout condition and sets the status d-bus property. |
| 57 | bus.request_name(managerBusName); |
| 58 | |
Brandon Wyman | 510acaa | 2020-11-05 18:32:04 -0600 | [diff] [blame] | 59 | using namespace sdeventplus; |
| 60 | auto interval = std::chrono::milliseconds(1000); |
| 61 | timer = std::make_unique<utility::Timer<ClockId::Monotonic>>( |
| 62 | e, std::bind(&PSUManager::analyze, this), interval); |
| 63 | |
Adriana Kobylak | a4d38fa | 2021-10-05 19:57:47 +0000 | [diff] [blame] | 64 | validationTimer = std::make_unique<utility::Timer<ClockId::Monotonic>>( |
| 65 | e, std::bind(&PSUManager::validateConfig, this)); |
| 66 | |
Adriana Kobylak | c0a0758 | 2021-10-13 15:52:25 +0000 | [diff] [blame] | 67 | try |
| 68 | { |
| 69 | powerConfigGPIO = createGPIO("power-config-full-load"); |
| 70 | } |
| 71 | catch (const std::exception& e) |
| 72 | { |
| 73 | // Ignore error, GPIO may not be implemented in this system. |
| 74 | powerConfigGPIO = nullptr; |
| 75 | } |
| 76 | |
Brandon Wyman | 510acaa | 2020-11-05 18:32:04 -0600 | [diff] [blame] | 77 | // Subscribe to power state changes |
| 78 | powerService = util::getService(POWER_OBJ_PATH, POWER_IFACE, bus); |
| 79 | powerOnMatch = std::make_unique<sdbusplus::bus::match_t>( |
| 80 | bus, |
| 81 | sdbusplus::bus::match::rules::propertiesChanged(POWER_OBJ_PATH, |
| 82 | POWER_IFACE), |
| 83 | [this](auto& msg) { this->powerStateChanged(msg); }); |
| 84 | |
| 85 | initialize(); |
| 86 | } |
| 87 | |
Jim Wright | aca86d0 | 2022-06-10 12:01:39 -0500 | [diff] [blame] | 88 | void PSUManager::initialize() |
| 89 | { |
| 90 | try |
| 91 | { |
| 92 | // pgood is the latest read of the chassis pgood |
| 93 | int pgood = 0; |
| 94 | util::getProperty<int>(POWER_IFACE, "pgood", POWER_OBJ_PATH, |
| 95 | powerService, bus, pgood); |
| 96 | |
| 97 | // state is the latest requested power on / off transition |
| 98 | auto method = bus.new_method_call(POWER_IFACE, POWER_OBJ_PATH, |
| 99 | POWER_IFACE, "getPowerState"); |
| 100 | auto reply = bus.call(method); |
| 101 | int state = 0; |
| 102 | reply.read(state); |
| 103 | |
| 104 | if (state) |
| 105 | { |
| 106 | // Monitor PSUs anytime state is on |
| 107 | powerOn = true; |
| 108 | // In the power fault window if pgood is off |
| 109 | powerFaultOccurring = !pgood; |
| 110 | validationTimer->restartOnce(validationTimeout); |
| 111 | } |
| 112 | else |
| 113 | { |
| 114 | // Power is off |
| 115 | powerOn = false; |
| 116 | powerFaultOccurring = false; |
| 117 | runValidateConfig = true; |
| 118 | } |
| 119 | } |
| 120 | catch (const std::exception& e) |
| 121 | { |
| 122 | log<level::INFO>( |
| 123 | fmt::format( |
| 124 | "Failed to get power state, assuming it is off, error {}", |
| 125 | e.what()) |
| 126 | .c_str()); |
| 127 | powerOn = false; |
| 128 | powerFaultOccurring = false; |
| 129 | runValidateConfig = true; |
| 130 | } |
| 131 | |
| 132 | onOffConfig(phosphor::pmbus::ON_OFF_CONFIG_CONTROL_PIN_ONLY); |
| 133 | clearFaults(); |
| 134 | updateMissingPSUs(); |
Jim Wright | aca86d0 | 2022-06-10 12:01:39 -0500 | [diff] [blame] | 135 | setPowerConfigGPIO(); |
| 136 | |
| 137 | log<level::INFO>( |
| 138 | fmt::format("initialize: power on: {}, power fault occurring: {}", |
| 139 | powerOn, powerFaultOccurring) |
| 140 | .c_str()); |
| 141 | } |
| 142 | |
Brandon Wyman | 510acaa | 2020-11-05 18:32:04 -0600 | [diff] [blame] | 143 | void PSUManager::getPSUConfiguration() |
| 144 | { |
| 145 | using namespace phosphor::power::util; |
| 146 | auto depth = 0; |
| 147 | auto objects = getSubTree(bus, "/", IBMCFFPSInterface, depth); |
| 148 | |
| 149 | psus.clear(); |
| 150 | |
| 151 | // I should get a map of objects back. |
| 152 | // Each object will have a path, a service, and an interface. |
| 153 | // The interface should match the one passed into this function. |
| 154 | for (const auto& [path, services] : objects) |
| 155 | { |
| 156 | auto service = services.begin()->first; |
| 157 | |
| 158 | if (path.empty() || service.empty()) |
| 159 | { |
| 160 | continue; |
| 161 | } |
| 162 | |
| 163 | // For each object in the array of objects, I want to get properties |
| 164 | // from the service, path, and interface. |
| 165 | auto properties = |
| 166 | getAllProperties(bus, path, IBMCFFPSInterface, service); |
| 167 | |
| 168 | getPSUProperties(properties); |
| 169 | } |
| 170 | |
| 171 | if (psus.empty()) |
| 172 | { |
| 173 | // Interface or properties not found. Let the Interfaces Added callback |
| 174 | // process the information once the interfaces are added to D-Bus. |
| 175 | log<level::INFO>(fmt::format("No power supplies to monitor").c_str()); |
| 176 | } |
| 177 | } |
| 178 | |
| 179 | void PSUManager::getPSUProperties(util::DbusPropertyMap& properties) |
| 180 | { |
| 181 | // From passed in properties, I want to get: I2CBus, I2CAddress, |
| 182 | // and Name. Create a power supply object, using Name to build the inventory |
| 183 | // path. |
| 184 | const auto basePSUInvPath = |
| 185 | "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply"; |
| 186 | uint64_t* i2cbus = nullptr; |
| 187 | uint64_t* i2caddr = nullptr; |
| 188 | std::string* psuname = nullptr; |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 189 | std::string* preslineptr = nullptr; |
Brandon Wyman | 510acaa | 2020-11-05 18:32:04 -0600 | [diff] [blame] | 190 | |
| 191 | for (const auto& property : properties) |
| 192 | { |
| 193 | try |
| 194 | { |
| 195 | if (property.first == i2cBusProp) |
| 196 | { |
| 197 | i2cbus = std::get_if<uint64_t>(&properties[i2cBusProp]); |
| 198 | } |
| 199 | else if (property.first == i2cAddressProp) |
| 200 | { |
| 201 | i2caddr = std::get_if<uint64_t>(&properties[i2cAddressProp]); |
| 202 | } |
| 203 | else if (property.first == psuNameProp) |
| 204 | { |
| 205 | psuname = std::get_if<std::string>(&properties[psuNameProp]); |
| 206 | } |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 207 | else if (property.first == presLineName) |
| 208 | { |
| 209 | preslineptr = |
| 210 | std::get_if<std::string>(&properties[presLineName]); |
| 211 | } |
Brandon Wyman | 510acaa | 2020-11-05 18:32:04 -0600 | [diff] [blame] | 212 | } |
Patrick Williams | c1d4de5 | 2021-10-06 12:45:57 -0500 | [diff] [blame] | 213 | catch (const std::exception& e) |
Adriana Kobylak | 0c9a33d | 2021-09-13 18:05:09 +0000 | [diff] [blame] | 214 | {} |
Brandon Wyman | 510acaa | 2020-11-05 18:32:04 -0600 | [diff] [blame] | 215 | } |
| 216 | |
| 217 | if ((i2cbus) && (i2caddr) && (psuname) && (!psuname->empty())) |
| 218 | { |
| 219 | std::string invpath = basePSUInvPath; |
| 220 | invpath.push_back(psuname->back()); |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 221 | std::string presline = ""; |
Brandon Wyman | 510acaa | 2020-11-05 18:32:04 -0600 | [diff] [blame] | 222 | |
| 223 | log<level::DEBUG>(fmt::format("Inventory Path: {}", invpath).c_str()); |
| 224 | |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 225 | if (nullptr != preslineptr) |
| 226 | { |
| 227 | presline = *preslineptr; |
| 228 | } |
| 229 | |
Brandon Wyman | ecbecbc | 2021-08-31 22:53:21 +0000 | [diff] [blame] | 230 | auto invMatch = |
| 231 | std::find_if(psus.begin(), psus.end(), [&invpath](auto& psu) { |
| 232 | return psu->getInventoryPath() == invpath; |
| 233 | }); |
| 234 | if (invMatch != psus.end()) |
| 235 | { |
| 236 | // This power supply has the same inventory path as the one with |
| 237 | // information just added to D-Bus. |
| 238 | // Changes to GPIO line name unlikely, so skip checking. |
| 239 | // Changes to the I2C bus and address unlikely, as that would |
| 240 | // require corresponding device tree updates. |
| 241 | // Return out to avoid duplicate object creation. |
| 242 | return; |
| 243 | } |
| 244 | |
Brandon Wyman | c332442 | 2022-03-24 20:30:57 +0000 | [diff] [blame] | 245 | constexpr auto driver = "ibm-cffps"; |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 246 | log<level::DEBUG>( |
Brandon Wyman | c332442 | 2022-03-24 20:30:57 +0000 | [diff] [blame] | 247 | fmt::format( |
| 248 | "make PowerSupply bus: {} addr: {} driver: {} presline: {}", |
| 249 | *i2cbus, *i2caddr, driver, presline) |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 250 | .c_str()); |
| 251 | auto psu = std::make_unique<PowerSupply>(bus, invpath, *i2cbus, |
Brandon Wyman | c332442 | 2022-03-24 20:30:57 +0000 | [diff] [blame] | 252 | *i2caddr, driver, presline); |
Brandon Wyman | 510acaa | 2020-11-05 18:32:04 -0600 | [diff] [blame] | 253 | psus.emplace_back(std::move(psu)); |
Adriana Kobylak | 9ba3823 | 2021-11-16 20:27:45 +0000 | [diff] [blame] | 254 | |
| 255 | // Subscribe to power supply presence changes |
| 256 | auto presenceMatch = std::make_unique<sdbusplus::bus::match_t>( |
| 257 | bus, |
| 258 | sdbusplus::bus::match::rules::propertiesChanged(invpath, |
| 259 | INVENTORY_IFACE), |
| 260 | [this](auto& msg) { this->presenceChanged(msg); }); |
| 261 | presenceMatches.emplace_back(std::move(presenceMatch)); |
Brandon Wyman | 510acaa | 2020-11-05 18:32:04 -0600 | [diff] [blame] | 262 | } |
| 263 | |
| 264 | if (psus.empty()) |
| 265 | { |
| 266 | log<level::INFO>(fmt::format("No power supplies to monitor").c_str()); |
| 267 | } |
| 268 | } |
| 269 | |
Adriana Kobylak | e1074d8 | 2021-03-16 20:46:44 +0000 | [diff] [blame] | 270 | void PSUManager::populateSysProperties(const util::DbusPropertyMap& properties) |
| 271 | { |
| 272 | try |
| 273 | { |
Adriana Kobylak | 9ea66a6 | 2021-03-24 17:54:14 +0000 | [diff] [blame] | 274 | auto propIt = properties.find("SupportedType"); |
| 275 | if (propIt == properties.end()) |
| 276 | { |
| 277 | return; |
| 278 | } |
| 279 | const std::string* type = std::get_if<std::string>(&(propIt->second)); |
| 280 | if ((type == nullptr) || (*type != "PowerSupply")) |
| 281 | { |
| 282 | return; |
| 283 | } |
| 284 | |
Adriana Kobylak | 9ea66a6 | 2021-03-24 17:54:14 +0000 | [diff] [blame] | 285 | propIt = properties.find("SupportedModel"); |
| 286 | if (propIt == properties.end()) |
| 287 | { |
| 288 | return; |
| 289 | } |
Adriana Kobylak | d3a70d9 | 2021-06-04 16:24:45 +0000 | [diff] [blame] | 290 | const std::string* model = std::get_if<std::string>(&(propIt->second)); |
| 291 | if (model == nullptr) |
Adriana Kobylak | 9ea66a6 | 2021-03-24 17:54:14 +0000 | [diff] [blame] | 292 | { |
| 293 | return; |
| 294 | } |
Adriana Kobylak | 9ea66a6 | 2021-03-24 17:54:14 +0000 | [diff] [blame] | 295 | |
Adriana Kobylak | d3a70d9 | 2021-06-04 16:24:45 +0000 | [diff] [blame] | 296 | sys_properties sys; |
Adriana Kobylak | 9ea66a6 | 2021-03-24 17:54:14 +0000 | [diff] [blame] | 297 | propIt = properties.find("RedundantCount"); |
Adriana Kobylak | e1074d8 | 2021-03-16 20:46:44 +0000 | [diff] [blame] | 298 | if (propIt != properties.end()) |
| 299 | { |
| 300 | const uint64_t* count = std::get_if<uint64_t>(&(propIt->second)); |
| 301 | if (count != nullptr) |
| 302 | { |
Adriana Kobylak | d3a70d9 | 2021-06-04 16:24:45 +0000 | [diff] [blame] | 303 | sys.powerSupplyCount = *count; |
Adriana Kobylak | e1074d8 | 2021-03-16 20:46:44 +0000 | [diff] [blame] | 304 | } |
| 305 | } |
Adriana Kobylak | 9ea66a6 | 2021-03-24 17:54:14 +0000 | [diff] [blame] | 306 | propIt = properties.find("InputVoltage"); |
| 307 | if (propIt != properties.end()) |
| 308 | { |
Adriana Kobylak | d3a70d9 | 2021-06-04 16:24:45 +0000 | [diff] [blame] | 309 | const std::vector<uint64_t>* voltage = |
| 310 | std::get_if<std::vector<uint64_t>>(&(propIt->second)); |
Adriana Kobylak | 9ea66a6 | 2021-03-24 17:54:14 +0000 | [diff] [blame] | 311 | if (voltage != nullptr) |
| 312 | { |
| 313 | sys.inputVoltage = *voltage; |
| 314 | } |
| 315 | } |
| 316 | |
Adriana Kobylak | 886574c | 2021-11-01 18:22:28 +0000 | [diff] [blame] | 317 | // The PowerConfigFullLoad is an optional property, default it to false |
| 318 | // since that's the default value of the power-config-full-load GPIO. |
| 319 | sys.powerConfigFullLoad = false; |
| 320 | propIt = properties.find("PowerConfigFullLoad"); |
| 321 | if (propIt != properties.end()) |
| 322 | { |
| 323 | const bool* fullLoad = std::get_if<bool>(&(propIt->second)); |
| 324 | if (fullLoad != nullptr) |
| 325 | { |
| 326 | sys.powerConfigFullLoad = *fullLoad; |
| 327 | } |
| 328 | } |
| 329 | |
Adriana Kobylak | d3a70d9 | 2021-06-04 16:24:45 +0000 | [diff] [blame] | 330 | supportedConfigs.emplace(*model, sys); |
Adriana Kobylak | e1074d8 | 2021-03-16 20:46:44 +0000 | [diff] [blame] | 331 | } |
Patrick Williams | c1d4de5 | 2021-10-06 12:45:57 -0500 | [diff] [blame] | 332 | catch (const std::exception& e) |
Adriana Kobylak | 0c9a33d | 2021-09-13 18:05:09 +0000 | [diff] [blame] | 333 | {} |
Adriana Kobylak | e1074d8 | 2021-03-16 20:46:44 +0000 | [diff] [blame] | 334 | } |
| 335 | |
Adriana Kobylak | 9bab9e1 | 2021-02-24 15:32:03 -0600 | [diff] [blame] | 336 | void PSUManager::getSystemProperties() |
| 337 | { |
Adriana Kobylak | 9bab9e1 | 2021-02-24 15:32:03 -0600 | [diff] [blame] | 338 | |
Adriana Kobylak | 9bab9e1 | 2021-02-24 15:32:03 -0600 | [diff] [blame] | 339 | try |
| 340 | { |
| 341 | util::DbusSubtree subtree = |
| 342 | util::getSubTree(bus, INVENTORY_OBJ_PATH, supportedConfIntf, 0); |
Adriana Kobylak | e1074d8 | 2021-03-16 20:46:44 +0000 | [diff] [blame] | 343 | if (subtree.empty()) |
Adriana Kobylak | 9bab9e1 | 2021-02-24 15:32:03 -0600 | [diff] [blame] | 344 | { |
| 345 | throw std::runtime_error("Supported Configuration Not Found"); |
| 346 | } |
Adriana Kobylak | 9bab9e1 | 2021-02-24 15:32:03 -0600 | [diff] [blame] | 347 | |
Adriana Kobylak | e1074d8 | 2021-03-16 20:46:44 +0000 | [diff] [blame] | 348 | for (const auto& [objPath, services] : subtree) |
| 349 | { |
| 350 | std::string service = services.begin()->first; |
| 351 | if (objPath.empty() || service.empty()) |
| 352 | { |
| 353 | continue; |
Adriana Kobylak | 9bab9e1 | 2021-02-24 15:32:03 -0600 | [diff] [blame] | 354 | } |
Adriana Kobylak | e1074d8 | 2021-03-16 20:46:44 +0000 | [diff] [blame] | 355 | auto properties = util::getAllProperties( |
| 356 | bus, objPath, supportedConfIntf, service); |
| 357 | populateSysProperties(properties); |
Adriana Kobylak | 9bab9e1 | 2021-02-24 15:32:03 -0600 | [diff] [blame] | 358 | } |
| 359 | } |
Patrick Williams | c1d4de5 | 2021-10-06 12:45:57 -0500 | [diff] [blame] | 360 | catch (const std::exception& e) |
Adriana Kobylak | 9bab9e1 | 2021-02-24 15:32:03 -0600 | [diff] [blame] | 361 | { |
| 362 | // Interface or property not found. Let the Interfaces Added callback |
| 363 | // process the information once the interfaces are added to D-Bus. |
| 364 | } |
| 365 | } |
| 366 | |
Patrick Williams | 7354ce6 | 2022-07-22 19:26:56 -0500 | [diff] [blame] | 367 | void PSUManager::entityManagerIfaceAdded(sdbusplus::message_t& msg) |
Adriana Kobylak | 9bab9e1 | 2021-02-24 15:32:03 -0600 | [diff] [blame] | 368 | { |
| 369 | try |
| 370 | { |
| 371 | sdbusplus::message::object_path objPath; |
Adriana Kobylak | e1074d8 | 2021-03-16 20:46:44 +0000 | [diff] [blame] | 372 | std::map<std::string, std::map<std::string, util::DbusVariant>> |
Adriana Kobylak | 9bab9e1 | 2021-02-24 15:32:03 -0600 | [diff] [blame] | 373 | interfaces; |
| 374 | msg.read(objPath, interfaces); |
| 375 | |
| 376 | auto itIntf = interfaces.find(supportedConfIntf); |
Brandon Wyman | 510acaa | 2020-11-05 18:32:04 -0600 | [diff] [blame] | 377 | if (itIntf != interfaces.cend()) |
Adriana Kobylak | 9bab9e1 | 2021-02-24 15:32:03 -0600 | [diff] [blame] | 378 | { |
Brandon Wyman | 510acaa | 2020-11-05 18:32:04 -0600 | [diff] [blame] | 379 | populateSysProperties(itIntf->second); |
Brandon Wyman | f477eb7 | 2022-07-28 16:30:54 +0000 | [diff] [blame] | 380 | updateMissingPSUs(); |
Adriana Kobylak | 9bab9e1 | 2021-02-24 15:32:03 -0600 | [diff] [blame] | 381 | } |
| 382 | |
Brandon Wyman | 510acaa | 2020-11-05 18:32:04 -0600 | [diff] [blame] | 383 | itIntf = interfaces.find(IBMCFFPSInterface); |
| 384 | if (itIntf != interfaces.cend()) |
| 385 | { |
| 386 | log<level::INFO>( |
| 387 | fmt::format("InterfacesAdded for: {}", IBMCFFPSInterface) |
| 388 | .c_str()); |
| 389 | getPSUProperties(itIntf->second); |
Brandon Wyman | f477eb7 | 2022-07-28 16:30:54 +0000 | [diff] [blame] | 390 | updateMissingPSUs(); |
Brandon Wyman | 510acaa | 2020-11-05 18:32:04 -0600 | [diff] [blame] | 391 | } |
Adriana Kobylak | 8f16fb5 | 2021-03-31 15:50:15 +0000 | [diff] [blame] | 392 | |
| 393 | // Call to validate the psu configuration if the power is on and both |
| 394 | // the IBMCFFPSConnector and SupportedConfiguration interfaces have been |
| 395 | // processed |
| 396 | if (powerOn && !psus.empty() && !supportedConfigs.empty()) |
| 397 | { |
Adriana Kobylak | a4d38fa | 2021-10-05 19:57:47 +0000 | [diff] [blame] | 398 | validationTimer->restartOnce(validationTimeout); |
Adriana Kobylak | 8f16fb5 | 2021-03-31 15:50:15 +0000 | [diff] [blame] | 399 | } |
Adriana Kobylak | 9bab9e1 | 2021-02-24 15:32:03 -0600 | [diff] [blame] | 400 | } |
Patrick Williams | c1d4de5 | 2021-10-06 12:45:57 -0500 | [diff] [blame] | 401 | catch (const std::exception& e) |
Adriana Kobylak | 9bab9e1 | 2021-02-24 15:32:03 -0600 | [diff] [blame] | 402 | { |
| 403 | // Ignore, the property may be of a different type than expected. |
| 404 | } |
| 405 | } |
| 406 | |
Patrick Williams | 7354ce6 | 2022-07-22 19:26:56 -0500 | [diff] [blame] | 407 | void PSUManager::powerStateChanged(sdbusplus::message_t& msg) |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 408 | { |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 409 | std::string msgSensor; |
Jim Wright | aca86d0 | 2022-06-10 12:01:39 -0500 | [diff] [blame] | 410 | std::map<std::string, std::variant<int>> msgData; |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 411 | msg.read(msgSensor, msgData); |
| 412 | |
Jim Wright | aca86d0 | 2022-06-10 12:01:39 -0500 | [diff] [blame] | 413 | // Check if it was the state property that changed. |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 414 | auto valPropMap = msgData.find("state"); |
| 415 | if (valPropMap != msgData.end()) |
| 416 | { |
Jim Wright | aca86d0 | 2022-06-10 12:01:39 -0500 | [diff] [blame] | 417 | int state = std::get<int>(valPropMap->second); |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 418 | if (state) |
| 419 | { |
Jim Wright | aca86d0 | 2022-06-10 12:01:39 -0500 | [diff] [blame] | 420 | // Power on requested |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 421 | powerOn = true; |
Jim Wright | aca86d0 | 2022-06-10 12:01:39 -0500 | [diff] [blame] | 422 | powerFaultOccurring = false; |
Adriana Kobylak | a4d38fa | 2021-10-05 19:57:47 +0000 | [diff] [blame] | 423 | validationTimer->restartOnce(validationTimeout); |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 424 | clearFaults(); |
Brandon Wyman | 49b8ec4 | 2022-04-20 21:18:33 +0000 | [diff] [blame] | 425 | syncHistory(); |
Adriana Kobylak | c0a0758 | 2021-10-13 15:52:25 +0000 | [diff] [blame] | 426 | setPowerConfigGPIO(); |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 427 | } |
| 428 | else |
| 429 | { |
Jim Wright | aca86d0 | 2022-06-10 12:01:39 -0500 | [diff] [blame] | 430 | // Power off requested |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 431 | powerOn = false; |
Jim Wright | aca86d0 | 2022-06-10 12:01:39 -0500 | [diff] [blame] | 432 | powerFaultOccurring = false; |
Adriana Kobylak | 8f16fb5 | 2021-03-31 15:50:15 +0000 | [diff] [blame] | 433 | runValidateConfig = true; |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 434 | } |
| 435 | } |
Jim Wright | aca86d0 | 2022-06-10 12:01:39 -0500 | [diff] [blame] | 436 | |
| 437 | // Check if it was the pgood property that changed. |
| 438 | valPropMap = msgData.find("pgood"); |
| 439 | if (valPropMap != msgData.end()) |
| 440 | { |
| 441 | int pgood = std::get<int>(valPropMap->second); |
| 442 | if (!pgood) |
| 443 | { |
| 444 | // Chassis power good has turned off |
| 445 | if (powerOn) |
| 446 | { |
| 447 | // pgood is off but state is on, in power fault window |
| 448 | powerFaultOccurring = true; |
| 449 | } |
| 450 | } |
| 451 | } |
| 452 | log<level::INFO>( |
| 453 | fmt::format( |
| 454 | "powerStateChanged: power on: {}, power fault occurring: {}", |
| 455 | powerOn, powerFaultOccurring) |
| 456 | .c_str()); |
Brandon Wyman | a0f33ce | 2019-10-17 18:32:29 -0500 | [diff] [blame] | 457 | } |
| 458 | |
Patrick Williams | 7354ce6 | 2022-07-22 19:26:56 -0500 | [diff] [blame] | 459 | void PSUManager::presenceChanged(sdbusplus::message_t& msg) |
Adriana Kobylak | 9ba3823 | 2021-11-16 20:27:45 +0000 | [diff] [blame] | 460 | { |
| 461 | std::string msgSensor; |
| 462 | std::map<std::string, std::variant<uint32_t, bool>> msgData; |
| 463 | msg.read(msgSensor, msgData); |
| 464 | |
| 465 | // Check if it was the Present property that changed. |
| 466 | auto valPropMap = msgData.find(PRESENT_PROP); |
| 467 | if (valPropMap != msgData.end()) |
| 468 | { |
| 469 | if (std::get<bool>(valPropMap->second)) |
| 470 | { |
| 471 | // A PSU became present, force the PSU validation to run. |
| 472 | runValidateConfig = true; |
| 473 | validationTimer->restartOnce(validationTimeout); |
| 474 | } |
| 475 | } |
| 476 | } |
| 477 | |
Brandon Wyman | 10fc6e8 | 2022-02-08 20:51:22 +0000 | [diff] [blame] | 478 | void PSUManager::setPowerSupplyError(const std::string& psuErrorString) |
| 479 | { |
| 480 | using namespace sdbusplus::xyz::openbmc_project; |
| 481 | constexpr auto service = "org.openbmc.control.Power"; |
| 482 | constexpr auto objPath = "/org/openbmc/control/power0"; |
| 483 | constexpr auto interface = "org.openbmc.control.Power"; |
| 484 | constexpr auto method = "setPowerSupplyError"; |
| 485 | |
| 486 | try |
| 487 | { |
| 488 | // Call D-Bus method to inform pseq of PSU error |
| 489 | auto methodMsg = |
| 490 | bus.new_method_call(service, objPath, interface, method); |
| 491 | methodMsg.append(psuErrorString); |
| 492 | auto callReply = bus.call(methodMsg); |
| 493 | } |
| 494 | catch (const std::exception& e) |
| 495 | { |
| 496 | log<level::INFO>( |
| 497 | fmt::format("Failed calling setPowerSupplyError due to error {}", |
| 498 | e.what()) |
| 499 | .c_str()); |
| 500 | } |
| 501 | } |
| 502 | |
Brandon Wyman | 8b66288 | 2021-10-08 17:31:51 +0000 | [diff] [blame] | 503 | void PSUManager::createError(const std::string& faultName, |
| 504 | std::map<std::string, std::string>& additionalData) |
Brandon Wyman | b76ab24 | 2020-09-16 18:06:06 -0500 | [diff] [blame] | 505 | { |
| 506 | using namespace sdbusplus::xyz::openbmc_project; |
| 507 | constexpr auto loggingObjectPath = "/xyz/openbmc_project/logging"; |
| 508 | constexpr auto loggingCreateInterface = |
| 509 | "xyz.openbmc_project.Logging.Create"; |
| 510 | |
| 511 | try |
| 512 | { |
Brandon Wyman | 8b66288 | 2021-10-08 17:31:51 +0000 | [diff] [blame] | 513 | additionalData["_PID"] = std::to_string(getpid()); |
| 514 | |
Brandon Wyman | b76ab24 | 2020-09-16 18:06:06 -0500 | [diff] [blame] | 515 | auto service = |
| 516 | util::getService(loggingObjectPath, loggingCreateInterface, bus); |
| 517 | |
| 518 | if (service.empty()) |
| 519 | { |
| 520 | log<level::ERR>("Unable to get logging manager service"); |
| 521 | return; |
| 522 | } |
| 523 | |
| 524 | auto method = bus.new_method_call(service.c_str(), loggingObjectPath, |
| 525 | loggingCreateInterface, "Create"); |
| 526 | |
| 527 | auto level = Logging::server::Entry::Level::Error; |
| 528 | method.append(faultName, level, additionalData); |
| 529 | |
| 530 | auto reply = bus.call(method); |
Brandon Wyman | 10fc6e8 | 2022-02-08 20:51:22 +0000 | [diff] [blame] | 531 | setPowerSupplyError(faultName); |
Brandon Wyman | b76ab24 | 2020-09-16 18:06:06 -0500 | [diff] [blame] | 532 | } |
Patrick Williams | c1d4de5 | 2021-10-06 12:45:57 -0500 | [diff] [blame] | 533 | catch (const std::exception& e) |
Brandon Wyman | b76ab24 | 2020-09-16 18:06:06 -0500 | [diff] [blame] | 534 | { |
| 535 | log<level::ERR>( |
| 536 | fmt::format( |
| 537 | "Failed creating event log for fault {} due to error {}", |
| 538 | faultName, e.what()) |
| 539 | .c_str()); |
| 540 | } |
| 541 | } |
| 542 | |
Brandon Wyman | 18a24d9 | 2022-04-19 22:48:34 +0000 | [diff] [blame] | 543 | void PSUManager::syncHistory() |
| 544 | { |
| 545 | log<level::INFO>("Synchronize INPUT_HISTORY"); |
| 546 | |
| 547 | if (!syncHistoryGPIO) |
| 548 | { |
| 549 | syncHistoryGPIO = createGPIO(INPUT_HISTORY_SYNC_GPIO); |
| 550 | } |
| 551 | if (syncHistoryGPIO) |
| 552 | { |
| 553 | const std::chrono::milliseconds delay{INPUT_HISTORY_SYNC_DELAY}; |
| 554 | syncHistoryGPIO->toggleLowHigh(delay); |
| 555 | for (auto& psu : psus) |
| 556 | { |
| 557 | psu->clearSyncHistoryRequired(); |
| 558 | } |
| 559 | } |
| 560 | |
| 561 | log<level::INFO>("Synchronize INPUT_HISTORY completed"); |
| 562 | } |
| 563 | |
Brandon Wyman | 63ea78b | 2020-09-24 16:49:09 -0500 | [diff] [blame] | 564 | void PSUManager::analyze() |
| 565 | { |
Brandon Wyman | 18a24d9 | 2022-04-19 22:48:34 +0000 | [diff] [blame] | 566 | auto syncHistoryRequired = |
| 567 | std::any_of(psus.begin(), psus.end(), [](const auto& psu) { |
| 568 | return psu->isSyncHistoryRequired(); |
| 569 | }); |
| 570 | if (syncHistoryRequired) |
| 571 | { |
| 572 | syncHistory(); |
| 573 | } |
| 574 | |
Brandon Wyman | 63ea78b | 2020-09-24 16:49:09 -0500 | [diff] [blame] | 575 | for (auto& psu : psus) |
| 576 | { |
| 577 | psu->analyze(); |
| 578 | } |
| 579 | |
Adriana Kobylak | e5b1e08 | 2022-03-02 15:37:32 +0000 | [diff] [blame] | 580 | std::map<std::string, std::string> additionalData; |
| 581 | |
| 582 | auto notPresentCount = decltype(psus.size())( |
| 583 | std::count_if(psus.begin(), psus.end(), |
| 584 | [](const auto& psu) { return !psu->isPresent(); })); |
| 585 | |
| 586 | auto hasVINUVFaultCount = decltype(psus.size())( |
Brandon Wyman | 9bc5f76 | 2022-07-12 20:47:03 +0000 | [diff] [blame] | 587 | std::count_if(psus.begin(), psus.end(), [](const auto& psu) { |
| 588 | return (psu->isPresent() && psu->hasVINUVFault()); |
| 589 | })); |
Adriana Kobylak | e5b1e08 | 2022-03-02 15:37:32 +0000 | [diff] [blame] | 590 | |
| 591 | // The PSU D-Bus objects may not be available yet, so ignore if all |
| 592 | // PSUs are not present or the number of PSUs is still 0. |
| 593 | if ((psus.size() == (notPresentCount + hasVINUVFaultCount)) && |
| 594 | (psus.size() != notPresentCount) && (psus.size() != 0)) |
| 595 | { |
| 596 | // Brownout: All PSUs report an AC failure: At least one PSU reports |
| 597 | // AC loss VIN fault and the rest either report AC loss VIN fault as |
| 598 | // well or are not present. |
| 599 | additionalData["NOT_PRESENT_COUNT"] = std::to_string(notPresentCount); |
| 600 | additionalData["VIN_FAULT_COUNT"] = std::to_string(hasVINUVFaultCount); |
| 601 | setBrownout(additionalData); |
| 602 | } |
| 603 | else |
| 604 | { |
| 605 | // Brownout condition is not present or has been cleared |
| 606 | clearBrownout(); |
| 607 | } |
| 608 | |
Brandon Wyman | 3180f4d | 2020-12-08 17:53:46 -0600 | [diff] [blame] | 609 | if (powerOn) |
Brandon Wyman | 63ea78b | 2020-09-24 16:49:09 -0500 | [diff] [blame] | 610 | { |
Brandon Wyman | 3180f4d | 2020-12-08 17:53:46 -0600 | [diff] [blame] | 611 | for (auto& psu : psus) |
Brandon Wyman | 63ea78b | 2020-09-24 16:49:09 -0500 | [diff] [blame] | 612 | { |
Brandon Wyman | ec0b8dc | 2021-10-08 21:49:43 +0000 | [diff] [blame] | 613 | additionalData.clear(); |
Brandon Wyman | 39ea02b | 2021-11-23 23:22:23 +0000 | [diff] [blame] | 614 | |
Brandon Wyman | 3180f4d | 2020-12-08 17:53:46 -0600 | [diff] [blame] | 615 | if (!psu->isFaultLogged() && !psu->isPresent()) |
| 616 | { |
Brandon Wyman | da369c7 | 2021-10-08 18:43:30 +0000 | [diff] [blame] | 617 | std::map<std::string, std::string> requiredPSUsData; |
| 618 | auto requiredPSUsPresent = hasRequiredPSUs(requiredPSUsData); |
Shawn McCarney | 9252b7e | 2022-06-10 12:47:38 -0500 | [diff] [blame] | 619 | if (!requiredPSUsPresent && isRequiredPSU(*psu)) |
Adriana Kobylak | f2ba146 | 2021-06-24 15:16:17 +0000 | [diff] [blame] | 620 | { |
Brandon Wyman | da369c7 | 2021-10-08 18:43:30 +0000 | [diff] [blame] | 621 | additionalData.merge(requiredPSUsData); |
Adriana Kobylak | f2ba146 | 2021-06-24 15:16:17 +0000 | [diff] [blame] | 622 | // Create error for power supply missing. |
| 623 | additionalData["CALLOUT_INVENTORY_PATH"] = |
| 624 | psu->getInventoryPath(); |
| 625 | additionalData["CALLOUT_PRIORITY"] = "H"; |
| 626 | createError( |
| 627 | "xyz.openbmc_project.Power.PowerSupply.Error.Missing", |
| 628 | additionalData); |
| 629 | } |
Brandon Wyman | 3180f4d | 2020-12-08 17:53:46 -0600 | [diff] [blame] | 630 | psu->setFaultLogged(); |
| 631 | } |
| 632 | else if (!psu->isFaultLogged() && psu->isFaulted()) |
| 633 | { |
Brandon Wyman | 786b6f4 | 2021-10-12 20:21:41 +0000 | [diff] [blame] | 634 | // Add STATUS_WORD and STATUS_MFR last response, in padded |
| 635 | // hexadecimal format. |
Brandon Wyman | 3180f4d | 2020-12-08 17:53:46 -0600 | [diff] [blame] | 636 | additionalData["STATUS_WORD"] = |
Brandon Wyman | 786b6f4 | 2021-10-12 20:21:41 +0000 | [diff] [blame] | 637 | fmt::format("{:#04x}", psu->getStatusWord()); |
Jay Meyer | 10d9405 | 2020-11-30 14:41:21 -0600 | [diff] [blame] | 638 | additionalData["STATUS_MFR"] = |
Brandon Wyman | 786b6f4 | 2021-10-12 20:21:41 +0000 | [diff] [blame] | 639 | fmt::format("{:#02x}", psu->getMFRFault()); |
Brandon Wyman | 3180f4d | 2020-12-08 17:53:46 -0600 | [diff] [blame] | 640 | // If there are faults being reported, they possibly could be |
| 641 | // related to a bug in the firmware version running on the power |
| 642 | // supply. Capture that data into the error as well. |
| 643 | additionalData["FW_VERSION"] = psu->getFWVersion(); |
| 644 | |
Brandon Wyman | b85b9dd | 2021-10-19 21:25:17 +0000 | [diff] [blame] | 645 | if (psu->hasCommFault()) |
| 646 | { |
Brandon Wyman | 85c7bf4 | 2021-10-19 22:28:48 +0000 | [diff] [blame] | 647 | additionalData["STATUS_CML"] = |
| 648 | fmt::format("{:#02x}", psu->getStatusCML()); |
Brandon Wyman | b85b9dd | 2021-10-19 21:25:17 +0000 | [diff] [blame] | 649 | /* Attempts to communicate with the power supply have |
| 650 | * reached there limit. Create an error. */ |
| 651 | additionalData["CALLOUT_DEVICE_PATH"] = |
| 652 | psu->getDevicePath(); |
| 653 | |
| 654 | createError( |
| 655 | "xyz.openbmc_project.Power.PowerSupply.Error.CommFault", |
| 656 | additionalData); |
| 657 | |
| 658 | psu->setFaultLogged(); |
| 659 | } |
| 660 | else if ((psu->hasInputFault() || psu->hasVINUVFault())) |
Brandon Wyman | 3180f4d | 2020-12-08 17:53:46 -0600 | [diff] [blame] | 661 | { |
Brandon Wyman | f07bc79 | 2021-10-12 19:00:35 +0000 | [diff] [blame] | 662 | // Include STATUS_INPUT for input faults. |
| 663 | additionalData["STATUS_INPUT"] = |
| 664 | fmt::format("{:#02x}", psu->getStatusInput()); |
| 665 | |
Brandon Wyman | 3180f4d | 2020-12-08 17:53:46 -0600 | [diff] [blame] | 666 | /* The power supply location might be needed if the input |
| 667 | * fault is due to a problem with the power supply itself. |
| 668 | * Include the inventory path with a call out priority of |
| 669 | * low. |
| 670 | */ |
| 671 | additionalData["CALLOUT_INVENTORY_PATH"] = |
| 672 | psu->getInventoryPath(); |
| 673 | additionalData["CALLOUT_PRIORITY"] = "L"; |
| 674 | createError("xyz.openbmc_project.Power.PowerSupply.Error." |
| 675 | "InputFault", |
| 676 | additionalData); |
| 677 | psu->setFaultLogged(); |
| 678 | } |
Brandon Wyman | 39ea02b | 2021-11-23 23:22:23 +0000 | [diff] [blame] | 679 | else if (psu->hasPSKillFault()) |
| 680 | { |
| 681 | createError( |
| 682 | "xyz.openbmc_project.Power.PowerSupply.Error.PSKillFault", |
| 683 | additionalData); |
| 684 | psu->setFaultLogged(); |
| 685 | } |
Brandon Wyman | 6710ba2 | 2021-10-27 17:39:31 +0000 | [diff] [blame] | 686 | else if (psu->hasVoutOVFault()) |
| 687 | { |
| 688 | // Include STATUS_VOUT for Vout faults. |
| 689 | additionalData["STATUS_VOUT"] = |
| 690 | fmt::format("{:#02x}", psu->getStatusVout()); |
| 691 | |
| 692 | additionalData["CALLOUT_INVENTORY_PATH"] = |
| 693 | psu->getInventoryPath(); |
| 694 | |
| 695 | createError( |
| 696 | "xyz.openbmc_project.Power.PowerSupply.Error.Fault", |
| 697 | additionalData); |
| 698 | |
| 699 | psu->setFaultLogged(); |
| 700 | } |
Brandon Wyman | b10b3be | 2021-11-09 22:12:15 +0000 | [diff] [blame] | 701 | else if (psu->hasIoutOCFault()) |
| 702 | { |
| 703 | // Include STATUS_IOUT for Iout faults. |
| 704 | additionalData["STATUS_IOUT"] = |
| 705 | fmt::format("{:#02x}", psu->getStatusIout()); |
| 706 | |
| 707 | createError( |
| 708 | "xyz.openbmc_project.Power.PowerSupply.Error.IoutOCFault", |
| 709 | additionalData); |
| 710 | |
| 711 | psu->setFaultLogged(); |
| 712 | } |
Brandon Wyman | 39ea02b | 2021-11-23 23:22:23 +0000 | [diff] [blame] | 713 | else if (psu->hasVoutUVFault() || psu->hasPS12VcsFault() || |
| 714 | psu->hasPSCS12VFault()) |
Brandon Wyman | 2cf4694 | 2021-10-28 19:09:16 +0000 | [diff] [blame] | 715 | { |
| 716 | // Include STATUS_VOUT for Vout faults. |
| 717 | additionalData["STATUS_VOUT"] = |
| 718 | fmt::format("{:#02x}", psu->getStatusVout()); |
| 719 | |
| 720 | additionalData["CALLOUT_INVENTORY_PATH"] = |
| 721 | psu->getInventoryPath(); |
| 722 | |
| 723 | createError( |
| 724 | "xyz.openbmc_project.Power.PowerSupply.Error.Fault", |
| 725 | additionalData); |
| 726 | |
| 727 | psu->setFaultLogged(); |
| 728 | } |
Brandon Wyman | 7ee4d7e | 2021-11-19 20:48:23 +0000 | [diff] [blame] | 729 | // A fan fault should have priority over a temperature fault, |
| 730 | // since a failed fan may lead to a temperature problem. |
Jim Wright | aca86d0 | 2022-06-10 12:01:39 -0500 | [diff] [blame] | 731 | // Only process if not in power fault window. |
| 732 | else if (psu->hasFanFault() && !powerFaultOccurring) |
Brandon Wyman | 7ee4d7e | 2021-11-19 20:48:23 +0000 | [diff] [blame] | 733 | { |
| 734 | // Include STATUS_TEMPERATURE and STATUS_FANS_1_2 |
| 735 | additionalData["STATUS_TEMPERATURE"] = |
| 736 | fmt::format("{:#02x}", psu->getStatusTemperature()); |
| 737 | additionalData["STATUS_FANS_1_2"] = |
| 738 | fmt::format("{:#02x}", psu->getStatusFans12()); |
| 739 | |
| 740 | additionalData["CALLOUT_INVENTORY_PATH"] = |
| 741 | psu->getInventoryPath(); |
| 742 | |
| 743 | createError( |
| 744 | "xyz.openbmc_project.Power.PowerSupply.Error.FanFault", |
| 745 | additionalData); |
| 746 | |
| 747 | psu->setFaultLogged(); |
| 748 | } |
Brandon Wyman | 96893a4 | 2021-11-05 19:56:57 +0000 | [diff] [blame] | 749 | else if (psu->hasTempFault()) |
| 750 | { |
| 751 | // Include STATUS_TEMPERATURE for temperature faults. |
| 752 | additionalData["STATUS_TEMPERATURE"] = |
| 753 | fmt::format("{:#02x}", psu->getStatusTemperature()); |
| 754 | |
| 755 | additionalData["CALLOUT_INVENTORY_PATH"] = |
| 756 | psu->getInventoryPath(); |
| 757 | |
| 758 | createError( |
| 759 | "xyz.openbmc_project.Power.PowerSupply.Error.Fault", |
| 760 | additionalData); |
| 761 | |
| 762 | psu->setFaultLogged(); |
| 763 | } |
Brandon Wyman | 3180f4d | 2020-12-08 17:53:46 -0600 | [diff] [blame] | 764 | else if (psu->hasMFRFault()) |
| 765 | { |
| 766 | /* This can represent a variety of faults that result in |
| 767 | * calling out the power supply for replacement: Output |
| 768 | * OverCurrent, Output Under Voltage, and potentially other |
| 769 | * faults. |
| 770 | * |
| 771 | * Also plan on putting specific fault in AdditionalData, |
| 772 | * along with register names and register values |
| 773 | * (STATUS_WORD, STATUS_MFR, etc.).*/ |
| 774 | |
| 775 | additionalData["CALLOUT_INVENTORY_PATH"] = |
| 776 | psu->getInventoryPath(); |
| 777 | |
| 778 | createError( |
| 779 | "xyz.openbmc_project.Power.PowerSupply.Error.Fault", |
Brandon Wyman | 52e54e8 | 2020-10-08 14:44:58 -0500 | [diff] [blame] | 780 | additionalData); |
Brandon Wyman | 63ea78b | 2020-09-24 16:49:09 -0500 | [diff] [blame] | 781 | |
Brandon Wyman | 3180f4d | 2020-12-08 17:53:46 -0600 | [diff] [blame] | 782 | psu->setFaultLogged(); |
| 783 | } |
Jim Wright | aca86d0 | 2022-06-10 12:01:39 -0500 | [diff] [blame] | 784 | // Only process if not in power fault window. |
| 785 | else if (psu->hasPgoodFault() && !powerFaultOccurring) |
Brandon Wyman | 2916ea5 | 2021-11-06 03:31:18 +0000 | [diff] [blame] | 786 | { |
| 787 | /* POWER_GOOD# is not low, or OFF is on */ |
| 788 | additionalData["CALLOUT_INVENTORY_PATH"] = |
| 789 | psu->getInventoryPath(); |
| 790 | |
| 791 | createError( |
| 792 | "xyz.openbmc_project.Power.PowerSupply.Error.Fault", |
| 793 | additionalData); |
| 794 | |
| 795 | psu->setFaultLogged(); |
| 796 | } |
Brandon Wyman | 4176d6b | 2020-10-07 17:41:06 -0500 | [diff] [blame] | 797 | } |
Brandon Wyman | 63ea78b | 2020-09-24 16:49:09 -0500 | [diff] [blame] | 798 | } |
| 799 | } |
| 800 | } |
| 801 | |
Brandon Wyman | 64e9775 | 2022-06-03 23:50:13 +0000 | [diff] [blame] | 802 | void PSUManager::updateMissingPSUs() |
| 803 | { |
| 804 | if (supportedConfigs.empty() || psus.empty()) |
| 805 | { |
| 806 | return; |
| 807 | } |
| 808 | |
| 809 | // Power supplies default to missing. If the power supply is present, |
| 810 | // the PowerSupply object will update the inventory Present property to |
| 811 | // true. If we have less than the required number of power supplies, and |
| 812 | // this power supply is missing, update the inventory Present property |
| 813 | // to false to indicate required power supply is missing. Avoid |
| 814 | // indicating power supply missing if not required. |
| 815 | |
| 816 | auto presentCount = |
| 817 | std::count_if(psus.begin(), psus.end(), |
| 818 | [](const auto& psu) { return psu->isPresent(); }); |
| 819 | |
| 820 | for (const auto& config : supportedConfigs) |
| 821 | { |
| 822 | for (const auto& psu : psus) |
| 823 | { |
| 824 | auto psuModel = psu->getModelName(); |
| 825 | auto psuShortName = psu->getShortName(); |
| 826 | auto psuInventoryPath = psu->getInventoryPath(); |
| 827 | auto relativeInvPath = |
| 828 | psuInventoryPath.substr(strlen(INVENTORY_OBJ_PATH)); |
| 829 | auto psuPresent = psu->isPresent(); |
| 830 | auto presProperty = false; |
| 831 | auto propReadFail = false; |
| 832 | |
| 833 | try |
| 834 | { |
| 835 | presProperty = getPresence(bus, psuInventoryPath); |
| 836 | propReadFail = false; |
| 837 | } |
Patrick Williams | 7354ce6 | 2022-07-22 19:26:56 -0500 | [diff] [blame] | 838 | catch (const sdbusplus::exception_t& e) |
Brandon Wyman | 64e9775 | 2022-06-03 23:50:13 +0000 | [diff] [blame] | 839 | { |
| 840 | propReadFail = true; |
| 841 | // Relying on property change or interface added to retry. |
| 842 | // Log an informational trace to the journal. |
| 843 | log<level::INFO>( |
| 844 | fmt::format("D-Bus property {} access failure exception", |
| 845 | psuInventoryPath) |
| 846 | .c_str()); |
| 847 | } |
| 848 | |
| 849 | if (psuModel.empty()) |
| 850 | { |
| 851 | if (!propReadFail && (presProperty != psuPresent)) |
| 852 | { |
| 853 | // We already have this property, and it is not false |
| 854 | // set Present to false |
| 855 | setPresence(bus, relativeInvPath, psuPresent, psuShortName); |
| 856 | } |
| 857 | continue; |
| 858 | } |
| 859 | |
| 860 | if (config.first != psuModel) |
| 861 | { |
| 862 | continue; |
| 863 | } |
| 864 | |
| 865 | if ((presentCount < config.second.powerSupplyCount) && !psuPresent) |
| 866 | { |
| 867 | setPresence(bus, relativeInvPath, psuPresent, psuShortName); |
| 868 | } |
| 869 | } |
| 870 | } |
| 871 | } |
| 872 | |
Adriana Kobylak | 8f16fb5 | 2021-03-31 15:50:15 +0000 | [diff] [blame] | 873 | void PSUManager::validateConfig() |
| 874 | { |
Adriana Kobylak | b23e443 | 2022-04-01 14:22:47 +0000 | [diff] [blame] | 875 | if (!runValidateConfig || supportedConfigs.empty() || psus.empty()) |
Adriana Kobylak | 8f16fb5 | 2021-03-31 15:50:15 +0000 | [diff] [blame] | 876 | { |
| 877 | return; |
| 878 | } |
| 879 | |
Brandon Wyman | 9666ddf | 2022-04-27 21:53:14 +0000 | [diff] [blame] | 880 | for (const auto& psu : psus) |
| 881 | { |
| 882 | if ((psu->hasInputFault() || psu->hasVINUVFault())) |
| 883 | { |
| 884 | // Do not try to validate if input voltage fault present. |
| 885 | validationTimer->restartOnce(validationTimeout); |
| 886 | return; |
| 887 | } |
| 888 | } |
| 889 | |
Adriana Kobylak | 4d9aaf9 | 2021-06-30 15:27:42 +0000 | [diff] [blame] | 890 | std::map<std::string, std::string> additionalData; |
| 891 | auto supported = hasRequiredPSUs(additionalData); |
| 892 | if (supported) |
| 893 | { |
| 894 | runValidateConfig = false; |
| 895 | return; |
| 896 | } |
| 897 | |
| 898 | // Validation failed, create an error log. |
| 899 | // Return without setting the runValidateConfig flag to false because |
| 900 | // it may be that an additional supported configuration interface is |
| 901 | // added and we need to validate it to see if it matches this system. |
| 902 | createError("xyz.openbmc_project.Power.PowerSupply.Error.NotSupported", |
| 903 | additionalData); |
| 904 | } |
| 905 | |
| 906 | bool PSUManager::hasRequiredPSUs( |
| 907 | std::map<std::string, std::string>& additionalData) |
| 908 | { |
Adriana Kobylak | 8f16fb5 | 2021-03-31 15:50:15 +0000 | [diff] [blame] | 909 | std::string model{}; |
Adriana Kobylak | 523704d | 2021-09-21 15:55:41 +0000 | [diff] [blame] | 910 | if (!validateModelName(model, additionalData)) |
Adriana Kobylak | 8f16fb5 | 2021-03-31 15:50:15 +0000 | [diff] [blame] | 911 | { |
Adriana Kobylak | 523704d | 2021-09-21 15:55:41 +0000 | [diff] [blame] | 912 | return false; |
Adriana Kobylak | 8f16fb5 | 2021-03-31 15:50:15 +0000 | [diff] [blame] | 913 | } |
Adriana Kobylak | 70e7f93 | 2021-06-10 18:53:56 +0000 | [diff] [blame] | 914 | |
Adriana Kobylak | 4d9aaf9 | 2021-06-30 15:27:42 +0000 | [diff] [blame] | 915 | auto presentCount = |
| 916 | std::count_if(psus.begin(), psus.end(), |
| 917 | [](const auto& psu) { return psu->isPresent(); }); |
| 918 | |
Adriana Kobylak | 70e7f93 | 2021-06-10 18:53:56 +0000 | [diff] [blame] | 919 | // Validate the supported configurations. A system may support more than one |
Adriana Kobylak | 4175ffb | 2021-08-02 14:51:05 +0000 | [diff] [blame] | 920 | // power supply model configuration. Since all configurations need to be |
| 921 | // checked, the additional data would contain only the information of the |
| 922 | // last configuration that did not match. |
| 923 | std::map<std::string, std::string> tmpAdditionalData; |
Adriana Kobylak | 70e7f93 | 2021-06-10 18:53:56 +0000 | [diff] [blame] | 924 | for (const auto& config : supportedConfigs) |
| 925 | { |
Adriana Kobylak | 4d9aaf9 | 2021-06-30 15:27:42 +0000 | [diff] [blame] | 926 | if (config.first != model) |
Adriana Kobylak | 70e7f93 | 2021-06-10 18:53:56 +0000 | [diff] [blame] | 927 | { |
| 928 | continue; |
| 929 | } |
Brandon Wyman | 64e9775 | 2022-06-03 23:50:13 +0000 | [diff] [blame] | 930 | |
Adriana Kobylak | 70e7f93 | 2021-06-10 18:53:56 +0000 | [diff] [blame] | 931 | if (presentCount != config.second.powerSupplyCount) |
| 932 | { |
Adriana Kobylak | 4175ffb | 2021-08-02 14:51:05 +0000 | [diff] [blame] | 933 | tmpAdditionalData.clear(); |
| 934 | tmpAdditionalData["EXPECTED_COUNT"] = |
Adriana Kobylak | 70e7f93 | 2021-06-10 18:53:56 +0000 | [diff] [blame] | 935 | std::to_string(config.second.powerSupplyCount); |
Adriana Kobylak | 4175ffb | 2021-08-02 14:51:05 +0000 | [diff] [blame] | 936 | tmpAdditionalData["ACTUAL_COUNT"] = std::to_string(presentCount); |
Adriana Kobylak | 70e7f93 | 2021-06-10 18:53:56 +0000 | [diff] [blame] | 937 | continue; |
| 938 | } |
Adriana Kobylak | 4175ffb | 2021-08-02 14:51:05 +0000 | [diff] [blame] | 939 | |
| 940 | bool voltageValidated = true; |
| 941 | for (const auto& psu : psus) |
| 942 | { |
| 943 | if (!psu->isPresent()) |
| 944 | { |
| 945 | // Only present PSUs report a valid input voltage |
| 946 | continue; |
| 947 | } |
| 948 | |
| 949 | double actualInputVoltage; |
| 950 | int inputVoltage; |
| 951 | psu->getInputVoltage(actualInputVoltage, inputVoltage); |
| 952 | |
| 953 | if (std::find(config.second.inputVoltage.begin(), |
| 954 | config.second.inputVoltage.end(), |
| 955 | inputVoltage) == config.second.inputVoltage.end()) |
| 956 | { |
| 957 | tmpAdditionalData.clear(); |
| 958 | tmpAdditionalData["ACTUAL_VOLTAGE"] = |
| 959 | std::to_string(actualInputVoltage); |
| 960 | for (const auto& voltage : config.second.inputVoltage) |
| 961 | { |
| 962 | tmpAdditionalData["EXPECTED_VOLTAGE"] += |
| 963 | std::to_string(voltage) + " "; |
| 964 | } |
| 965 | tmpAdditionalData["CALLOUT_INVENTORY_PATH"] = |
| 966 | psu->getInventoryPath(); |
| 967 | |
| 968 | voltageValidated = false; |
| 969 | break; |
| 970 | } |
| 971 | } |
| 972 | if (!voltageValidated) |
| 973 | { |
| 974 | continue; |
| 975 | } |
| 976 | |
Adriana Kobylak | 4d9aaf9 | 2021-06-30 15:27:42 +0000 | [diff] [blame] | 977 | return true; |
Adriana Kobylak | 70e7f93 | 2021-06-10 18:53:56 +0000 | [diff] [blame] | 978 | } |
Adriana Kobylak | 70e7f93 | 2021-06-10 18:53:56 +0000 | [diff] [blame] | 979 | |
Adriana Kobylak | 4175ffb | 2021-08-02 14:51:05 +0000 | [diff] [blame] | 980 | additionalData.insert(tmpAdditionalData.begin(), tmpAdditionalData.end()); |
Adriana Kobylak | 4d9aaf9 | 2021-06-30 15:27:42 +0000 | [diff] [blame] | 981 | return false; |
Adriana Kobylak | 8f16fb5 | 2021-03-31 15:50:15 +0000 | [diff] [blame] | 982 | } |
| 983 | |
Shawn McCarney | 9252b7e | 2022-06-10 12:47:38 -0500 | [diff] [blame] | 984 | unsigned int PSUManager::getRequiredPSUCount() |
| 985 | { |
| 986 | unsigned int requiredCount{0}; |
| 987 | |
| 988 | // Verify we have the supported configuration and PSU information |
| 989 | if (!supportedConfigs.empty() && !psus.empty()) |
| 990 | { |
| 991 | // Find PSU models. They should all be the same. |
| 992 | std::set<std::string> models{}; |
| 993 | std::for_each(psus.begin(), psus.end(), [&models](const auto& psu) { |
| 994 | if (!psu->getModelName().empty()) |
| 995 | { |
| 996 | models.insert(psu->getModelName()); |
| 997 | } |
| 998 | }); |
| 999 | |
| 1000 | // If exactly one model was found, find corresponding configuration |
| 1001 | if (models.size() == 1) |
| 1002 | { |
| 1003 | const std::string& model = *(models.begin()); |
| 1004 | auto it = supportedConfigs.find(model); |
| 1005 | if (it != supportedConfigs.end()) |
| 1006 | { |
| 1007 | requiredCount = it->second.powerSupplyCount; |
| 1008 | } |
| 1009 | } |
| 1010 | } |
| 1011 | |
| 1012 | return requiredCount; |
| 1013 | } |
| 1014 | |
| 1015 | bool PSUManager::isRequiredPSU(const PowerSupply& psu) |
| 1016 | { |
| 1017 | // Get required number of PSUs; if not found, we don't know if PSU required |
| 1018 | unsigned int requiredCount = getRequiredPSUCount(); |
| 1019 | if (requiredCount == 0) |
| 1020 | { |
| 1021 | return false; |
| 1022 | } |
| 1023 | |
| 1024 | // If total PSU count <= the required count, all PSUs are required |
| 1025 | if (psus.size() <= requiredCount) |
| 1026 | { |
| 1027 | return true; |
| 1028 | } |
| 1029 | |
| 1030 | // We don't currently get information from EntityManager about which PSUs |
| 1031 | // are required, so we have to do some guesswork. First check if this PSU |
| 1032 | // is present. If so, assume it is required. |
| 1033 | if (psu.isPresent()) |
| 1034 | { |
| 1035 | return true; |
| 1036 | } |
| 1037 | |
| 1038 | // This PSU is not present. Count the number of other PSUs that are |
| 1039 | // present. If enough other PSUs are present, assume the specified PSU is |
| 1040 | // not required. |
| 1041 | unsigned int psuCount = |
| 1042 | std::count_if(psus.begin(), psus.end(), |
| 1043 | [](const auto& psu) { return psu->isPresent(); }); |
| 1044 | if (psuCount >= requiredCount) |
| 1045 | { |
| 1046 | return false; |
| 1047 | } |
| 1048 | |
| 1049 | // Check if this PSU was previously present. If so, assume it is required. |
| 1050 | // We know it was previously present if it has a non-empty model name. |
| 1051 | if (!psu.getModelName().empty()) |
| 1052 | { |
| 1053 | return true; |
| 1054 | } |
| 1055 | |
| 1056 | // This PSU was never present. Count the number of other PSUs that were |
| 1057 | // previously present. If including those PSUs is enough, assume the |
| 1058 | // specified PSU is not required. |
| 1059 | psuCount += std::count_if(psus.begin(), psus.end(), [](const auto& psu) { |
| 1060 | return (!psu->isPresent() && !psu->getModelName().empty()); |
| 1061 | }); |
| 1062 | if (psuCount >= requiredCount) |
| 1063 | { |
| 1064 | return false; |
| 1065 | } |
| 1066 | |
| 1067 | // We still haven't found enough PSUs. Sort the inventory paths of PSUs |
| 1068 | // that were never present. PSU inventory paths typically end with the PSU |
| 1069 | // number (0, 1, 2, ...). Assume that lower-numbered PSUs are required. |
| 1070 | std::vector<std::string> sortedPaths; |
| 1071 | std::for_each(psus.begin(), psus.end(), [&sortedPaths](const auto& psu) { |
| 1072 | if (!psu->isPresent() && psu->getModelName().empty()) |
| 1073 | { |
| 1074 | sortedPaths.push_back(psu->getInventoryPath()); |
| 1075 | } |
| 1076 | }); |
| 1077 | std::sort(sortedPaths.begin(), sortedPaths.end()); |
| 1078 | |
| 1079 | // Check if specified PSU is close enough to start of list to be required |
| 1080 | for (const auto& path : sortedPaths) |
| 1081 | { |
| 1082 | if (path == psu.getInventoryPath()) |
| 1083 | { |
| 1084 | return true; |
| 1085 | } |
| 1086 | if (++psuCount >= requiredCount) |
| 1087 | { |
| 1088 | break; |
| 1089 | } |
| 1090 | } |
| 1091 | |
| 1092 | // PSU was not close to start of sorted list; assume not required |
| 1093 | return false; |
| 1094 | } |
| 1095 | |
Adriana Kobylak | 523704d | 2021-09-21 15:55:41 +0000 | [diff] [blame] | 1096 | bool PSUManager::validateModelName( |
| 1097 | std::string& model, std::map<std::string, std::string>& additionalData) |
| 1098 | { |
| 1099 | // Check that all PSUs have the same model name. Initialize the model |
| 1100 | // variable with the first PSU name found, then use it as a base to compare |
Adriana Kobylak | b70eae9 | 2022-01-20 22:09:56 +0000 | [diff] [blame] | 1101 | // against the rest of the PSUs and get its inventory path to use as callout |
| 1102 | // if needed. |
Adriana Kobylak | 523704d | 2021-09-21 15:55:41 +0000 | [diff] [blame] | 1103 | model.clear(); |
Adriana Kobylak | b70eae9 | 2022-01-20 22:09:56 +0000 | [diff] [blame] | 1104 | std::string modelInventoryPath{}; |
Adriana Kobylak | 523704d | 2021-09-21 15:55:41 +0000 | [diff] [blame] | 1105 | for (const auto& psu : psus) |
| 1106 | { |
| 1107 | auto psuModel = psu->getModelName(); |
| 1108 | if (psuModel.empty()) |
| 1109 | { |
| 1110 | continue; |
| 1111 | } |
| 1112 | if (model.empty()) |
| 1113 | { |
| 1114 | model = psuModel; |
Adriana Kobylak | b70eae9 | 2022-01-20 22:09:56 +0000 | [diff] [blame] | 1115 | modelInventoryPath = psu->getInventoryPath(); |
Adriana Kobylak | 523704d | 2021-09-21 15:55:41 +0000 | [diff] [blame] | 1116 | continue; |
| 1117 | } |
| 1118 | if (psuModel != model) |
| 1119 | { |
Adriana Kobylak | b70eae9 | 2022-01-20 22:09:56 +0000 | [diff] [blame] | 1120 | if (supportedConfigs.find(model) != supportedConfigs.end()) |
| 1121 | { |
| 1122 | // The base model is supported, callout the mismatched PSU. The |
| 1123 | // mismatched PSU may or may not be supported. |
| 1124 | additionalData["EXPECTED_MODEL"] = model; |
| 1125 | additionalData["ACTUAL_MODEL"] = psuModel; |
| 1126 | additionalData["CALLOUT_INVENTORY_PATH"] = |
| 1127 | psu->getInventoryPath(); |
| 1128 | } |
| 1129 | else if (supportedConfigs.find(psuModel) != supportedConfigs.end()) |
| 1130 | { |
| 1131 | // The base model is not supported, but the mismatched PSU is, |
| 1132 | // callout the base PSU. |
| 1133 | additionalData["EXPECTED_MODEL"] = psuModel; |
| 1134 | additionalData["ACTUAL_MODEL"] = model; |
| 1135 | additionalData["CALLOUT_INVENTORY_PATH"] = modelInventoryPath; |
| 1136 | } |
| 1137 | else |
| 1138 | { |
| 1139 | // The base model and the mismatched PSU are not supported or |
| 1140 | // could not be found in the supported configuration, callout |
| 1141 | // the mismatched PSU. |
| 1142 | additionalData["EXPECTED_MODEL"] = model; |
| 1143 | additionalData["ACTUAL_MODEL"] = psuModel; |
| 1144 | additionalData["CALLOUT_INVENTORY_PATH"] = |
| 1145 | psu->getInventoryPath(); |
| 1146 | } |
Adriana Kobylak | 523704d | 2021-09-21 15:55:41 +0000 | [diff] [blame] | 1147 | model.clear(); |
| 1148 | return false; |
| 1149 | } |
| 1150 | } |
| 1151 | return true; |
| 1152 | } |
| 1153 | |
Adriana Kobylak | c0a0758 | 2021-10-13 15:52:25 +0000 | [diff] [blame] | 1154 | void PSUManager::setPowerConfigGPIO() |
| 1155 | { |
| 1156 | if (!powerConfigGPIO) |
| 1157 | { |
| 1158 | return; |
| 1159 | } |
| 1160 | |
| 1161 | std::string model{}; |
| 1162 | std::map<std::string, std::string> additionalData; |
| 1163 | if (!validateModelName(model, additionalData)) |
| 1164 | { |
| 1165 | return; |
| 1166 | } |
| 1167 | |
| 1168 | auto config = supportedConfigs.find(model); |
| 1169 | if (config != supportedConfigs.end()) |
| 1170 | { |
| 1171 | // The power-config-full-load is an open drain GPIO. Set it to low (0) |
| 1172 | // if the supported configuration indicates that this system model |
| 1173 | // expects the maximum number of power supplies (full load set to true). |
| 1174 | // Else, set it to high (1), this is the default. |
| 1175 | auto powerConfigValue = |
| 1176 | (config->second.powerConfigFullLoad == true ? 0 : 1); |
| 1177 | auto flags = gpiod::line_request::FLAG_OPEN_DRAIN; |
| 1178 | powerConfigGPIO->write(powerConfigValue, flags); |
| 1179 | } |
| 1180 | } |
| 1181 | |
Adriana Kobylak | e5b1e08 | 2022-03-02 15:37:32 +0000 | [diff] [blame] | 1182 | void PSUManager::setBrownout(std::map<std::string, std::string>& additionalData) |
| 1183 | { |
| 1184 | powerSystemInputs.status(sdbusplus::xyz::openbmc_project::State::Decorator:: |
| 1185 | server::PowerSystemInputs::Status::Fault); |
| 1186 | if (!brownoutLogged) |
| 1187 | { |
| 1188 | if (powerOn) |
| 1189 | { |
| 1190 | createError( |
| 1191 | "xyz.openbmc_project.State.Shutdown.Power.Error.Blackout", |
| 1192 | additionalData); |
| 1193 | brownoutLogged = true; |
| 1194 | } |
| 1195 | } |
| 1196 | } |
| 1197 | |
| 1198 | void PSUManager::clearBrownout() |
| 1199 | { |
| 1200 | powerSystemInputs.status(sdbusplus::xyz::openbmc_project::State::Decorator:: |
| 1201 | server::PowerSystemInputs::Status::Good); |
| 1202 | brownoutLogged = false; |
| 1203 | } |
| 1204 | |
Brandon Wyman | 63ea78b | 2020-09-24 16:49:09 -0500 | [diff] [blame] | 1205 | } // namespace phosphor::power::manager |