blob: 7389e3a9755c9c6666a467247888b51e929c9635 [file] [log] [blame]
Brandon Wyman1d7a7df2020-03-26 10:14:05 -05001#include "config.h"
2
Brandon Wymanaed1f752019-11-25 18:10:52 -06003#include "power_supply.hpp"
4
5#include "types.hpp"
Brandon Wyman3f1242f2020-01-28 13:11:25 -06006#include "util.hpp"
Brandon Wymanaed1f752019-11-25 18:10:52 -06007
Brandon Wymandf13c3a2020-12-15 14:25:22 -06008#include <fmt/format.h>
9
Brandon Wyman3f1242f2020-01-28 13:11:25 -060010#include <xyz/openbmc_project/Common/Device/error.hpp>
11
Patrick Williams48781ae2023-05-10 07:50:50 -050012#include <chrono> // sleep_for()
Brandon Wyman4fc191f2022-03-10 23:07:13 +000013#include <cmath>
Brandon Wyman1d7a7df2020-03-26 10:14:05 -050014#include <cstdint> // uint8_t...
B. J. Wyman681b2a32021-04-20 22:31:22 +000015#include <fstream>
Brandon Wyman056935c2022-06-24 23:05:09 +000016#include <regex>
B. J. Wyman681b2a32021-04-20 22:31:22 +000017#include <thread> // sleep_for()
Brandon Wyman1d7a7df2020-03-26 10:14:05 -050018
Brandon Wyman3f1242f2020-01-28 13:11:25 -060019namespace phosphor::power::psu
Brandon Wymanaed1f752019-11-25 18:10:52 -060020{
B. J. Wyman681b2a32021-04-20 22:31:22 +000021// Amount of time in milliseconds to delay between power supply going from
22// missing to present before running the bind command(s).
23constexpr auto bindDelay = 1000;
Brandon Wymanaed1f752019-11-25 18:10:52 -060024
Brandon Wymanc3324422022-03-24 20:30:57 +000025// The number of INPUT_HISTORY records to keep on D-Bus.
26// Each record covers a 30-second span. That means two records are needed to
27// cover a minute of time. If we want one (1) hour of data, that would be 120
28// records.
29constexpr auto INPUT_HISTORY_MAX_RECORDS = 120;
30
Brandon Wymanaed1f752019-11-25 18:10:52 -060031using namespace phosphor::logging;
Brandon Wyman3f1242f2020-01-28 13:11:25 -060032using namespace sdbusplus::xyz::openbmc_project::Common::Device::Error;
Brandon Wymanaed1f752019-11-25 18:10:52 -060033
Patrick Williams7354ce62022-07-22 19:26:56 -050034PowerSupply::PowerSupply(sdbusplus::bus_t& bus, const std::string& invpath,
B. J. Wyman681b2a32021-04-20 22:31:22 +000035 std::uint8_t i2cbus, std::uint16_t i2caddr,
Brandon Wymanc3324422022-03-24 20:30:57 +000036 const std::string& driver,
George Liu9464c422023-02-27 14:30:27 +080037 const std::string& gpioLineName,
38 std::function<bool()>&& callback) :
Brandon Wyman510acaa2020-11-05 18:32:04 -060039 bus(bus),
George Liu9464c422023-02-27 14:30:27 +080040 inventoryPath(invpath), bindPath("/sys/bus/i2c/drivers/" + driver),
Faisal Awadab66ae502023-04-01 18:30:32 -050041 isPowerOn(std::move(callback)), driverName(driver)
Brandon Wyman510acaa2020-11-05 18:32:04 -060042{
43 if (inventoryPath.empty())
44 {
45 throw std::invalid_argument{"Invalid empty inventoryPath"};
46 }
47
B. J. Wyman681b2a32021-04-20 22:31:22 +000048 if (gpioLineName.empty())
49 {
50 throw std::invalid_argument{"Invalid empty gpioLineName"};
51 }
Brandon Wyman510acaa2020-11-05 18:32:04 -060052
Brandon Wyman321a6152022-03-19 00:11:44 +000053 shortName = findShortName(inventoryPath);
54
55 log<level::DEBUG>(
56 fmt::format("{} gpioLineName: {}", shortName, gpioLineName).c_str());
B. J. Wyman681b2a32021-04-20 22:31:22 +000057 presenceGPIO = createGPIO(gpioLineName);
Brandon Wyman510acaa2020-11-05 18:32:04 -060058
59 std::ostringstream ss;
60 ss << std::hex << std::setw(4) << std::setfill('0') << i2caddr;
61 std::string addrStr = ss.str();
B. J. Wyman681b2a32021-04-20 22:31:22 +000062 std::string busStr = std::to_string(i2cbus);
63 bindDevice = busStr;
64 bindDevice.append("-");
65 bindDevice.append(addrStr);
66
Brandon Wyman510acaa2020-11-05 18:32:04 -060067 pmbusIntf = phosphor::pmbus::createPMBus(i2cbus, addrStr);
68
69 // Get the current state of the Present property.
B. J. Wyman681b2a32021-04-20 22:31:22 +000070 try
71 {
72 updatePresenceGPIO();
73 }
74 catch (...)
75 {
76 // If the above attempt to use the GPIO failed, it likely means that the
77 // GPIOs are in use by the kernel, meaning it is using gpio-keys.
78 // So, I should rely on phosphor-gpio-presence to update D-Bus, and
79 // work that way for power supply presence.
80 presenceGPIO = nullptr;
81 // Setup the functions to call when the D-Bus inventory path for the
82 // Present property changes.
83 presentMatch = std::make_unique<sdbusplus::bus::match_t>(
84 bus,
85 sdbusplus::bus::match::rules::propertiesChanged(inventoryPath,
86 INVENTORY_IFACE),
87 [this](auto& msg) { this->inventoryChanged(msg); });
88
89 presentAddedMatch = std::make_unique<sdbusplus::bus::match_t>(
90 bus,
91 sdbusplus::bus::match::rules::interfacesAdded() +
92 sdbusplus::bus::match::rules::argNpath(0, inventoryPath),
93 [this](auto& msg) { this->inventoryAdded(msg); });
94
95 updatePresence();
96 updateInventory();
Brandon Wymanc3324422022-03-24 20:30:57 +000097 setupInputHistory();
B. J. Wyman681b2a32021-04-20 22:31:22 +000098 }
Matt Spinlera068f422023-03-10 13:06:49 -060099
100 setInputVoltageRating();
B. J. Wyman681b2a32021-04-20 22:31:22 +0000101}
102
103void PowerSupply::bindOrUnbindDriver(bool present)
104{
105 auto action = (present) ? "bind" : "unbind";
106 auto path = bindPath / action;
107
108 if (present)
109 {
Brandon Wymanb1ee60f2022-03-22 22:37:12 +0000110 std::this_thread::sleep_for(std::chrono::milliseconds(bindDelay));
B. J. Wyman681b2a32021-04-20 22:31:22 +0000111 log<level::INFO>(
112 fmt::format("Binding device driver. path: {} device: {}",
113 path.string(), bindDevice)
114 .c_str());
115 }
116 else
117 {
118 log<level::INFO>(
119 fmt::format("Unbinding device driver. path: {} device: {}",
120 path.string(), bindDevice)
121 .c_str());
122 }
123
124 std::ofstream file;
125
126 file.exceptions(std::ofstream::failbit | std::ofstream::badbit |
127 std::ofstream::eofbit);
128
129 try
130 {
131 file.open(path);
132 file << bindDevice;
133 file.close();
134 }
Patrick Williamsc1d4de52021-10-06 12:45:57 -0500135 catch (const std::exception& e)
B. J. Wyman681b2a32021-04-20 22:31:22 +0000136 {
137 auto err = errno;
138
139 log<level::ERR>(
140 fmt::format("Failed binding or unbinding device. errno={}", err)
141 .c_str());
142 }
Brandon Wyman510acaa2020-11-05 18:32:04 -0600143}
144
Brandon Wymanaed1f752019-11-25 18:10:52 -0600145void PowerSupply::updatePresence()
146{
147 try
148 {
Brandon Wyman3f1242f2020-01-28 13:11:25 -0600149 present = getPresence(bus, inventoryPath);
Brandon Wymanaed1f752019-11-25 18:10:52 -0600150 }
Patrick Williams7354ce62022-07-22 19:26:56 -0500151 catch (const sdbusplus::exception_t& e)
Brandon Wymanaed1f752019-11-25 18:10:52 -0600152 {
153 // Relying on property change or interface added to retry.
154 // Log an informational trace to the journal.
Brandon Wymandf13c3a2020-12-15 14:25:22 -0600155 log<level::INFO>(
156 fmt::format("D-Bus property {} access failure exception",
157 inventoryPath)
158 .c_str());
Brandon Wymanaed1f752019-11-25 18:10:52 -0600159 }
160}
161
B. J. Wyman681b2a32021-04-20 22:31:22 +0000162void PowerSupply::updatePresenceGPIO()
163{
164 bool presentOld = present;
165
166 try
167 {
168 if (presenceGPIO->read() > 0)
169 {
170 present = true;
171 }
172 else
173 {
174 present = false;
175 }
176 }
Patrick Williamsc1d4de52021-10-06 12:45:57 -0500177 catch (const std::exception& e)
B. J. Wyman681b2a32021-04-20 22:31:22 +0000178 {
179 log<level::ERR>(
180 fmt::format("presenceGPIO read fail: {}", e.what()).c_str());
181 throw;
182 }
183
184 if (presentOld != present)
185 {
Brandon Wyman321a6152022-03-19 00:11:44 +0000186 log<level::DEBUG>(fmt::format("{} presentOld: {} present: {}",
187 shortName, presentOld, present)
188 .c_str());
Matt Spinlerca1e9ea2022-02-18 14:03:08 -0600189
190 auto invpath = inventoryPath.substr(strlen(INVENTORY_OBJ_PATH));
Brandon Wyman90d529a2022-03-22 23:02:54 +0000191
192 bindOrUnbindDriver(present);
193 if (present)
194 {
195 // If the power supply was present, then missing, and present again,
196 // the hwmon path may have changed. We will need the correct/updated
197 // path before any reads or writes are attempted.
198 pmbusIntf->findHwmonDir();
199 }
200
Brandon Wyman321a6152022-03-19 00:11:44 +0000201 setPresence(bus, invpath, present, shortName);
Brandon Wymanc3324422022-03-24 20:30:57 +0000202 setupInputHistory();
Matt Spinlerca1e9ea2022-02-18 14:03:08 -0600203 updateInventory();
204
Brandon Wyman90d529a2022-03-22 23:02:54 +0000205 // Need Functional to already be correct before calling this.
Matt Spinlerca1e9ea2022-02-18 14:03:08 -0600206 checkAvailability();
207
B. J. Wyman681b2a32021-04-20 22:31:22 +0000208 if (present)
209 {
B. J. Wyman681b2a32021-04-20 22:31:22 +0000210 onOffConfig(phosphor::pmbus::ON_OFF_CONFIG_CONTROL_PIN_ONLY);
211 clearFaults();
Brandon Wyman18a24d92022-04-19 22:48:34 +0000212 // Indicate that the input history data and timestamps between all
213 // the power supplies that are present in the system need to be
214 // synchronized.
215 syncHistoryRequired = true;
B. J. Wyman681b2a32021-04-20 22:31:22 +0000216 }
B. J. Wyman681b2a32021-04-20 22:31:22 +0000217 }
218}
219
Brandon Wymanc2203432021-12-21 23:09:48 +0000220void PowerSupply::analyzeCMLFault()
221{
222 if (statusWord & phosphor::pmbus::status_word::CML_FAULT)
223 {
Brandon Wymanc2906f42021-12-21 20:14:56 +0000224 if (cmlFault < DEGLITCH_LIMIT)
Brandon Wymanc2203432021-12-21 23:09:48 +0000225 {
Brandon Wyman9e292ee2022-03-10 22:56:23 +0000226 if (statusWord != statusWordOld)
227 {
Brandon Wyman321a6152022-03-19 00:11:44 +0000228 log<level::ERR>(
229 fmt::format("{} CML fault: STATUS_WORD = {:#06x}, "
230 "STATUS_CML = {:#02x}",
231 shortName, statusWord, statusCML)
232 .c_str());
Brandon Wyman9e292ee2022-03-10 22:56:23 +0000233 }
Brandon Wymanc2906f42021-12-21 20:14:56 +0000234 cmlFault++;
235 }
236 }
237 else
238 {
239 cmlFault = 0;
Brandon Wymanc2203432021-12-21 23:09:48 +0000240 }
241}
242
Brandon Wymane3b0bb02021-12-21 23:16:48 +0000243void PowerSupply::analyzeInputFault()
244{
245 if (statusWord & phosphor::pmbus::status_word::INPUT_FAULT_WARN)
246 {
Brandon Wymanc2906f42021-12-21 20:14:56 +0000247 if (inputFault < DEGLITCH_LIMIT)
Brandon Wymane3b0bb02021-12-21 23:16:48 +0000248 {
Brandon Wyman9e292ee2022-03-10 22:56:23 +0000249 if (statusWord != statusWordOld)
250 {
251 log<level::ERR>(
Brandon Wyman321a6152022-03-19 00:11:44 +0000252 fmt::format("{} INPUT fault: STATUS_WORD = {:#06x}, "
Brandon Wyman9e292ee2022-03-10 22:56:23 +0000253 "STATUS_MFR_SPECIFIC = {:#04x}, "
254 "STATUS_INPUT = {:#04x}",
Brandon Wyman321a6152022-03-19 00:11:44 +0000255 shortName, statusWord, statusMFR, statusInput)
Brandon Wyman9e292ee2022-03-10 22:56:23 +0000256 .c_str());
257 }
Brandon Wymanc2906f42021-12-21 20:14:56 +0000258 inputFault++;
259 }
Brandon Wymane3b0bb02021-12-21 23:16:48 +0000260 }
Brandon Wyman82affd92021-11-24 19:12:49 +0000261
262 // If had INPUT/VIN_UV fault, and now off.
263 // Trace that odd behavior.
264 if (inputFault &&
265 !(statusWord & phosphor::pmbus::status_word::INPUT_FAULT_WARN))
266 {
267 log<level::INFO>(
Brandon Wyman321a6152022-03-19 00:11:44 +0000268 fmt::format("{} INPUT fault cleared: STATUS_WORD = {:#06x}, "
Brandon Wyman6f939a32022-03-10 18:42:20 +0000269 "STATUS_MFR_SPECIFIC = {:#04x}, "
270 "STATUS_INPUT = {:#04x}",
Brandon Wyman321a6152022-03-19 00:11:44 +0000271 shortName, statusWord, statusMFR, statusInput)
Brandon Wyman82affd92021-11-24 19:12:49 +0000272 .c_str());
Brandon Wymanc2906f42021-12-21 20:14:56 +0000273 inputFault = 0;
Brandon Wyman82affd92021-11-24 19:12:49 +0000274 }
Brandon Wymane3b0bb02021-12-21 23:16:48 +0000275}
276
Brandon Wymanc2c87132021-12-21 23:22:18 +0000277void PowerSupply::analyzeVoutOVFault()
278{
279 if (statusWord & phosphor::pmbus::status_word::VOUT_OV_FAULT)
280 {
Brandon Wymanc2906f42021-12-21 20:14:56 +0000281 if (voutOVFault < DEGLITCH_LIMIT)
Brandon Wymanc2c87132021-12-21 23:22:18 +0000282 {
Brandon Wyman9e292ee2022-03-10 22:56:23 +0000283 if (statusWord != statusWordOld)
284 {
285 log<level::ERR>(
Brandon Wyman321a6152022-03-19 00:11:44 +0000286 fmt::format(
287 "{} VOUT_OV_FAULT fault: STATUS_WORD = {:#06x}, "
288 "STATUS_MFR_SPECIFIC = {:#04x}, "
289 "STATUS_VOUT = {:#02x}",
290 shortName, statusWord, statusMFR, statusVout)
Brandon Wyman9e292ee2022-03-10 22:56:23 +0000291 .c_str());
292 }
Brandon Wymanc2c87132021-12-21 23:22:18 +0000293
Brandon Wymanc2906f42021-12-21 20:14:56 +0000294 voutOVFault++;
295 }
296 }
297 else
298 {
299 voutOVFault = 0;
Brandon Wymanc2c87132021-12-21 23:22:18 +0000300 }
301}
302
Brandon Wymana00e7302021-12-21 23:28:29 +0000303void PowerSupply::analyzeIoutOCFault()
304{
305 if (statusWord & phosphor::pmbus::status_word::IOUT_OC_FAULT)
306 {
Brandon Wymanc2906f42021-12-21 20:14:56 +0000307 if (ioutOCFault < DEGLITCH_LIMIT)
Brandon Wymana00e7302021-12-21 23:28:29 +0000308 {
Brandon Wyman9e292ee2022-03-10 22:56:23 +0000309 if (statusWord != statusWordOld)
310 {
311 log<level::ERR>(
Brandon Wyman321a6152022-03-19 00:11:44 +0000312 fmt::format("{} IOUT fault: STATUS_WORD = {:#06x}, "
Brandon Wyman9e292ee2022-03-10 22:56:23 +0000313 "STATUS_MFR_SPECIFIC = {:#04x}, "
314 "STATUS_IOUT = {:#04x}",
Brandon Wyman321a6152022-03-19 00:11:44 +0000315 shortName, statusWord, statusMFR, statusIout)
Brandon Wyman9e292ee2022-03-10 22:56:23 +0000316 .c_str());
317 }
Brandon Wymana00e7302021-12-21 23:28:29 +0000318
Brandon Wymanc2906f42021-12-21 20:14:56 +0000319 ioutOCFault++;
320 }
321 }
322 else
323 {
324 ioutOCFault = 0;
Brandon Wymana00e7302021-12-21 23:28:29 +0000325 }
326}
327
Brandon Wyman08378782021-12-21 23:48:15 +0000328void PowerSupply::analyzeVoutUVFault()
329{
330 if ((statusWord & phosphor::pmbus::status_word::VOUT_FAULT) &&
331 !(statusWord & phosphor::pmbus::status_word::VOUT_OV_FAULT))
332 {
Brandon Wymanc2906f42021-12-21 20:14:56 +0000333 if (voutUVFault < DEGLITCH_LIMIT)
Brandon Wyman08378782021-12-21 23:48:15 +0000334 {
Brandon Wyman9e292ee2022-03-10 22:56:23 +0000335 if (statusWord != statusWordOld)
336 {
337 log<level::ERR>(
Brandon Wyman321a6152022-03-19 00:11:44 +0000338 fmt::format(
339 "{} VOUT_UV_FAULT fault: STATUS_WORD = {:#06x}, "
340 "STATUS_MFR_SPECIFIC = {:#04x}, "
341 "STATUS_VOUT = {:#04x}",
342 shortName, statusWord, statusMFR, statusVout)
Brandon Wyman9e292ee2022-03-10 22:56:23 +0000343 .c_str());
344 }
Brandon Wymanc2906f42021-12-21 20:14:56 +0000345 voutUVFault++;
346 }
347 }
348 else
349 {
350 voutUVFault = 0;
Brandon Wyman08378782021-12-21 23:48:15 +0000351 }
352}
353
Brandon Wymand5d9a222021-12-21 23:59:05 +0000354void PowerSupply::analyzeFanFault()
355{
356 if (statusWord & phosphor::pmbus::status_word::FAN_FAULT)
357 {
Brandon Wymanc2906f42021-12-21 20:14:56 +0000358 if (fanFault < DEGLITCH_LIMIT)
Brandon Wymand5d9a222021-12-21 23:59:05 +0000359 {
Brandon Wyman9e292ee2022-03-10 22:56:23 +0000360 if (statusWord != statusWordOld)
361 {
Brandon Wyman321a6152022-03-19 00:11:44 +0000362 log<level::ERR>(fmt::format("{} FANS fault/warning: "
Brandon Wyman9e292ee2022-03-10 22:56:23 +0000363 "STATUS_WORD = {:#06x}, "
364 "STATUS_MFR_SPECIFIC = {:#04x}, "
365 "STATUS_FANS_1_2 = {:#04x}",
Brandon Wyman321a6152022-03-19 00:11:44 +0000366 shortName, statusWord, statusMFR,
367 statusFans12)
Brandon Wyman9e292ee2022-03-10 22:56:23 +0000368 .c_str());
369 }
Brandon Wymanc2906f42021-12-21 20:14:56 +0000370 fanFault++;
371 }
372 }
373 else
374 {
375 fanFault = 0;
Brandon Wymand5d9a222021-12-21 23:59:05 +0000376 }
377}
378
Brandon Wyman52cb3f22021-12-21 23:02:47 +0000379void PowerSupply::analyzeTemperatureFault()
380{
381 if (statusWord & phosphor::pmbus::status_word::TEMPERATURE_FAULT_WARN)
382 {
Brandon Wymanc2906f42021-12-21 20:14:56 +0000383 if (tempFault < DEGLITCH_LIMIT)
Brandon Wyman52cb3f22021-12-21 23:02:47 +0000384 {
Brandon Wyman9e292ee2022-03-10 22:56:23 +0000385 if (statusWord != statusWordOld)
386 {
Brandon Wyman321a6152022-03-19 00:11:44 +0000387 log<level::ERR>(fmt::format("{} TEMPERATURE fault/warning: "
Brandon Wyman9e292ee2022-03-10 22:56:23 +0000388 "STATUS_WORD = {:#06x}, "
389 "STATUS_MFR_SPECIFIC = {:#04x}, "
390 "STATUS_TEMPERATURE = {:#04x}",
Brandon Wyman321a6152022-03-19 00:11:44 +0000391 shortName, statusWord, statusMFR,
Brandon Wyman9e292ee2022-03-10 22:56:23 +0000392 statusTemperature)
393 .c_str());
394 }
Brandon Wymanc2906f42021-12-21 20:14:56 +0000395 tempFault++;
396 }
397 }
398 else
399 {
400 tempFault = 0;
Brandon Wyman52cb3f22021-12-21 23:02:47 +0000401 }
402}
403
Brandon Wyman993b5542021-12-21 22:55:16 +0000404void PowerSupply::analyzePgoodFault()
405{
406 if ((statusWord & phosphor::pmbus::status_word::POWER_GOOD_NEGATED) ||
407 (statusWord & phosphor::pmbus::status_word::UNIT_IS_OFF))
408 {
Brandon Wyman6d469fd2022-06-15 16:58:21 +0000409 if (pgoodFault < PGOOD_DEGLITCH_LIMIT)
Brandon Wyman993b5542021-12-21 22:55:16 +0000410 {
Brandon Wyman9e292ee2022-03-10 22:56:23 +0000411 if (statusWord != statusWordOld)
412 {
Brandon Wyman321a6152022-03-19 00:11:44 +0000413 log<level::ERR>(fmt::format("{} PGOOD fault: "
Brandon Wyman9e292ee2022-03-10 22:56:23 +0000414 "STATUS_WORD = {:#06x}, "
415 "STATUS_MFR_SPECIFIC = {:#04x}",
Brandon Wyman321a6152022-03-19 00:11:44 +0000416 shortName, statusWord, statusMFR)
Brandon Wyman9e292ee2022-03-10 22:56:23 +0000417 .c_str());
418 }
Brandon Wyman993b5542021-12-21 22:55:16 +0000419 pgoodFault++;
420 }
421 }
422 else
423 {
424 pgoodFault = 0;
425 }
426}
427
Brandon Wyman39ea02b2021-11-23 23:22:23 +0000428void PowerSupply::determineMFRFault()
429{
Faisal Awadab66ae502023-04-01 18:30:32 -0500430 if (bindPath.string().find(IBMCFFPS_DD_NAME) != std::string::npos)
Brandon Wyman39ea02b2021-11-23 23:22:23 +0000431 {
432 // IBM MFR_SPECIFIC[4] is PS_Kill fault
433 if (statusMFR & 0x10)
434 {
Brandon Wymanc2906f42021-12-21 20:14:56 +0000435 if (psKillFault < DEGLITCH_LIMIT)
436 {
437 psKillFault++;
438 }
439 }
440 else
441 {
442 psKillFault = 0;
Brandon Wyman39ea02b2021-11-23 23:22:23 +0000443 }
444 // IBM MFR_SPECIFIC[6] is 12Vcs fault.
445 if (statusMFR & 0x40)
446 {
Brandon Wymanc2906f42021-12-21 20:14:56 +0000447 if (ps12VcsFault < DEGLITCH_LIMIT)
448 {
449 ps12VcsFault++;
450 }
451 }
452 else
453 {
454 ps12VcsFault = 0;
Brandon Wyman39ea02b2021-11-23 23:22:23 +0000455 }
456 // IBM MFR_SPECIFIC[7] is 12V Current-Share fault.
457 if (statusMFR & 0x80)
458 {
Brandon Wymanc2906f42021-12-21 20:14:56 +0000459 if (psCS12VFault < DEGLITCH_LIMIT)
460 {
461 psCS12VFault++;
462 }
463 }
464 else
465 {
466 psCS12VFault = 0;
Brandon Wyman39ea02b2021-11-23 23:22:23 +0000467 }
468 }
469}
470
Brandon Wyman6c2ac392021-12-21 22:23:06 +0000471void PowerSupply::analyzeMFRFault()
472{
473 if (statusWord & phosphor::pmbus::status_word::MFR_SPECIFIC_FAULT)
474 {
Brandon Wymanc2906f42021-12-21 20:14:56 +0000475 if (mfrFault < DEGLITCH_LIMIT)
Brandon Wyman6c2ac392021-12-21 22:23:06 +0000476 {
Brandon Wyman9e292ee2022-03-10 22:56:23 +0000477 if (statusWord != statusWordOld)
478 {
Brandon Wyman321a6152022-03-19 00:11:44 +0000479 log<level::ERR>(fmt::format("{} MFR fault: "
Brandon Wyman9e292ee2022-03-10 22:56:23 +0000480 "STATUS_WORD = {:#06x} "
481 "STATUS_MFR_SPECIFIC = {:#04x}",
Brandon Wyman321a6152022-03-19 00:11:44 +0000482 shortName, statusWord, statusMFR)
Brandon Wyman9e292ee2022-03-10 22:56:23 +0000483 .c_str());
484 }
Brandon Wymanc2906f42021-12-21 20:14:56 +0000485 mfrFault++;
Brandon Wyman6c2ac392021-12-21 22:23:06 +0000486 }
487
Brandon Wyman6c2ac392021-12-21 22:23:06 +0000488 determineMFRFault();
489 }
Brandon Wymanc2906f42021-12-21 20:14:56 +0000490 else
491 {
492 mfrFault = 0;
493 }
Brandon Wyman6c2ac392021-12-21 22:23:06 +0000494}
495
Brandon Wymanf087f472021-12-22 00:04:27 +0000496void PowerSupply::analyzeVinUVFault()
497{
498 if (statusWord & phosphor::pmbus::status_word::VIN_UV_FAULT)
499 {
Brandon Wymanc2906f42021-12-21 20:14:56 +0000500 if (vinUVFault < DEGLITCH_LIMIT)
Brandon Wymanf087f472021-12-22 00:04:27 +0000501 {
Brandon Wyman9e292ee2022-03-10 22:56:23 +0000502 if (statusWord != statusWordOld)
503 {
504 log<level::ERR>(
Brandon Wyman321a6152022-03-19 00:11:44 +0000505 fmt::format("{} VIN_UV fault: STATUS_WORD = {:#06x}, "
Brandon Wyman9e292ee2022-03-10 22:56:23 +0000506 "STATUS_MFR_SPECIFIC = {:#04x}, "
507 "STATUS_INPUT = {:#04x}",
Brandon Wyman321a6152022-03-19 00:11:44 +0000508 shortName, statusWord, statusMFR, statusInput)
Brandon Wyman9e292ee2022-03-10 22:56:23 +0000509 .c_str());
510 }
Brandon Wymanc2906f42021-12-21 20:14:56 +0000511 vinUVFault++;
Brandon Wymanf087f472021-12-22 00:04:27 +0000512 }
Jim Wright4ab86562022-11-18 14:05:46 -0600513 // Remember that this PSU has seen an AC fault
514 acFault = AC_FAULT_LIMIT;
Brandon Wymanf087f472021-12-22 00:04:27 +0000515 }
Jim Wright7f9288c2022-12-08 11:57:04 -0600516 else
Brandon Wyman82affd92021-11-24 19:12:49 +0000517 {
Jim Wright7f9288c2022-12-08 11:57:04 -0600518 if (vinUVFault != 0)
519 {
520 log<level::INFO>(
521 fmt::format("{} VIN_UV fault cleared: STATUS_WORD = {:#06x}, "
522 "STATUS_MFR_SPECIFIC = {:#04x}, "
523 "STATUS_INPUT = {:#04x}",
524 shortName, statusWord, statusMFR, statusInput)
525 .c_str());
526 vinUVFault = 0;
527 }
Jim Wright4ab86562022-11-18 14:05:46 -0600528 // No AC fail, decrement counter
Jim Wright7f9288c2022-12-08 11:57:04 -0600529 if (acFault != 0)
Jim Wright4ab86562022-11-18 14:05:46 -0600530 {
531 --acFault;
532 }
Brandon Wyman82affd92021-11-24 19:12:49 +0000533 }
Brandon Wymanf087f472021-12-22 00:04:27 +0000534}
535
Brandon Wyman3f1242f2020-01-28 13:11:25 -0600536void PowerSupply::analyze()
537{
538 using namespace phosphor::pmbus;
539
B. J. Wyman681b2a32021-04-20 22:31:22 +0000540 if (presenceGPIO)
541 {
542 updatePresenceGPIO();
543 }
544
Brandon Wyman32453e92021-12-15 19:00:14 +0000545 if (present)
Brandon Wyman3f1242f2020-01-28 13:11:25 -0600546 {
547 try
548 {
Brandon Wyman9e292ee2022-03-10 22:56:23 +0000549 statusWordOld = statusWord;
Brandon Wyman32453e92021-12-15 19:00:14 +0000550 statusWord = pmbusIntf->read(STATUS_WORD, Type::Debug,
551 (readFail < LOG_LIMIT));
Brandon Wymanf65c4062020-08-19 13:15:53 -0500552 // Read worked, reset the fail count.
553 readFail = 0;
Brandon Wyman3f1242f2020-01-28 13:11:25 -0600554
555 if (statusWord)
556 {
Brandon Wymanf07bc792021-10-12 19:00:35 +0000557 statusInput = pmbusIntf->read(STATUS_INPUT, Type::Debug);
Faisal Awadab66ae502023-04-01 18:30:32 -0500558 if (bindPath.string().find(IBMCFFPS_DD_NAME) !=
559 std::string::npos)
560 {
561 statusMFR = pmbusIntf->read(STATUS_MFR, Type::Debug);
562 }
Brandon Wyman85c7bf42021-10-19 22:28:48 +0000563 statusCML = pmbusIntf->read(STATUS_CML, Type::Debug);
Brandon Wyman6710ba22021-10-27 17:39:31 +0000564 auto status0Vout = pmbusIntf->insertPageNum(STATUS_VOUT, 0);
565 statusVout = pmbusIntf->read(status0Vout, Type::Debug);
Brandon Wymanb10b3be2021-11-09 22:12:15 +0000566 statusIout = pmbusIntf->read(STATUS_IOUT, Type::Debug);
Brandon Wyman7ee4d7e2021-11-19 20:48:23 +0000567 statusFans12 = pmbusIntf->read(STATUS_FANS_1_2, Type::Debug);
Patrick Williams48781ae2023-05-10 07:50:50 -0500568 statusTemperature = pmbusIntf->read(STATUS_TEMPERATURE,
569 Type::Debug);
Brandon Wyman9ddc6222021-10-28 17:28:01 +0000570
Brandon Wymanc2203432021-12-21 23:09:48 +0000571 analyzeCMLFault();
Brandon Wyman85c7bf42021-10-19 22:28:48 +0000572
Brandon Wymane3b0bb02021-12-21 23:16:48 +0000573 analyzeInputFault();
Brandon Wyman3f1242f2020-01-28 13:11:25 -0600574
Brandon Wymanc2c87132021-12-21 23:22:18 +0000575 analyzeVoutOVFault();
Brandon Wyman6710ba22021-10-27 17:39:31 +0000576
Brandon Wymana00e7302021-12-21 23:28:29 +0000577 analyzeIoutOCFault();
Brandon Wymanb10b3be2021-11-09 22:12:15 +0000578
Brandon Wyman08378782021-12-21 23:48:15 +0000579 analyzeVoutUVFault();
Brandon Wyman2cf46942021-10-28 19:09:16 +0000580
Brandon Wymand5d9a222021-12-21 23:59:05 +0000581 analyzeFanFault();
Brandon Wyman7ee4d7e2021-11-19 20:48:23 +0000582
Brandon Wyman52cb3f22021-12-21 23:02:47 +0000583 analyzeTemperatureFault();
Brandon Wyman96893a42021-11-05 19:56:57 +0000584
Brandon Wyman993b5542021-12-21 22:55:16 +0000585 analyzePgoodFault();
Brandon Wyman2916ea52021-11-06 03:31:18 +0000586
Brandon Wyman6c2ac392021-12-21 22:23:06 +0000587 analyzeMFRFault();
Brandon Wyman3f1242f2020-01-28 13:11:25 -0600588
Brandon Wymanf087f472021-12-22 00:04:27 +0000589 analyzeVinUVFault();
Brandon Wyman3f1242f2020-01-28 13:11:25 -0600590 }
591 else
592 {
Brandon Wyman9e292ee2022-03-10 22:56:23 +0000593 if (statusWord != statusWordOld)
594 {
Brandon Wyman321a6152022-03-19 00:11:44 +0000595 log<level::INFO>(fmt::format("{} STATUS_WORD = {:#06x}",
596 shortName, statusWord)
Brandon Wyman9e292ee2022-03-10 22:56:23 +0000597 .c_str());
598 }
599
Brandon Wymane3f7ad22021-12-21 20:27:45 +0000600 // if INPUT/VIN_UV fault was on, it cleared, trace it.
601 if (inputFault)
602 {
603 log<level::INFO>(
604 fmt::format(
Brandon Wyman321a6152022-03-19 00:11:44 +0000605 "{} INPUT fault cleared: STATUS_WORD = {:#06x}",
606 shortName, statusWord)
Brandon Wymane3f7ad22021-12-21 20:27:45 +0000607 .c_str());
608 }
609
610 if (vinUVFault)
611 {
612 log<level::INFO>(
Brandon Wyman321a6152022-03-19 00:11:44 +0000613 fmt::format("{} VIN_UV cleared: STATUS_WORD = {:#06x}",
614 shortName, statusWord)
Brandon Wymane3f7ad22021-12-21 20:27:45 +0000615 .c_str());
616 }
617
Brandon Wyman06ca4592021-12-06 22:52:23 +0000618 if (pgoodFault > 0)
Brandon Wyman4aecc292021-11-10 22:40:41 +0000619 {
Brandon Wyman321a6152022-03-19 00:11:44 +0000620 log<level::INFO>(
621 fmt::format("{} pgoodFault cleared", shortName)
622 .c_str());
Brandon Wyman4aecc292021-11-10 22:40:41 +0000623 }
Brandon Wymane3f7ad22021-12-21 20:27:45 +0000624
625 clearFaultFlags();
Jim Wright4ab86562022-11-18 14:05:46 -0600626 // No AC fail, decrement counter
Jim Wright7f9288c2022-12-08 11:57:04 -0600627 if (acFault != 0)
Jim Wright4ab86562022-11-18 14:05:46 -0600628 {
629 --acFault;
630 }
Brandon Wyman3f1242f2020-01-28 13:11:25 -0600631 }
Brandon Wyman82affd92021-11-24 19:12:49 +0000632
633 // Save off old inputVoltage value.
634 // Get latest inputVoltage.
635 // If voltage went from below minimum, and now is not, clear faults.
636 // Note: getInputVoltage() has its own try/catch.
637 int inputVoltageOld = inputVoltage;
Brandon Wyman4fc191f2022-03-10 23:07:13 +0000638 double actualInputVoltageOld = actualInputVoltage;
Brandon Wyman82affd92021-11-24 19:12:49 +0000639 getInputVoltage(actualInputVoltage, inputVoltage);
640 if ((inputVoltageOld == in_input::VIN_VOLTAGE_0) &&
641 (inputVoltage != in_input::VIN_VOLTAGE_0))
642 {
643 log<level::INFO>(
644 fmt::format(
Brandon Wyman4fc191f2022-03-10 23:07:13 +0000645 "{} READ_VIN back in range: actualInputVoltageOld = {} "
646 "actualInputVoltage = {}",
647 shortName, actualInputVoltageOld, actualInputVoltage)
Brandon Wyman82affd92021-11-24 19:12:49 +0000648 .c_str());
Brandon Wyman3225a452022-03-18 18:51:49 +0000649 clearVinUVFault();
Brandon Wyman82affd92021-11-24 19:12:49 +0000650 }
Brandon Wyman4fc191f2022-03-10 23:07:13 +0000651 else if (vinUVFault && (inputVoltage != in_input::VIN_VOLTAGE_0))
652 {
653 log<level::INFO>(
654 fmt::format(
655 "{} CLEAR_FAULTS: vinUVFault {} actualInputVoltage {}",
656 shortName, vinUVFault, actualInputVoltage)
657 .c_str());
658 // Do we have a VIN_UV fault latched that can now be cleared
Jim Wright4ab86562022-11-18 14:05:46 -0600659 // due to voltage back in range? Attempt to clear the
660 // fault(s), re-check faults on next call.
Brandon Wyman3225a452022-03-18 18:51:49 +0000661 clearVinUVFault();
Brandon Wyman4fc191f2022-03-10 23:07:13 +0000662 }
Brandon Wymanae35ac52022-05-23 22:33:40 +0000663 else if (std::abs(actualInputVoltageOld - actualInputVoltage) >
664 10.0)
Brandon Wyman4fc191f2022-03-10 23:07:13 +0000665 {
666 log<level::INFO>(
667 fmt::format(
668 "{} actualInputVoltageOld = {} actualInputVoltage = {}",
669 shortName, actualInputVoltageOld, actualInputVoltage)
670 .c_str());
671 }
Matt Spinler0975eaf2022-02-14 15:38:30 -0600672
673 checkAvailability();
Brandon Wymanc3324422022-03-24 20:30:57 +0000674
675 if (inputHistorySupported)
676 {
677 updateHistory();
678 }
Brandon Wyman3f1242f2020-01-28 13:11:25 -0600679 }
Patrick Williamsc1d4de52021-10-06 12:45:57 -0500680 catch (const ReadFailure& e)
Brandon Wyman3f1242f2020-01-28 13:11:25 -0600681 {
Brandon Wyman32453e92021-12-15 19:00:14 +0000682 if (readFail < SIZE_MAX)
683 {
684 readFail++;
685 }
686 if (readFail == LOG_LIMIT)
687 {
688 phosphor::logging::commit<ReadFailure>();
689 }
Brandon Wyman3f1242f2020-01-28 13:11:25 -0600690 }
691 }
692}
693
Brandon Wyman59a35792020-06-04 12:37:40 -0500694void PowerSupply::onOffConfig(uint8_t data)
695{
696 using namespace phosphor::pmbus;
697
698 if (present)
699 {
700 log<level::INFO>("ON_OFF_CONFIG write", entry("DATA=0x%02X", data));
701 try
702 {
703 std::vector<uint8_t> configData{data};
704 pmbusIntf->writeBinary(ON_OFF_CONFIG, configData,
705 Type::HwmonDeviceDebug);
706 }
707 catch (...)
708 {
709 // The underlying code in writeBinary will log a message to the
B. J. Wyman681b2a32021-04-20 22:31:22 +0000710 // journal if the write fails. If the ON_OFF_CONFIG is not setup
711 // as desired, later fault detection and analysis code should
712 // catch any of the fall out. We should not need to terminate
713 // the application if this write fails.
Brandon Wyman59a35792020-06-04 12:37:40 -0500714 }
715 }
716}
717
Brandon Wyman3225a452022-03-18 18:51:49 +0000718void PowerSupply::clearVinUVFault()
719{
720 // Read in1_lcrit_alarm to clear bits 3 and 4 of STATUS_INPUT.
721 // The fault bits in STAUTS_INPUT roll-up to STATUS_WORD. Clearing those
722 // bits in STATUS_INPUT should result in the corresponding STATUS_WORD bits
723 // also clearing.
724 //
725 // Do not care about return value. Should be 1 if active, 0 if not.
726 static_cast<void>(
727 pmbusIntf->read("in1_lcrit_alarm", phosphor::pmbus::Type::Hwmon));
728 vinUVFault = 0;
729}
730
Brandon Wyman3c208462020-05-13 16:25:58 -0500731void PowerSupply::clearFaults()
732{
Brandon Wyman82affd92021-11-24 19:12:49 +0000733 log<level::DEBUG>(
734 fmt::format("clearFaults() inventoryPath: {}", inventoryPath).c_str());
Brandon Wyman5474c912021-02-23 14:39:43 -0600735 faultLogged = false;
Brandon Wyman3c208462020-05-13 16:25:58 -0500736 // The PMBus device driver does not allow for writing CLEAR_FAULTS
737 // directly. However, the pmbus hwmon device driver code will send a
738 // CLEAR_FAULTS after reading from any of the hwmon "files" in sysfs, so
739 // reading in1_input should result in clearing the fault bits in
740 // STATUS_BYTE/STATUS_WORD.
741 // I do not care what the return value is.
Brandon Wyman11151532020-11-10 13:45:57 -0600742 if (present)
Brandon Wyman3c208462020-05-13 16:25:58 -0500743 {
Brandon Wymane3f7ad22021-12-21 20:27:45 +0000744 clearFaultFlags();
Matt Spinler0975eaf2022-02-14 15:38:30 -0600745 checkAvailability();
Brandon Wyman9564e942020-11-10 14:01:42 -0600746 readFail = 0;
Brandon Wyman9564e942020-11-10 14:01:42 -0600747
Brandon Wyman11151532020-11-10 13:45:57 -0600748 try
749 {
Brandon Wyman3225a452022-03-18 18:51:49 +0000750 clearVinUVFault();
Brandon Wyman11151532020-11-10 13:45:57 -0600751 static_cast<void>(
752 pmbusIntf->read("in1_input", phosphor::pmbus::Type::Hwmon));
753 }
Patrick Williamsc1d4de52021-10-06 12:45:57 -0500754 catch (const ReadFailure& e)
Brandon Wyman11151532020-11-10 13:45:57 -0600755 {
756 // Since I do not care what the return value is, I really do not
B. J. Wyman681b2a32021-04-20 22:31:22 +0000757 // care much if it gets a ReadFailure either. However, this
758 // should not prevent the application from continuing to run, so
759 // catching the read failure.
Brandon Wyman11151532020-11-10 13:45:57 -0600760 }
Brandon Wyman3c208462020-05-13 16:25:58 -0500761 }
762}
763
Patrick Williams7354ce62022-07-22 19:26:56 -0500764void PowerSupply::inventoryChanged(sdbusplus::message_t& msg)
Brandon Wymanaed1f752019-11-25 18:10:52 -0600765{
766 std::string msgSensor;
Patrick Williamsabe49412020-05-13 17:59:47 -0500767 std::map<std::string, std::variant<uint32_t, bool>> msgData;
Brandon Wymanaed1f752019-11-25 18:10:52 -0600768 msg.read(msgSensor, msgData);
769
770 // Check if it was the Present property that changed.
771 auto valPropMap = msgData.find(PRESENT_PROP);
772 if (valPropMap != msgData.end())
773 {
774 if (std::get<bool>(valPropMap->second))
775 {
776 present = true;
B. J. Wyman681b2a32021-04-20 22:31:22 +0000777 // TODO: Immediately trying to read or write the "files" causes
778 // read or write failures.
Brandon Wyman1d7a7df2020-03-26 10:14:05 -0500779 using namespace std::chrono_literals;
780 std::this_thread::sleep_for(20ms);
Brandon Wyman9564e942020-11-10 14:01:42 -0600781 pmbusIntf->findHwmonDir();
Brandon Wyman59a35792020-06-04 12:37:40 -0500782 onOffConfig(phosphor::pmbus::ON_OFF_CONFIG_CONTROL_PIN_ONLY);
Brandon Wymanaed1f752019-11-25 18:10:52 -0600783 clearFaults();
Brandon Wyman1d7a7df2020-03-26 10:14:05 -0500784 updateInventory();
Brandon Wymanaed1f752019-11-25 18:10:52 -0600785 }
786 else
787 {
788 present = false;
789
790 // Clear out the now outdated inventory properties
791 updateInventory();
792 }
Matt Spinler0975eaf2022-02-14 15:38:30 -0600793 checkAvailability();
Brandon Wymanaed1f752019-11-25 18:10:52 -0600794 }
795}
796
Patrick Williams7354ce62022-07-22 19:26:56 -0500797void PowerSupply::inventoryAdded(sdbusplus::message_t& msg)
Brandon Wyman9a507db2021-02-25 16:15:22 -0600798{
799 sdbusplus::message::object_path path;
800 msg.read(path);
801 // Make sure the signal is for the PSU inventory path
802 if (path == inventoryPath)
803 {
804 std::map<std::string, std::map<std::string, std::variant<bool>>>
805 interfaces;
806 // Get map of interfaces and their properties
807 msg.read(interfaces);
808
809 auto properties = interfaces.find(INVENTORY_IFACE);
810 if (properties != interfaces.end())
811 {
812 auto property = properties->second.find(PRESENT_PROP);
813 if (property != properties->second.end())
814 {
815 present = std::get<bool>(property->second);
816
817 log<level::INFO>(fmt::format("Power Supply {} Present {}",
818 inventoryPath, present)
819 .c_str());
820
821 updateInventory();
Matt Spinler0975eaf2022-02-14 15:38:30 -0600822 checkAvailability();
Brandon Wyman9a507db2021-02-25 16:15:22 -0600823 }
824 }
825 }
826}
827
Brandon Wyman8393f462022-06-28 16:06:46 +0000828auto PowerSupply::readVPDValue(const std::string& vpdName,
829 const phosphor::pmbus::Type& type,
830 const std::size_t& vpdSize)
831{
832 std::string vpdValue;
Patrick Williams48781ae2023-05-10 07:50:50 -0500833 const std::regex illegalVPDRegex = std::regex("[^[:alnum:]]",
834 std::regex::basic);
Brandon Wyman8393f462022-06-28 16:06:46 +0000835
836 try
837 {
838 vpdValue = pmbusIntf->readString(vpdName, type);
839 }
840 catch (const ReadFailure& e)
841 {
842 // Ignore the read failure, let pmbus code indicate failure,
843 // path...
844 // TODO - ibm918
845 // https://github.com/openbmc/docs/blob/master/designs/vpd-collection.md
846 // The BMC must log errors if any of the VPD cannot be properly
847 // parsed or fails ECC checks.
848 }
849
850 if (vpdValue.size() != vpdSize)
851 {
852 log<level::INFO>(fmt::format("{} {} resize needed. size: {}", shortName,
853 vpdName, vpdValue.size())
854 .c_str());
855 vpdValue.resize(vpdSize, ' ');
856 }
857
Brandon Wyman056935c2022-06-24 23:05:09 +0000858 // Replace any illegal values with space(s).
859 std::regex_replace(vpdValue.begin(), vpdValue.begin(), vpdValue.end(),
860 illegalVPDRegex, " ");
861
Brandon Wyman8393f462022-06-28 16:06:46 +0000862 return vpdValue;
863}
864
Brandon Wyman1d7a7df2020-03-26 10:14:05 -0500865void PowerSupply::updateInventory()
866{
867 using namespace phosphor::pmbus;
868
Chanh Nguyenc12c53b2021-04-06 17:24:47 +0700869#if IBM_VPD
Brandon Wyman1d7a7df2020-03-26 10:14:05 -0500870 std::string pn;
871 std::string fn;
872 std::string header;
873 std::string sn;
Brandon Wyman8393f462022-06-28 16:06:46 +0000874 // The IBM power supply splits the full serial number into two parts.
875 // Each part is 6 bytes long, which should match up with SN_KW_SIZE.
876 const auto HEADER_SIZE = 6;
877 const auto SERIAL_SIZE = 6;
878 // The IBM PSU firmware version size is a bit complicated. It was originally
879 // 1-byte, per command. It was later expanded to 2-bytes per command, then
880 // up to 8-bytes per command. The device driver only reads up to 2 bytes per
881 // command, but combines all three of the 2-byte reads, or all 4 of the
882 // 1-byte reads into one string. So, the maximum size expected is 6 bytes.
Shawn McCarney983c9892022-10-12 10:49:47 -0500883 // However, it is formatted by the driver as a hex string with two ASCII
884 // characters per byte. So the maximum ASCII string size is 12.
885 const auto VERSION_SIZE = 12;
Brandon Wyman8393f462022-06-28 16:06:46 +0000886
Brandon Wyman1d7a7df2020-03-26 10:14:05 -0500887 using PropertyMap =
George Liu070c1bc2020-10-12 11:28:01 +0800888 std::map<std::string,
889 std::variant<std::string, std::vector<uint8_t>, bool>>;
Brandon Wyman1d7a7df2020-03-26 10:14:05 -0500890 PropertyMap assetProps;
George Liu070c1bc2020-10-12 11:28:01 +0800891 PropertyMap operProps;
Brandon Wyman1d7a7df2020-03-26 10:14:05 -0500892 PropertyMap versionProps;
893 PropertyMap ipzvpdDINFProps;
894 PropertyMap ipzvpdVINIProps;
895 using InterfaceMap = std::map<std::string, PropertyMap>;
896 InterfaceMap interfaces;
897 using ObjectMap = std::map<sdbusplus::message::object_path, InterfaceMap>;
898 ObjectMap object;
899#endif
B. J. Wyman681b2a32021-04-20 22:31:22 +0000900 log<level::DEBUG>(
901 fmt::format("updateInventory() inventoryPath: {}", inventoryPath)
902 .c_str());
Brandon Wyman1d7a7df2020-03-26 10:14:05 -0500903
904 if (present)
905 {
906 // TODO: non-IBM inventory updates?
907
Chanh Nguyenc12c53b2021-04-06 17:24:47 +0700908#if IBM_VPD
faisaladed7a02023-05-10 14:59:01 -0500909 if (driverName != IBMCFFPS_DD_NAME)
910 {
911 getPsuVpdFromDbus("CC", modelName);
912 getPsuVpdFromDbus("PN", pn);
913 getPsuVpdFromDbus("FN", fn);
914 getPsuVpdFromDbus("SN", sn);
915 assetProps.emplace(SN_PROP, sn);
916 }
917 else
918 {
919 modelName = readVPDValue(CCIN, Type::HwmonDeviceDebug, CC_KW_SIZE);
920 pn = readVPDValue(PART_NUMBER, Type::Debug, PN_KW_SIZE);
921 fn = readVPDValue(FRU_NUMBER, Type::Debug, FN_KW_SIZE);
922
923 header = readVPDValue(SERIAL_HEADER, Type::Debug, HEADER_SIZE);
924 sn = readVPDValue(SERIAL_NUMBER, Type::Debug, SERIAL_SIZE);
925 assetProps.emplace(SN_PROP, header + sn);
926 }
927
Brandon Wyman8393f462022-06-28 16:06:46 +0000928 assetProps.emplace(MODEL_PROP, modelName);
Brandon Wyman8393f462022-06-28 16:06:46 +0000929 assetProps.emplace(PN_PROP, pn);
Brandon Wyman8393f462022-06-28 16:06:46 +0000930 assetProps.emplace(SPARE_PN_PROP, fn);
Brandon Wyman1d7a7df2020-03-26 10:14:05 -0500931
Patrick Williams48781ae2023-05-10 07:50:50 -0500932 fwVersion = readVPDValue(FW_VERSION, Type::HwmonDeviceDebug,
933 VERSION_SIZE);
Brandon Wyman8393f462022-06-28 16:06:46 +0000934 versionProps.emplace(VERSION_PROP, fwVersion);
Brandon Wyman1d7a7df2020-03-26 10:14:05 -0500935
Brandon Wyman8393f462022-06-28 16:06:46 +0000936 ipzvpdVINIProps.emplace(
937 "CC", std::vector<uint8_t>(modelName.begin(), modelName.end()));
Brandon Wyman1d7a7df2020-03-26 10:14:05 -0500938 ipzvpdVINIProps.emplace("PN",
939 std::vector<uint8_t>(pn.begin(), pn.end()));
940 ipzvpdVINIProps.emplace("FN",
941 std::vector<uint8_t>(fn.begin(), fn.end()));
Brandon Wyman33d492f2022-03-23 20:45:17 +0000942 std::string header_sn = header + sn;
Brandon Wyman1d7a7df2020-03-26 10:14:05 -0500943 ipzvpdVINIProps.emplace(
944 "SN", std::vector<uint8_t>(header_sn.begin(), header_sn.end()));
945 std::string description = "IBM PS";
946 ipzvpdVINIProps.emplace(
947 "DR", std::vector<uint8_t>(description.begin(), description.end()));
948
Ben Tynerf8d8c462022-01-27 16:09:45 -0600949 // Populate the VINI Resource Type (RT) keyword
950 ipzvpdVINIProps.emplace("RT", std::vector<uint8_t>{'V', 'I', 'N', 'I'});
951
Brandon Wyman1d7a7df2020-03-26 10:14:05 -0500952 // Update the Resource Identifier (RI) keyword
953 // 2 byte FRC: 0x0003
954 // 2 byte RID: 0x1000, 0x1001...
955 std::uint8_t num = std::stoul(
956 inventoryPath.substr(inventoryPath.size() - 1, 1), nullptr, 0);
957 std::vector<uint8_t> ri{0x00, 0x03, 0x10, num};
958 ipzvpdDINFProps.emplace("RI", ri);
959
960 // Fill in the FRU Label (FL) keyword.
961 std::string fl = "E";
962 fl.push_back(inventoryPath.back());
963 fl.resize(FL_KW_SIZE, ' ');
964 ipzvpdDINFProps.emplace("FL",
965 std::vector<uint8_t>(fl.begin(), fl.end()));
966
Ben Tynerf8d8c462022-01-27 16:09:45 -0600967 // Populate the DINF Resource Type (RT) keyword
968 ipzvpdDINFProps.emplace("RT", std::vector<uint8_t>{'D', 'I', 'N', 'F'});
969
Brandon Wyman1d7a7df2020-03-26 10:14:05 -0500970 interfaces.emplace(ASSET_IFACE, std::move(assetProps));
971 interfaces.emplace(VERSION_IFACE, std::move(versionProps));
972 interfaces.emplace(DINF_IFACE, std::move(ipzvpdDINFProps));
973 interfaces.emplace(VINI_IFACE, std::move(ipzvpdVINIProps));
974
George Liu070c1bc2020-10-12 11:28:01 +0800975 // Update the Functional
976 operProps.emplace(FUNCTIONAL_PROP, present);
977 interfaces.emplace(OPERATIONAL_STATE_IFACE, std::move(operProps));
978
Brandon Wyman1d7a7df2020-03-26 10:14:05 -0500979 auto path = inventoryPath.substr(strlen(INVENTORY_OBJ_PATH));
980 object.emplace(path, std::move(interfaces));
981
982 try
983 {
Patrick Williams48781ae2023-05-10 07:50:50 -0500984 auto service = util::getService(INVENTORY_OBJ_PATH,
985 INVENTORY_MGR_IFACE, bus);
Brandon Wyman1d7a7df2020-03-26 10:14:05 -0500986
987 if (service.empty())
988 {
989 log<level::ERR>("Unable to get inventory manager service");
990 return;
991 }
992
Patrick Williams48781ae2023-05-10 07:50:50 -0500993 auto method = bus.new_method_call(service.c_str(),
994 INVENTORY_OBJ_PATH,
995 INVENTORY_MGR_IFACE, "Notify");
Brandon Wyman1d7a7df2020-03-26 10:14:05 -0500996
997 method.append(std::move(object));
998
999 auto reply = bus.call(method);
1000 }
Patrick Williamsc1d4de52021-10-06 12:45:57 -05001001 catch (const std::exception& e)
Brandon Wyman1d7a7df2020-03-26 10:14:05 -05001002 {
Jay Meyer6a3fd2c2020-08-25 16:37:16 -05001003 log<level::ERR>(
1004 std::string(e.what() + std::string(" PATH=") + inventoryPath)
1005 .c_str());
Brandon Wyman1d7a7df2020-03-26 10:14:05 -05001006 }
1007#endif
1008 }
1009}
1010
Brandon Wymanae35ac52022-05-23 22:33:40 +00001011auto PowerSupply::getMaxPowerOut() const
1012{
1013 using namespace phosphor::pmbus;
1014
1015 auto maxPowerOut = 0;
1016
1017 if (present)
1018 {
1019 try
1020 {
1021 // Read max_power_out, should be direct format
Patrick Williams48781ae2023-05-10 07:50:50 -05001022 auto maxPowerOutStr = pmbusIntf->readString(MFR_POUT_MAX,
1023 Type::HwmonDeviceDebug);
Brandon Wymanae35ac52022-05-23 22:33:40 +00001024 log<level::INFO>(fmt::format("{} MFR_POUT_MAX read {}", shortName,
1025 maxPowerOutStr)
1026 .c_str());
1027 maxPowerOut = std::stod(maxPowerOutStr);
1028 }
1029 catch (const std::exception& e)
1030 {
1031 log<level::ERR>(fmt::format("{} MFR_POUT_MAX read error: {}",
1032 shortName, e.what())
1033 .c_str());
1034 }
1035 }
1036
1037 return maxPowerOut;
1038}
1039
Brandon Wymanc3324422022-03-24 20:30:57 +00001040void PowerSupply::setupInputHistory()
1041{
Faisal Awadab66ae502023-04-01 18:30:32 -05001042 if (bindPath.string().find(IBMCFFPS_DD_NAME) != std::string::npos)
Brandon Wymanc3324422022-03-24 20:30:57 +00001043 {
Brandon Wymanae35ac52022-05-23 22:33:40 +00001044 auto maxPowerOut = getMaxPowerOut();
1045
1046 if (maxPowerOut != phosphor::pmbus::IBM_CFFPS_1400W)
Brandon Wymanc3324422022-03-24 20:30:57 +00001047 {
Brandon Wymanae35ac52022-05-23 22:33:40 +00001048 // Do not enable input history for power supplies that are missing
1049 if (present)
1050 {
1051 inputHistorySupported = true;
1052 log<level::INFO>(
1053 fmt::format("{} INPUT_HISTORY enabled", shortName).c_str());
1054
1055 std::string name{fmt::format("{}_input_power", shortName)};
1056
Patrick Williams48781ae2023-05-10 07:50:50 -05001057 historyObjectPath = std::string{INPUT_HISTORY_SENSOR_ROOT} +
1058 '/' + name;
Brandon Wymanae35ac52022-05-23 22:33:40 +00001059
1060 // If the power supply was present, we created the
1061 // recordManager. If it then went missing, the recordManager is
1062 // still there. If it then is reinserted, we should be able to
1063 // use the recordManager that was allocated when it was
1064 // initially present.
1065 if (!recordManager)
1066 {
1067 recordManager = std::make_unique<history::RecordManager>(
1068 INPUT_HISTORY_MAX_RECORDS);
1069 }
1070
1071 if (!average)
1072 {
Patrick Williams48781ae2023-05-10 07:50:50 -05001073 auto avgPath = historyObjectPath + '/' +
1074 history::Average::name;
Brandon Wymanae35ac52022-05-23 22:33:40 +00001075 average = std::make_unique<history::Average>(bus, avgPath);
1076 log<level::DEBUG>(
1077 fmt::format("{} avgPath: {}", shortName, avgPath)
1078 .c_str());
1079 }
1080
1081 if (!maximum)
1082 {
Patrick Williams48781ae2023-05-10 07:50:50 -05001083 auto maxPath = historyObjectPath + '/' +
1084 history::Maximum::name;
Brandon Wymanae35ac52022-05-23 22:33:40 +00001085 maximum = std::make_unique<history::Maximum>(bus, maxPath);
1086 log<level::DEBUG>(
1087 fmt::format("{} maxPath: {}", shortName, maxPath)
1088 .c_str());
1089 }
1090
1091 log<level::DEBUG>(fmt::format("{} historyObjectPath: {}",
1092 shortName, historyObjectPath)
1093 .c_str());
1094 }
1095 }
1096 else
1097 {
Brandon Wymanc3324422022-03-24 20:30:57 +00001098 log<level::INFO>(
Brandon Wymanae35ac52022-05-23 22:33:40 +00001099 fmt::format("{} INPUT_HISTORY DISABLED. max_power_out: {}",
1100 shortName, maxPowerOut)
1101 .c_str());
1102 inputHistorySupported = false;
Brandon Wymanc3324422022-03-24 20:30:57 +00001103 }
1104 }
1105 else
1106 {
1107 inputHistorySupported = false;
1108 }
1109}
1110
1111void PowerSupply::updateHistory()
1112{
1113 if (!recordManager)
1114 {
1115 // Not enabled
1116 return;
1117 }
1118
1119 if (!present)
1120 {
1121 // Cannot read when not present
1122 return;
1123 }
1124
1125 // Read just the most recent average/max record
Patrick Williams48781ae2023-05-10 07:50:50 -05001126 auto data = pmbusIntf->readBinary(INPUT_HISTORY,
1127 pmbus::Type::HwmonDeviceDebug,
1128 history::RecordManager::RAW_RECORD_SIZE);
Brandon Wymanc3324422022-03-24 20:30:57 +00001129
Brandon Wymanae35ac52022-05-23 22:33:40 +00001130 // Update D-Bus only if something changed (a new record ID, or cleared
1131 // out)
Brandon Wymanc3324422022-03-24 20:30:57 +00001132 auto changed = recordManager->add(data);
1133 if (changed)
1134 {
1135 average->values(std::move(recordManager->getAverageRecords()));
1136 maximum->values(std::move(recordManager->getMaximumRecords()));
1137 }
1138}
1139
Adriana Kobylak4175ffb2021-08-02 14:51:05 +00001140void PowerSupply::getInputVoltage(double& actualInputVoltage,
1141 int& inputVoltage) const
1142{
1143 using namespace phosphor::pmbus;
1144
1145 actualInputVoltage = in_input::VIN_VOLTAGE_0;
1146 inputVoltage = in_input::VIN_VOLTAGE_0;
1147
1148 if (present)
1149 {
1150 try
1151 {
1152 // Read input voltage in millivolts
1153 auto inputVoltageStr = pmbusIntf->readString(READ_VIN, Type::Hwmon);
1154
1155 // Convert to volts
1156 actualInputVoltage = std::stod(inputVoltageStr) / 1000;
1157
1158 // Calculate the voltage based on voltage thresholds
1159 if (actualInputVoltage < in_input::VIN_VOLTAGE_MIN)
1160 {
1161 inputVoltage = in_input::VIN_VOLTAGE_0;
1162 }
1163 else if (actualInputVoltage < in_input::VIN_VOLTAGE_110_THRESHOLD)
1164 {
1165 inputVoltage = in_input::VIN_VOLTAGE_110;
1166 }
1167 else
1168 {
1169 inputVoltage = in_input::VIN_VOLTAGE_220;
1170 }
1171 }
1172 catch (const std::exception& e)
1173 {
1174 log<level::ERR>(
Brandon Wyman321a6152022-03-19 00:11:44 +00001175 fmt::format("{} READ_VIN read error: {}", shortName, e.what())
1176 .c_str());
Adriana Kobylak4175ffb2021-08-02 14:51:05 +00001177 }
1178 }
1179}
1180
Matt Spinler0975eaf2022-02-14 15:38:30 -06001181void PowerSupply::checkAvailability()
1182{
1183 bool origAvailability = available;
George Liu9464c422023-02-27 14:30:27 +08001184 bool faulted = isPowerOn() && (hasPSKillFault() || hasIoutOCFault());
1185 available = present && !hasInputFault() && !hasVINUVFault() && !faulted;
Matt Spinler0975eaf2022-02-14 15:38:30 -06001186
1187 if (origAvailability != available)
1188 {
1189 auto invpath = inventoryPath.substr(strlen(INVENTORY_OBJ_PATH));
1190 phosphor::power::psu::setAvailable(bus, invpath, available);
Matt Spinlerca1e9ea2022-02-18 14:03:08 -06001191
1192 // Check if the health rollup needs to change based on the
1193 // new availability value.
1194 phosphor::power::psu::handleChassisHealthRollup(bus, inventoryPath,
1195 !available);
Matt Spinler0975eaf2022-02-14 15:38:30 -06001196 }
1197}
1198
Matt Spinlera068f422023-03-10 13:06:49 -06001199void PowerSupply::setInputVoltageRating()
1200{
1201 if (!present)
1202 {
Matt Spinler1aaf9f82023-03-22 09:52:22 -05001203 if (inputVoltageRatingIface)
1204 {
1205 inputVoltageRatingIface->value(0);
1206 inputVoltageRatingIface.reset();
1207 }
Matt Spinlera068f422023-03-10 13:06:49 -06001208 return;
1209 }
1210
1211 double inputVoltageValue{};
1212 int inputVoltageRating{};
1213 getInputVoltage(inputVoltageValue, inputVoltageRating);
1214
1215 if (!inputVoltageRatingIface)
1216 {
1217 auto path = fmt::format(
1218 "/xyz/openbmc_project/sensors/voltage/ps{}_input_voltage_rating",
1219 shortName.back());
1220
1221 inputVoltageRatingIface = std::make_unique<SensorObject>(
1222 bus, path.c_str(), SensorObject::action::defer_emit);
1223
1224 // Leave other properties at their defaults
1225 inputVoltageRatingIface->unit(SensorInterface::Unit::Volts, true);
1226 inputVoltageRatingIface->value(static_cast<double>(inputVoltageRating),
1227 true);
1228
1229 inputVoltageRatingIface->emit_object_added();
1230 }
1231 else
1232 {
1233 inputVoltageRatingIface->value(static_cast<double>(inputVoltageRating));
1234 }
1235}
1236
faisaladed7a02023-05-10 14:59:01 -05001237void PowerSupply::getPsuVpdFromDbus(const std::string& keyword,
1238 std::string& vpdStr)
1239{
1240 try
1241 {
1242 std::vector<uint8_t> value;
1243 vpdStr.clear();
1244 util::getProperty(VINI_IFACE, keyword, inventoryPath,
1245 INVENTORY_MGR_IFACE, bus, value);
1246 for (char c : value)
1247 {
1248 vpdStr += c;
1249 }
1250 }
1251 catch (const sdbusplus::exception_t& e)
1252 {
1253 log<level::ERR>(
1254 fmt::format("Failed getProperty error: {}", e.what()).c_str());
1255 }
1256}
Brandon Wyman3f1242f2020-01-28 13:11:25 -06001257} // namespace phosphor::power::psu