blob: 351d2d347f14f2d5f2dba8f97ef98ef252f57c6c [file] [log] [blame]
Brandon Wyman18a24d92022-04-19 22:48:34 +00001#include "config.h"
2
Brandon Wymana0f33ce2019-10-17 18:32:29 -05003#include "psu_manager.hpp"
4
5#include "utility.hpp"
6
Brandon Wymanb76ab242020-09-16 18:06:06 -05007#include <fmt/format.h>
8#include <sys/types.h>
9#include <unistd.h>
10
Brandon Wymanecbecbc2021-08-31 22:53:21 +000011#include <regex>
12
Brandon Wymanaed1f752019-11-25 18:10:52 -060013using namespace phosphor::logging;
14
Brandon Wyman63ea78b2020-09-24 16:49:09 -050015namespace phosphor::power::manager
Brandon Wymana0f33ce2019-10-17 18:32:29 -050016{
Adriana Kobylakc9b05732022-03-19 15:15:10 +000017constexpr auto managerBusName = "xyz.openbmc_project.Power.PSUMonitor";
18constexpr auto objectManagerObjPath =
19 "/xyz/openbmc_project/power/power_supplies";
20constexpr auto powerSystemsInputsObjPath =
21 "/xyz/openbmc_project/power/power_supplies/chassis0/psus";
Brandon Wymana0f33ce2019-10-17 18:32:29 -050022
Brandon Wyman510acaa2020-11-05 18:32:04 -060023constexpr auto IBMCFFPSInterface =
24 "xyz.openbmc_project.Configuration.IBMCFFPSConnector";
25constexpr auto i2cBusProp = "I2CBus";
26constexpr auto i2cAddressProp = "I2CAddress";
27constexpr auto psuNameProp = "Name";
B. J. Wyman681b2a32021-04-20 22:31:22 +000028constexpr auto presLineName = "NamedPresenceGpio";
Brandon Wyman510acaa2020-11-05 18:32:04 -060029
Adriana Kobylak9bab9e12021-02-24 15:32:03 -060030constexpr auto supportedConfIntf =
31 "xyz.openbmc_project.Configuration.SupportedConfiguration";
Adriana Kobylak9bab9e12021-02-24 15:32:03 -060032
Brandon Wyman18a24d92022-04-19 22:48:34 +000033constexpr auto INPUT_HISTORY_SYNC_DELAY = 1100;
34
Brandon Wyman510acaa2020-11-05 18:32:04 -060035PSUManager::PSUManager(sdbusplus::bus::bus& bus, const sdeventplus::Event& e) :
Adriana Kobylakc9b05732022-03-19 15:15:10 +000036 bus(bus), powerSystemInputs(bus, powerSystemsInputsObjPath),
Brandon Wymanc3324422022-03-24 20:30:57 +000037 objectManager(bus, objectManagerObjPath),
38 historyManager(bus, "/org/open_power/sensors")
Brandon Wyman510acaa2020-11-05 18:32:04 -060039{
Brandon Wyman510acaa2020-11-05 18:32:04 -060040 // Subscribe to InterfacesAdded before doing a property read, otherwise
41 // the interface could be created after the read attempt but before the
42 // match is created.
43 entityManagerIfacesAddedMatch = std::make_unique<sdbusplus::bus::match_t>(
44 bus,
45 sdbusplus::bus::match::rules::interfacesAdded() +
46 sdbusplus::bus::match::rules::sender(
47 "xyz.openbmc_project.EntityManager"),
48 std::bind(&PSUManager::entityManagerIfaceAdded, this,
49 std::placeholders::_1));
50 getPSUConfiguration();
51 getSystemProperties();
52
Adriana Kobylakc9b05732022-03-19 15:15:10 +000053 // Request the bus name before the analyze() function, which is the one that
54 // determines the brownout condition and sets the status d-bus property.
55 bus.request_name(managerBusName);
56
Brandon Wyman510acaa2020-11-05 18:32:04 -060057 using namespace sdeventplus;
58 auto interval = std::chrono::milliseconds(1000);
59 timer = std::make_unique<utility::Timer<ClockId::Monotonic>>(
60 e, std::bind(&PSUManager::analyze, this), interval);
61
Adriana Kobylaka4d38fa2021-10-05 19:57:47 +000062 validationTimer = std::make_unique<utility::Timer<ClockId::Monotonic>>(
63 e, std::bind(&PSUManager::validateConfig, this));
64
Adriana Kobylakc0a07582021-10-13 15:52:25 +000065 try
66 {
67 powerConfigGPIO = createGPIO("power-config-full-load");
68 }
69 catch (const std::exception& e)
70 {
71 // Ignore error, GPIO may not be implemented in this system.
72 powerConfigGPIO = nullptr;
73 }
74
Brandon Wyman510acaa2020-11-05 18:32:04 -060075 // Subscribe to power state changes
76 powerService = util::getService(POWER_OBJ_PATH, POWER_IFACE, bus);
77 powerOnMatch = std::make_unique<sdbusplus::bus::match_t>(
78 bus,
79 sdbusplus::bus::match::rules::propertiesChanged(POWER_OBJ_PATH,
80 POWER_IFACE),
81 [this](auto& msg) { this->powerStateChanged(msg); });
82
83 initialize();
84}
85
Brandon Wyman510acaa2020-11-05 18:32:04 -060086void PSUManager::getPSUConfiguration()
87{
88 using namespace phosphor::power::util;
89 auto depth = 0;
90 auto objects = getSubTree(bus, "/", IBMCFFPSInterface, depth);
91
92 psus.clear();
93
94 // I should get a map of objects back.
95 // Each object will have a path, a service, and an interface.
96 // The interface should match the one passed into this function.
97 for (const auto& [path, services] : objects)
98 {
99 auto service = services.begin()->first;
100
101 if (path.empty() || service.empty())
102 {
103 continue;
104 }
105
106 // For each object in the array of objects, I want to get properties
107 // from the service, path, and interface.
108 auto properties =
109 getAllProperties(bus, path, IBMCFFPSInterface, service);
110
111 getPSUProperties(properties);
112 }
113
114 if (psus.empty())
115 {
116 // Interface or properties not found. Let the Interfaces Added callback
117 // process the information once the interfaces are added to D-Bus.
118 log<level::INFO>(fmt::format("No power supplies to monitor").c_str());
119 }
120}
121
122void PSUManager::getPSUProperties(util::DbusPropertyMap& properties)
123{
124 // From passed in properties, I want to get: I2CBus, I2CAddress,
125 // and Name. Create a power supply object, using Name to build the inventory
126 // path.
127 const auto basePSUInvPath =
128 "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply";
129 uint64_t* i2cbus = nullptr;
130 uint64_t* i2caddr = nullptr;
131 std::string* psuname = nullptr;
B. J. Wyman681b2a32021-04-20 22:31:22 +0000132 std::string* preslineptr = nullptr;
Brandon Wyman510acaa2020-11-05 18:32:04 -0600133
134 for (const auto& property : properties)
135 {
136 try
137 {
138 if (property.first == i2cBusProp)
139 {
140 i2cbus = std::get_if<uint64_t>(&properties[i2cBusProp]);
141 }
142 else if (property.first == i2cAddressProp)
143 {
144 i2caddr = std::get_if<uint64_t>(&properties[i2cAddressProp]);
145 }
146 else if (property.first == psuNameProp)
147 {
148 psuname = std::get_if<std::string>(&properties[psuNameProp]);
149 }
B. J. Wyman681b2a32021-04-20 22:31:22 +0000150 else if (property.first == presLineName)
151 {
152 preslineptr =
153 std::get_if<std::string>(&properties[presLineName]);
154 }
Brandon Wyman510acaa2020-11-05 18:32:04 -0600155 }
Patrick Williamsc1d4de52021-10-06 12:45:57 -0500156 catch (const std::exception& e)
Adriana Kobylak0c9a33d2021-09-13 18:05:09 +0000157 {}
Brandon Wyman510acaa2020-11-05 18:32:04 -0600158 }
159
160 if ((i2cbus) && (i2caddr) && (psuname) && (!psuname->empty()))
161 {
162 std::string invpath = basePSUInvPath;
163 invpath.push_back(psuname->back());
B. J. Wyman681b2a32021-04-20 22:31:22 +0000164 std::string presline = "";
Brandon Wyman510acaa2020-11-05 18:32:04 -0600165
166 log<level::DEBUG>(fmt::format("Inventory Path: {}", invpath).c_str());
167
B. J. Wyman681b2a32021-04-20 22:31:22 +0000168 if (nullptr != preslineptr)
169 {
170 presline = *preslineptr;
171 }
172
Brandon Wymanecbecbc2021-08-31 22:53:21 +0000173 auto invMatch =
174 std::find_if(psus.begin(), psus.end(), [&invpath](auto& psu) {
175 return psu->getInventoryPath() == invpath;
176 });
177 if (invMatch != psus.end())
178 {
179 // This power supply has the same inventory path as the one with
180 // information just added to D-Bus.
181 // Changes to GPIO line name unlikely, so skip checking.
182 // Changes to the I2C bus and address unlikely, as that would
183 // require corresponding device tree updates.
184 // Return out to avoid duplicate object creation.
185 return;
186 }
187
Brandon Wymanc3324422022-03-24 20:30:57 +0000188 constexpr auto driver = "ibm-cffps";
B. J. Wyman681b2a32021-04-20 22:31:22 +0000189 log<level::DEBUG>(
Brandon Wymanc3324422022-03-24 20:30:57 +0000190 fmt::format(
191 "make PowerSupply bus: {} addr: {} driver: {} presline: {}",
192 *i2cbus, *i2caddr, driver, presline)
B. J. Wyman681b2a32021-04-20 22:31:22 +0000193 .c_str());
194 auto psu = std::make_unique<PowerSupply>(bus, invpath, *i2cbus,
Brandon Wymanc3324422022-03-24 20:30:57 +0000195 *i2caddr, driver, presline);
Brandon Wyman510acaa2020-11-05 18:32:04 -0600196 psus.emplace_back(std::move(psu));
Adriana Kobylak9ba38232021-11-16 20:27:45 +0000197
198 // Subscribe to power supply presence changes
199 auto presenceMatch = std::make_unique<sdbusplus::bus::match_t>(
200 bus,
201 sdbusplus::bus::match::rules::propertiesChanged(invpath,
202 INVENTORY_IFACE),
203 [this](auto& msg) { this->presenceChanged(msg); });
204 presenceMatches.emplace_back(std::move(presenceMatch));
Brandon Wyman510acaa2020-11-05 18:32:04 -0600205 }
206
207 if (psus.empty())
208 {
209 log<level::INFO>(fmt::format("No power supplies to monitor").c_str());
210 }
211}
212
Adriana Kobylake1074d82021-03-16 20:46:44 +0000213void PSUManager::populateSysProperties(const util::DbusPropertyMap& properties)
214{
215 try
216 {
Adriana Kobylak9ea66a62021-03-24 17:54:14 +0000217 auto propIt = properties.find("SupportedType");
218 if (propIt == properties.end())
219 {
220 return;
221 }
222 const std::string* type = std::get_if<std::string>(&(propIt->second));
223 if ((type == nullptr) || (*type != "PowerSupply"))
224 {
225 return;
226 }
227
Adriana Kobylak9ea66a62021-03-24 17:54:14 +0000228 propIt = properties.find("SupportedModel");
229 if (propIt == properties.end())
230 {
231 return;
232 }
Adriana Kobylakd3a70d92021-06-04 16:24:45 +0000233 const std::string* model = std::get_if<std::string>(&(propIt->second));
234 if (model == nullptr)
Adriana Kobylak9ea66a62021-03-24 17:54:14 +0000235 {
236 return;
237 }
Adriana Kobylak9ea66a62021-03-24 17:54:14 +0000238
Adriana Kobylakd3a70d92021-06-04 16:24:45 +0000239 sys_properties sys;
Adriana Kobylak9ea66a62021-03-24 17:54:14 +0000240 propIt = properties.find("RedundantCount");
Adriana Kobylake1074d82021-03-16 20:46:44 +0000241 if (propIt != properties.end())
242 {
243 const uint64_t* count = std::get_if<uint64_t>(&(propIt->second));
244 if (count != nullptr)
245 {
Adriana Kobylakd3a70d92021-06-04 16:24:45 +0000246 sys.powerSupplyCount = *count;
Adriana Kobylake1074d82021-03-16 20:46:44 +0000247 }
248 }
Adriana Kobylak9ea66a62021-03-24 17:54:14 +0000249 propIt = properties.find("InputVoltage");
250 if (propIt != properties.end())
251 {
Adriana Kobylakd3a70d92021-06-04 16:24:45 +0000252 const std::vector<uint64_t>* voltage =
253 std::get_if<std::vector<uint64_t>>(&(propIt->second));
Adriana Kobylak9ea66a62021-03-24 17:54:14 +0000254 if (voltage != nullptr)
255 {
256 sys.inputVoltage = *voltage;
257 }
258 }
259
Adriana Kobylak886574c2021-11-01 18:22:28 +0000260 // The PowerConfigFullLoad is an optional property, default it to false
261 // since that's the default value of the power-config-full-load GPIO.
262 sys.powerConfigFullLoad = false;
263 propIt = properties.find("PowerConfigFullLoad");
264 if (propIt != properties.end())
265 {
266 const bool* fullLoad = std::get_if<bool>(&(propIt->second));
267 if (fullLoad != nullptr)
268 {
269 sys.powerConfigFullLoad = *fullLoad;
270 }
271 }
272
Adriana Kobylakd3a70d92021-06-04 16:24:45 +0000273 supportedConfigs.emplace(*model, sys);
Adriana Kobylake1074d82021-03-16 20:46:44 +0000274 }
Patrick Williamsc1d4de52021-10-06 12:45:57 -0500275 catch (const std::exception& e)
Adriana Kobylak0c9a33d2021-09-13 18:05:09 +0000276 {}
Adriana Kobylake1074d82021-03-16 20:46:44 +0000277}
278
Adriana Kobylak9bab9e12021-02-24 15:32:03 -0600279void PSUManager::getSystemProperties()
280{
Adriana Kobylak9bab9e12021-02-24 15:32:03 -0600281
Adriana Kobylak9bab9e12021-02-24 15:32:03 -0600282 try
283 {
284 util::DbusSubtree subtree =
285 util::getSubTree(bus, INVENTORY_OBJ_PATH, supportedConfIntf, 0);
Adriana Kobylake1074d82021-03-16 20:46:44 +0000286 if (subtree.empty())
Adriana Kobylak9bab9e12021-02-24 15:32:03 -0600287 {
288 throw std::runtime_error("Supported Configuration Not Found");
289 }
Adriana Kobylak9bab9e12021-02-24 15:32:03 -0600290
Adriana Kobylake1074d82021-03-16 20:46:44 +0000291 for (const auto& [objPath, services] : subtree)
292 {
293 std::string service = services.begin()->first;
294 if (objPath.empty() || service.empty())
295 {
296 continue;
Adriana Kobylak9bab9e12021-02-24 15:32:03 -0600297 }
Adriana Kobylake1074d82021-03-16 20:46:44 +0000298 auto properties = util::getAllProperties(
299 bus, objPath, supportedConfIntf, service);
300 populateSysProperties(properties);
Adriana Kobylak9bab9e12021-02-24 15:32:03 -0600301 }
302 }
Patrick Williamsc1d4de52021-10-06 12:45:57 -0500303 catch (const std::exception& e)
Adriana Kobylak9bab9e12021-02-24 15:32:03 -0600304 {
305 // Interface or property not found. Let the Interfaces Added callback
306 // process the information once the interfaces are added to D-Bus.
307 }
308}
309
Brandon Wyman3e429132021-03-18 18:03:14 -0500310void PSUManager::entityManagerIfaceAdded(sdbusplus::message::message& msg)
Adriana Kobylak9bab9e12021-02-24 15:32:03 -0600311{
312 try
313 {
314 sdbusplus::message::object_path objPath;
Adriana Kobylake1074d82021-03-16 20:46:44 +0000315 std::map<std::string, std::map<std::string, util::DbusVariant>>
Adriana Kobylak9bab9e12021-02-24 15:32:03 -0600316 interfaces;
317 msg.read(objPath, interfaces);
318
319 auto itIntf = interfaces.find(supportedConfIntf);
Brandon Wyman510acaa2020-11-05 18:32:04 -0600320 if (itIntf != interfaces.cend())
Adriana Kobylak9bab9e12021-02-24 15:32:03 -0600321 {
Brandon Wyman510acaa2020-11-05 18:32:04 -0600322 populateSysProperties(itIntf->second);
Adriana Kobylak9bab9e12021-02-24 15:32:03 -0600323 }
324
Brandon Wyman510acaa2020-11-05 18:32:04 -0600325 itIntf = interfaces.find(IBMCFFPSInterface);
326 if (itIntf != interfaces.cend())
327 {
328 log<level::INFO>(
329 fmt::format("InterfacesAdded for: {}", IBMCFFPSInterface)
330 .c_str());
331 getPSUProperties(itIntf->second);
332 }
Adriana Kobylak8f16fb52021-03-31 15:50:15 +0000333
334 // Call to validate the psu configuration if the power is on and both
335 // the IBMCFFPSConnector and SupportedConfiguration interfaces have been
336 // processed
337 if (powerOn && !psus.empty() && !supportedConfigs.empty())
338 {
Adriana Kobylaka4d38fa2021-10-05 19:57:47 +0000339 validationTimer->restartOnce(validationTimeout);
Adriana Kobylak8f16fb52021-03-31 15:50:15 +0000340 }
Adriana Kobylak9bab9e12021-02-24 15:32:03 -0600341 }
Patrick Williamsc1d4de52021-10-06 12:45:57 -0500342 catch (const std::exception& e)
Adriana Kobylak9bab9e12021-02-24 15:32:03 -0600343 {
344 // Ignore, the property may be of a different type than expected.
345 }
346}
347
Brandon Wymana0f33ce2019-10-17 18:32:29 -0500348void PSUManager::powerStateChanged(sdbusplus::message::message& msg)
349{
350 int32_t state = 0;
351 std::string msgSensor;
Patrick Williamsabe49412020-05-13 17:59:47 -0500352 std::map<std::string, std::variant<int32_t>> msgData;
Brandon Wymana0f33ce2019-10-17 18:32:29 -0500353 msg.read(msgSensor, msgData);
354
355 // Check if it was the Present property that changed.
356 auto valPropMap = msgData.find("state");
357 if (valPropMap != msgData.end())
358 {
359 state = std::get<int32_t>(valPropMap->second);
360
361 // Power is on when state=1. Clear faults.
362 if (state)
363 {
364 powerOn = true;
Adriana Kobylaka4d38fa2021-10-05 19:57:47 +0000365 validationTimer->restartOnce(validationTimeout);
Brandon Wymana0f33ce2019-10-17 18:32:29 -0500366 clearFaults();
Brandon Wyman49b8ec42022-04-20 21:18:33 +0000367 syncHistory();
Adriana Kobylakc0a07582021-10-13 15:52:25 +0000368 setPowerConfigGPIO();
Brandon Wymana0f33ce2019-10-17 18:32:29 -0500369 }
370 else
371 {
372 powerOn = false;
Adriana Kobylak8f16fb52021-03-31 15:50:15 +0000373 runValidateConfig = true;
Brandon Wymana0f33ce2019-10-17 18:32:29 -0500374 }
375 }
376}
377
Adriana Kobylak9ba38232021-11-16 20:27:45 +0000378void PSUManager::presenceChanged(sdbusplus::message::message& msg)
379{
380 std::string msgSensor;
381 std::map<std::string, std::variant<uint32_t, bool>> msgData;
382 msg.read(msgSensor, msgData);
383
384 // Check if it was the Present property that changed.
385 auto valPropMap = msgData.find(PRESENT_PROP);
386 if (valPropMap != msgData.end())
387 {
388 if (std::get<bool>(valPropMap->second))
389 {
390 // A PSU became present, force the PSU validation to run.
391 runValidateConfig = true;
392 validationTimer->restartOnce(validationTimeout);
393 }
394 }
395}
396
Brandon Wyman10fc6e82022-02-08 20:51:22 +0000397void PSUManager::setPowerSupplyError(const std::string& psuErrorString)
398{
399 using namespace sdbusplus::xyz::openbmc_project;
400 constexpr auto service = "org.openbmc.control.Power";
401 constexpr auto objPath = "/org/openbmc/control/power0";
402 constexpr auto interface = "org.openbmc.control.Power";
403 constexpr auto method = "setPowerSupplyError";
404
405 try
406 {
407 // Call D-Bus method to inform pseq of PSU error
408 auto methodMsg =
409 bus.new_method_call(service, objPath, interface, method);
410 methodMsg.append(psuErrorString);
411 auto callReply = bus.call(methodMsg);
412 }
413 catch (const std::exception& e)
414 {
415 log<level::INFO>(
416 fmt::format("Failed calling setPowerSupplyError due to error {}",
417 e.what())
418 .c_str());
419 }
420}
421
Brandon Wyman8b662882021-10-08 17:31:51 +0000422void PSUManager::createError(const std::string& faultName,
423 std::map<std::string, std::string>& additionalData)
Brandon Wymanb76ab242020-09-16 18:06:06 -0500424{
425 using namespace sdbusplus::xyz::openbmc_project;
426 constexpr auto loggingObjectPath = "/xyz/openbmc_project/logging";
427 constexpr auto loggingCreateInterface =
428 "xyz.openbmc_project.Logging.Create";
429
430 try
431 {
Brandon Wyman8b662882021-10-08 17:31:51 +0000432 additionalData["_PID"] = std::to_string(getpid());
433
Brandon Wymanb76ab242020-09-16 18:06:06 -0500434 auto service =
435 util::getService(loggingObjectPath, loggingCreateInterface, bus);
436
437 if (service.empty())
438 {
439 log<level::ERR>("Unable to get logging manager service");
440 return;
441 }
442
443 auto method = bus.new_method_call(service.c_str(), loggingObjectPath,
444 loggingCreateInterface, "Create");
445
446 auto level = Logging::server::Entry::Level::Error;
447 method.append(faultName, level, additionalData);
448
449 auto reply = bus.call(method);
Brandon Wyman10fc6e82022-02-08 20:51:22 +0000450 setPowerSupplyError(faultName);
Brandon Wymanb76ab242020-09-16 18:06:06 -0500451 }
Patrick Williamsc1d4de52021-10-06 12:45:57 -0500452 catch (const std::exception& e)
Brandon Wymanb76ab242020-09-16 18:06:06 -0500453 {
454 log<level::ERR>(
455 fmt::format(
456 "Failed creating event log for fault {} due to error {}",
457 faultName, e.what())
458 .c_str());
459 }
460}
461
Brandon Wyman18a24d92022-04-19 22:48:34 +0000462void PSUManager::syncHistory()
463{
464 log<level::INFO>("Synchronize INPUT_HISTORY");
465
466 if (!syncHistoryGPIO)
467 {
468 syncHistoryGPIO = createGPIO(INPUT_HISTORY_SYNC_GPIO);
469 }
470 if (syncHistoryGPIO)
471 {
472 const std::chrono::milliseconds delay{INPUT_HISTORY_SYNC_DELAY};
473 syncHistoryGPIO->toggleLowHigh(delay);
474 for (auto& psu : psus)
475 {
476 psu->clearSyncHistoryRequired();
477 }
478 }
479
480 log<level::INFO>("Synchronize INPUT_HISTORY completed");
481}
482
Brandon Wyman63ea78b2020-09-24 16:49:09 -0500483void PSUManager::analyze()
484{
Brandon Wyman18a24d92022-04-19 22:48:34 +0000485 auto syncHistoryRequired =
486 std::any_of(psus.begin(), psus.end(), [](const auto& psu) {
487 return psu->isSyncHistoryRequired();
488 });
489 if (syncHistoryRequired)
490 {
491 syncHistory();
492 }
493
Brandon Wyman63ea78b2020-09-24 16:49:09 -0500494 for (auto& psu : psus)
495 {
496 psu->analyze();
497 }
498
Adriana Kobylake5b1e082022-03-02 15:37:32 +0000499 std::map<std::string, std::string> additionalData;
500
501 auto notPresentCount = decltype(psus.size())(
502 std::count_if(psus.begin(), psus.end(),
503 [](const auto& psu) { return !psu->isPresent(); }));
504
505 auto hasVINUVFaultCount = decltype(psus.size())(
506 std::count_if(psus.begin(), psus.end(),
507 [](const auto& psu) { return psu->hasVINUVFault(); }));
508
509 // The PSU D-Bus objects may not be available yet, so ignore if all
510 // PSUs are not present or the number of PSUs is still 0.
511 if ((psus.size() == (notPresentCount + hasVINUVFaultCount)) &&
512 (psus.size() != notPresentCount) && (psus.size() != 0))
513 {
514 // Brownout: All PSUs report an AC failure: At least one PSU reports
515 // AC loss VIN fault and the rest either report AC loss VIN fault as
516 // well or are not present.
517 additionalData["NOT_PRESENT_COUNT"] = std::to_string(notPresentCount);
518 additionalData["VIN_FAULT_COUNT"] = std::to_string(hasVINUVFaultCount);
519 setBrownout(additionalData);
520 }
521 else
522 {
523 // Brownout condition is not present or has been cleared
524 clearBrownout();
525 }
526
Brandon Wyman3180f4d2020-12-08 17:53:46 -0600527 if (powerOn)
Brandon Wyman63ea78b2020-09-24 16:49:09 -0500528 {
Brandon Wyman3180f4d2020-12-08 17:53:46 -0600529 for (auto& psu : psus)
Brandon Wyman63ea78b2020-09-24 16:49:09 -0500530 {
Brandon Wymanec0b8dc2021-10-08 21:49:43 +0000531 additionalData.clear();
Brandon Wyman39ea02b2021-11-23 23:22:23 +0000532
Brandon Wyman3180f4d2020-12-08 17:53:46 -0600533 if (!psu->isFaultLogged() && !psu->isPresent())
534 {
Brandon Wymanda369c72021-10-08 18:43:30 +0000535 std::map<std::string, std::string> requiredPSUsData;
536 auto requiredPSUsPresent = hasRequiredPSUs(requiredPSUsData);
Adriana Kobylakf2ba1462021-06-24 15:16:17 +0000537 if (!requiredPSUsPresent)
538 {
Brandon Wymanda369c72021-10-08 18:43:30 +0000539 additionalData.merge(requiredPSUsData);
Adriana Kobylakf2ba1462021-06-24 15:16:17 +0000540 // Create error for power supply missing.
541 additionalData["CALLOUT_INVENTORY_PATH"] =
542 psu->getInventoryPath();
543 additionalData["CALLOUT_PRIORITY"] = "H";
544 createError(
545 "xyz.openbmc_project.Power.PowerSupply.Error.Missing",
546 additionalData);
547 }
Brandon Wyman3180f4d2020-12-08 17:53:46 -0600548 psu->setFaultLogged();
549 }
550 else if (!psu->isFaultLogged() && psu->isFaulted())
551 {
Brandon Wyman786b6f42021-10-12 20:21:41 +0000552 // Add STATUS_WORD and STATUS_MFR last response, in padded
553 // hexadecimal format.
Brandon Wyman3180f4d2020-12-08 17:53:46 -0600554 additionalData["STATUS_WORD"] =
Brandon Wyman786b6f42021-10-12 20:21:41 +0000555 fmt::format("{:#04x}", psu->getStatusWord());
Jay Meyer10d94052020-11-30 14:41:21 -0600556 additionalData["STATUS_MFR"] =
Brandon Wyman786b6f42021-10-12 20:21:41 +0000557 fmt::format("{:#02x}", psu->getMFRFault());
Brandon Wyman3180f4d2020-12-08 17:53:46 -0600558 // If there are faults being reported, they possibly could be
559 // related to a bug in the firmware version running on the power
560 // supply. Capture that data into the error as well.
561 additionalData["FW_VERSION"] = psu->getFWVersion();
562
Brandon Wymanb85b9dd2021-10-19 21:25:17 +0000563 if (psu->hasCommFault())
564 {
Brandon Wyman85c7bf42021-10-19 22:28:48 +0000565 additionalData["STATUS_CML"] =
566 fmt::format("{:#02x}", psu->getStatusCML());
Brandon Wymanb85b9dd2021-10-19 21:25:17 +0000567 /* Attempts to communicate with the power supply have
568 * reached there limit. Create an error. */
569 additionalData["CALLOUT_DEVICE_PATH"] =
570 psu->getDevicePath();
571
572 createError(
573 "xyz.openbmc_project.Power.PowerSupply.Error.CommFault",
574 additionalData);
575
576 psu->setFaultLogged();
577 }
578 else if ((psu->hasInputFault() || psu->hasVINUVFault()))
Brandon Wyman3180f4d2020-12-08 17:53:46 -0600579 {
Brandon Wymanf07bc792021-10-12 19:00:35 +0000580 // Include STATUS_INPUT for input faults.
581 additionalData["STATUS_INPUT"] =
582 fmt::format("{:#02x}", psu->getStatusInput());
583
Brandon Wyman3180f4d2020-12-08 17:53:46 -0600584 /* The power supply location might be needed if the input
585 * fault is due to a problem with the power supply itself.
586 * Include the inventory path with a call out priority of
587 * low.
588 */
589 additionalData["CALLOUT_INVENTORY_PATH"] =
590 psu->getInventoryPath();
591 additionalData["CALLOUT_PRIORITY"] = "L";
592 createError("xyz.openbmc_project.Power.PowerSupply.Error."
593 "InputFault",
594 additionalData);
595 psu->setFaultLogged();
596 }
Brandon Wyman39ea02b2021-11-23 23:22:23 +0000597 else if (psu->hasPSKillFault())
598 {
599 createError(
600 "xyz.openbmc_project.Power.PowerSupply.Error.PSKillFault",
601 additionalData);
602 psu->setFaultLogged();
603 }
Brandon Wyman6710ba22021-10-27 17:39:31 +0000604 else if (psu->hasVoutOVFault())
605 {
606 // Include STATUS_VOUT for Vout faults.
607 additionalData["STATUS_VOUT"] =
608 fmt::format("{:#02x}", psu->getStatusVout());
609
610 additionalData["CALLOUT_INVENTORY_PATH"] =
611 psu->getInventoryPath();
612
613 createError(
614 "xyz.openbmc_project.Power.PowerSupply.Error.Fault",
615 additionalData);
616
617 psu->setFaultLogged();
618 }
Brandon Wymanb10b3be2021-11-09 22:12:15 +0000619 else if (psu->hasIoutOCFault())
620 {
621 // Include STATUS_IOUT for Iout faults.
622 additionalData["STATUS_IOUT"] =
623 fmt::format("{:#02x}", psu->getStatusIout());
624
625 createError(
626 "xyz.openbmc_project.Power.PowerSupply.Error.IoutOCFault",
627 additionalData);
628
629 psu->setFaultLogged();
630 }
Brandon Wyman39ea02b2021-11-23 23:22:23 +0000631 else if (psu->hasVoutUVFault() || psu->hasPS12VcsFault() ||
632 psu->hasPSCS12VFault())
Brandon Wyman2cf46942021-10-28 19:09:16 +0000633 {
634 // Include STATUS_VOUT for Vout faults.
635 additionalData["STATUS_VOUT"] =
636 fmt::format("{:#02x}", psu->getStatusVout());
637
638 additionalData["CALLOUT_INVENTORY_PATH"] =
639 psu->getInventoryPath();
640
641 createError(
642 "xyz.openbmc_project.Power.PowerSupply.Error.Fault",
643 additionalData);
644
645 psu->setFaultLogged();
646 }
Brandon Wyman7ee4d7e2021-11-19 20:48:23 +0000647 // A fan fault should have priority over a temperature fault,
648 // since a failed fan may lead to a temperature problem.
649 else if (psu->hasFanFault())
650 {
651 // Include STATUS_TEMPERATURE and STATUS_FANS_1_2
652 additionalData["STATUS_TEMPERATURE"] =
653 fmt::format("{:#02x}", psu->getStatusTemperature());
654 additionalData["STATUS_FANS_1_2"] =
655 fmt::format("{:#02x}", psu->getStatusFans12());
656
657 additionalData["CALLOUT_INVENTORY_PATH"] =
658 psu->getInventoryPath();
659
660 createError(
661 "xyz.openbmc_project.Power.PowerSupply.Error.FanFault",
662 additionalData);
663
664 psu->setFaultLogged();
665 }
Brandon Wyman96893a42021-11-05 19:56:57 +0000666 else if (psu->hasTempFault())
667 {
668 // Include STATUS_TEMPERATURE for temperature faults.
669 additionalData["STATUS_TEMPERATURE"] =
670 fmt::format("{:#02x}", psu->getStatusTemperature());
671
672 additionalData["CALLOUT_INVENTORY_PATH"] =
673 psu->getInventoryPath();
674
675 createError(
676 "xyz.openbmc_project.Power.PowerSupply.Error.Fault",
677 additionalData);
678
679 psu->setFaultLogged();
680 }
Brandon Wyman3180f4d2020-12-08 17:53:46 -0600681 else if (psu->hasMFRFault())
682 {
683 /* This can represent a variety of faults that result in
684 * calling out the power supply for replacement: Output
685 * OverCurrent, Output Under Voltage, and potentially other
686 * faults.
687 *
688 * Also plan on putting specific fault in AdditionalData,
689 * along with register names and register values
690 * (STATUS_WORD, STATUS_MFR, etc.).*/
691
692 additionalData["CALLOUT_INVENTORY_PATH"] =
693 psu->getInventoryPath();
694
695 createError(
696 "xyz.openbmc_project.Power.PowerSupply.Error.Fault",
Brandon Wyman52e54e82020-10-08 14:44:58 -0500697 additionalData);
Brandon Wyman63ea78b2020-09-24 16:49:09 -0500698
Brandon Wyman3180f4d2020-12-08 17:53:46 -0600699 psu->setFaultLogged();
700 }
Brandon Wyman2916ea52021-11-06 03:31:18 +0000701 else if (psu->hasPgoodFault())
702 {
703 /* POWER_GOOD# is not low, or OFF is on */
704 additionalData["CALLOUT_INVENTORY_PATH"] =
705 psu->getInventoryPath();
706
707 createError(
708 "xyz.openbmc_project.Power.PowerSupply.Error.Fault",
709 additionalData);
710
711 psu->setFaultLogged();
712 }
Brandon Wyman4176d6b2020-10-07 17:41:06 -0500713 }
Brandon Wyman63ea78b2020-09-24 16:49:09 -0500714 }
715 }
716}
717
Adriana Kobylak8f16fb52021-03-31 15:50:15 +0000718void PSUManager::validateConfig()
719{
Adriana Kobylakb23e4432022-04-01 14:22:47 +0000720 if (!runValidateConfig || supportedConfigs.empty() || psus.empty())
Adriana Kobylak8f16fb52021-03-31 15:50:15 +0000721 {
722 return;
723 }
724
Adriana Kobylak4d9aaf92021-06-30 15:27:42 +0000725 std::map<std::string, std::string> additionalData;
726 auto supported = hasRequiredPSUs(additionalData);
727 if (supported)
728 {
729 runValidateConfig = false;
730 return;
731 }
732
733 // Validation failed, create an error log.
734 // Return without setting the runValidateConfig flag to false because
735 // it may be that an additional supported configuration interface is
736 // added and we need to validate it to see if it matches this system.
737 createError("xyz.openbmc_project.Power.PowerSupply.Error.NotSupported",
738 additionalData);
739}
740
741bool PSUManager::hasRequiredPSUs(
742 std::map<std::string, std::string>& additionalData)
743{
Adriana Kobylak8f16fb52021-03-31 15:50:15 +0000744 std::string model{};
Adriana Kobylak523704d2021-09-21 15:55:41 +0000745 if (!validateModelName(model, additionalData))
Adriana Kobylak8f16fb52021-03-31 15:50:15 +0000746 {
Adriana Kobylak523704d2021-09-21 15:55:41 +0000747 return false;
Adriana Kobylak8f16fb52021-03-31 15:50:15 +0000748 }
Adriana Kobylak70e7f932021-06-10 18:53:56 +0000749
Adriana Kobylak4d9aaf92021-06-30 15:27:42 +0000750 auto presentCount =
751 std::count_if(psus.begin(), psus.end(),
752 [](const auto& psu) { return psu->isPresent(); });
753
Adriana Kobylak70e7f932021-06-10 18:53:56 +0000754 // Validate the supported configurations. A system may support more than one
Adriana Kobylak4175ffb2021-08-02 14:51:05 +0000755 // power supply model configuration. Since all configurations need to be
756 // checked, the additional data would contain only the information of the
757 // last configuration that did not match.
758 std::map<std::string, std::string> tmpAdditionalData;
Adriana Kobylak70e7f932021-06-10 18:53:56 +0000759 for (const auto& config : supportedConfigs)
760 {
Adriana Kobylak4d9aaf92021-06-30 15:27:42 +0000761 if (config.first != model)
Adriana Kobylak70e7f932021-06-10 18:53:56 +0000762 {
763 continue;
764 }
765 if (presentCount != config.second.powerSupplyCount)
766 {
Adriana Kobylak4175ffb2021-08-02 14:51:05 +0000767 tmpAdditionalData.clear();
768 tmpAdditionalData["EXPECTED_COUNT"] =
Adriana Kobylak70e7f932021-06-10 18:53:56 +0000769 std::to_string(config.second.powerSupplyCount);
Adriana Kobylak4175ffb2021-08-02 14:51:05 +0000770 tmpAdditionalData["ACTUAL_COUNT"] = std::to_string(presentCount);
Adriana Kobylak70e7f932021-06-10 18:53:56 +0000771 continue;
772 }
Adriana Kobylak4175ffb2021-08-02 14:51:05 +0000773
774 bool voltageValidated = true;
775 for (const auto& psu : psus)
776 {
777 if (!psu->isPresent())
778 {
779 // Only present PSUs report a valid input voltage
780 continue;
781 }
782
783 double actualInputVoltage;
784 int inputVoltage;
785 psu->getInputVoltage(actualInputVoltage, inputVoltage);
786
787 if (std::find(config.second.inputVoltage.begin(),
788 config.second.inputVoltage.end(),
789 inputVoltage) == config.second.inputVoltage.end())
790 {
791 tmpAdditionalData.clear();
792 tmpAdditionalData["ACTUAL_VOLTAGE"] =
793 std::to_string(actualInputVoltage);
794 for (const auto& voltage : config.second.inputVoltage)
795 {
796 tmpAdditionalData["EXPECTED_VOLTAGE"] +=
797 std::to_string(voltage) + " ";
798 }
799 tmpAdditionalData["CALLOUT_INVENTORY_PATH"] =
800 psu->getInventoryPath();
801
802 voltageValidated = false;
803 break;
804 }
805 }
806 if (!voltageValidated)
807 {
808 continue;
809 }
810
Adriana Kobylak4d9aaf92021-06-30 15:27:42 +0000811 return true;
Adriana Kobylak70e7f932021-06-10 18:53:56 +0000812 }
Adriana Kobylak70e7f932021-06-10 18:53:56 +0000813
Adriana Kobylak4175ffb2021-08-02 14:51:05 +0000814 additionalData.insert(tmpAdditionalData.begin(), tmpAdditionalData.end());
Adriana Kobylak4d9aaf92021-06-30 15:27:42 +0000815 return false;
Adriana Kobylak8f16fb52021-03-31 15:50:15 +0000816}
817
Adriana Kobylak523704d2021-09-21 15:55:41 +0000818bool PSUManager::validateModelName(
819 std::string& model, std::map<std::string, std::string>& additionalData)
820{
821 // Check that all PSUs have the same model name. Initialize the model
822 // variable with the first PSU name found, then use it as a base to compare
Adriana Kobylakb70eae92022-01-20 22:09:56 +0000823 // against the rest of the PSUs and get its inventory path to use as callout
824 // if needed.
Adriana Kobylak523704d2021-09-21 15:55:41 +0000825 model.clear();
Adriana Kobylakb70eae92022-01-20 22:09:56 +0000826 std::string modelInventoryPath{};
Adriana Kobylak523704d2021-09-21 15:55:41 +0000827 for (const auto& psu : psus)
828 {
829 auto psuModel = psu->getModelName();
830 if (psuModel.empty())
831 {
832 continue;
833 }
834 if (model.empty())
835 {
836 model = psuModel;
Adriana Kobylakb70eae92022-01-20 22:09:56 +0000837 modelInventoryPath = psu->getInventoryPath();
Adriana Kobylak523704d2021-09-21 15:55:41 +0000838 continue;
839 }
840 if (psuModel != model)
841 {
Adriana Kobylakb70eae92022-01-20 22:09:56 +0000842 if (supportedConfigs.find(model) != supportedConfigs.end())
843 {
844 // The base model is supported, callout the mismatched PSU. The
845 // mismatched PSU may or may not be supported.
846 additionalData["EXPECTED_MODEL"] = model;
847 additionalData["ACTUAL_MODEL"] = psuModel;
848 additionalData["CALLOUT_INVENTORY_PATH"] =
849 psu->getInventoryPath();
850 }
851 else if (supportedConfigs.find(psuModel) != supportedConfigs.end())
852 {
853 // The base model is not supported, but the mismatched PSU is,
854 // callout the base PSU.
855 additionalData["EXPECTED_MODEL"] = psuModel;
856 additionalData["ACTUAL_MODEL"] = model;
857 additionalData["CALLOUT_INVENTORY_PATH"] = modelInventoryPath;
858 }
859 else
860 {
861 // The base model and the mismatched PSU are not supported or
862 // could not be found in the supported configuration, callout
863 // the mismatched PSU.
864 additionalData["EXPECTED_MODEL"] = model;
865 additionalData["ACTUAL_MODEL"] = psuModel;
866 additionalData["CALLOUT_INVENTORY_PATH"] =
867 psu->getInventoryPath();
868 }
Adriana Kobylak523704d2021-09-21 15:55:41 +0000869 model.clear();
870 return false;
871 }
872 }
873 return true;
874}
875
Adriana Kobylakc0a07582021-10-13 15:52:25 +0000876void PSUManager::setPowerConfigGPIO()
877{
878 if (!powerConfigGPIO)
879 {
880 return;
881 }
882
883 std::string model{};
884 std::map<std::string, std::string> additionalData;
885 if (!validateModelName(model, additionalData))
886 {
887 return;
888 }
889
890 auto config = supportedConfigs.find(model);
891 if (config != supportedConfigs.end())
892 {
893 // The power-config-full-load is an open drain GPIO. Set it to low (0)
894 // if the supported configuration indicates that this system model
895 // expects the maximum number of power supplies (full load set to true).
896 // Else, set it to high (1), this is the default.
897 auto powerConfigValue =
898 (config->second.powerConfigFullLoad == true ? 0 : 1);
899 auto flags = gpiod::line_request::FLAG_OPEN_DRAIN;
900 powerConfigGPIO->write(powerConfigValue, flags);
901 }
902}
903
Adriana Kobylake5b1e082022-03-02 15:37:32 +0000904void PSUManager::setBrownout(std::map<std::string, std::string>& additionalData)
905{
906 powerSystemInputs.status(sdbusplus::xyz::openbmc_project::State::Decorator::
907 server::PowerSystemInputs::Status::Fault);
908 if (!brownoutLogged)
909 {
910 if (powerOn)
911 {
912 createError(
913 "xyz.openbmc_project.State.Shutdown.Power.Error.Blackout",
914 additionalData);
915 brownoutLogged = true;
916 }
917 }
918}
919
920void PSUManager::clearBrownout()
921{
922 powerSystemInputs.status(sdbusplus::xyz::openbmc_project::State::Decorator::
923 server::PowerSystemInputs::Status::Good);
924 brownoutLogged = false;
925}
926
Brandon Wyman63ea78b2020-09-24 16:49:09 -0500927} // namespace phosphor::power::manager