blob: 38898bd684026f559d70185404321695084b13bb [file] [log] [blame]
Brandon Wyman24e422f2017-07-25 19:40:14 -05001/**
2 * Copyright © 2017 IBM Corporation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Brandon Wyman442035f2017-08-08 15:58:45 -050016#include <phosphor-logging/log.hpp>
17#include <phosphor-logging/elog.hpp>
Brandon Wymane0eb45c2017-10-06 12:58:42 -050018#include <org/open_power/Witherspoon/Fault/error.hpp>
Matt Spinlerceacf942017-10-05 13:55:02 -050019#include <xyz/openbmc_project/Common/Device/error.hpp>
Brandon Wyman442035f2017-08-08 15:58:45 -050020#include "elog-errors.hpp"
Brandon Wyman10295542017-08-09 18:20:44 -050021#include "names_values.hpp"
Brandon Wyman24e422f2017-07-25 19:40:14 -050022#include "power_supply.hpp"
Brandon Wyman442035f2017-08-08 15:58:45 -050023#include "pmbus.hpp"
24#include "utility.hpp"
25
26using namespace phosphor::logging;
Brandon Wymane0eb45c2017-10-06 12:58:42 -050027using namespace sdbusplus::org::open_power::Witherspoon::Fault::Error;
Matt Spinlerceacf942017-10-05 13:55:02 -050028using namespace sdbusplus::xyz::openbmc_project::Common::Device::Error;
Brandon Wyman24e422f2017-07-25 19:40:14 -050029
Brandon Wyman1db9a9e2017-07-26 18:50:22 -050030namespace witherspoon
Brandon Wyman24e422f2017-07-25 19:40:14 -050031{
32namespace power
33{
34namespace psu
35{
36
Brandon Wyman10295542017-08-09 18:20:44 -050037constexpr auto INVENTORY_OBJ_PATH = "/xyz/openbmc_project/inventory";
38constexpr auto INVENTORY_INTERFACE = "xyz.openbmc_project.Inventory.Item";
39constexpr auto PRESENT_PROP = "Present";
Brandon Wyman431fbe42017-08-18 16:22:09 -050040constexpr auto POWER_OBJ_PATH = "/org/openbmc/control/power0";
41constexpr auto POWER_INTERFACE = "org.openbmc.control.Power";
Brandon Wyman10295542017-08-09 18:20:44 -050042
43PowerSupply::PowerSupply(const std::string& name, size_t inst,
Brandon Wyman431fbe42017-08-18 16:22:09 -050044 const std::string& objpath,
45 const std::string& invpath,
46 sdbusplus::bus::bus& bus,
47 event::Event& e,
Brandon Wyman590fc282017-11-01 18:22:25 -050048 std::chrono::seconds& t,
49 std::chrono::seconds& p)
Brandon Wyman431fbe42017-08-18 16:22:09 -050050 : Device(name, inst), monitorPath(objpath), pmbusIntf(objpath),
Brandon Wyman50bb85d2017-11-01 18:36:00 -050051 inventoryPath(INVENTORY_OBJ_PATH + invpath), bus(bus), event(e),
52 presentInterval(p),
Brandon Wyman590fc282017-11-01 18:22:25 -050053 presentTimer(e, [this]()
54 {
55 this->present = true;
56 }),
57 powerOnInterval(t),
Brandon Wyman431fbe42017-08-18 16:22:09 -050058 powerOnTimer(e, [this]()
59 {
60 this->powerOn = true;
61 })
Brandon Wyman10295542017-08-09 18:20:44 -050062{
Brandon Wyman10295542017-08-09 18:20:44 -050063 using namespace sdbusplus::bus;
Brandon Wyman10295542017-08-09 18:20:44 -050064 presentMatch = std::make_unique<match_t>(bus,
65 match::rules::propertiesChanged(
Brandon Wyman50bb85d2017-11-01 18:36:00 -050066 inventoryPath,
Brandon Wyman10295542017-08-09 18:20:44 -050067 INVENTORY_INTERFACE),
68 [this](auto& msg)
Brandon Wyman431fbe42017-08-18 16:22:09 -050069 {
70 this->inventoryChanged(msg);
71 });
72 // Get initial presence state.
Brandon Wyman253dc9b2017-08-12 13:45:52 -050073 updatePresence();
Brandon Wyman431fbe42017-08-18 16:22:09 -050074
75 // Subscribe to power state changes
76 powerOnMatch = std::make_unique<match_t>(bus,
77 match::rules::propertiesChanged(
78 POWER_OBJ_PATH,
79 POWER_INTERFACE),
80 [this](auto& msg)
81 {
82 this->powerStateChanged(msg);
83 });
84 // Get initial power state.
85 updatePowerState();
Brandon Wyman10295542017-08-09 18:20:44 -050086}
Brandon Wyman442035f2017-08-08 15:58:45 -050087
Brandon Wymana1e96342017-09-25 16:47:44 -050088void PowerSupply::captureCmd(util::NamesValues& nv, const std::string& cmd,
89 witherspoon::pmbus::Type type)
90{
91 if (pmbusIntf.exists(cmd, type))
92 {
93 try
94 {
95 auto val = pmbusIntf.read(cmd, type);
96 nv.add(cmd, val);
97 }
98 catch (std::exception& e)
99 {
100 log<level::INFO>("Unable to capture metadata", entry("CMD=%s",
101 cmd));
102 }
103 }
104}
Brandon Wyman431fbe42017-08-18 16:22:09 -0500105
Brandon Wyman1db9a9e2017-07-26 18:50:22 -0500106void PowerSupply::analyze()
107{
Brandon Wyman442035f2017-08-08 15:58:45 -0500108 using namespace witherspoon::pmbus;
109
110 try
111 {
Brandon Wyman10295542017-08-09 18:20:44 -0500112 if (present)
Brandon Wyman442035f2017-08-08 15:58:45 -0500113 {
Brandon Wyman764c7972017-08-22 17:05:36 -0500114 std::uint16_t statusWord = 0;
Brandon Wyman764c7972017-08-22 17:05:36 -0500115
116 // Read the 2 byte STATUS_WORD value to check for faults.
117 statusWord = pmbusIntf.read(STATUS_WORD, Type::Debug);
Brandon Wymane4af9802017-11-13 15:58:33 -0600118 readFail = 0;
Brandon Wyman764c7972017-08-22 17:05:36 -0500119
Brandon Wymanbee81612017-11-01 18:24:43 -0500120 //TODO: openbmc/openbmc#2484 Three consecutive reads should be
121 // performed.
Brandon Wyman10295542017-08-09 18:20:44 -0500122 // If 3 consecutive reads are seen, log the fault.
123 // Driver gives cached value, read once a second.
124 // increment for fault on, decrement for fault off, to deglitch.
125 // If count reaches 3, we have fault. If count reaches 0, fault is
126 // cleared.
127
Brandon Wyman603cc002017-08-28 18:17:58 -0500128 checkInputFault(statusWord);
Brandon Wyman764c7972017-08-22 17:05:36 -0500129
Brandon Wyman3343e822017-11-03 16:54:11 -0500130 if (powerOn && !faultFound)
Brandon Wyman764c7972017-08-22 17:05:36 -0500131 {
Brandon Wyman12661f12017-08-31 15:28:21 -0500132 checkFanFault(statusWord);
Brandon Wyman875b3632017-09-13 18:46:03 -0500133 checkTemperatureFault(statusWord);
Brandon Wymancfa032b2017-09-25 17:37:50 -0500134 checkOutputOvervoltageFault(statusWord);
135 checkCurrentOutOverCurrentFault(statusWord);
136 checkPGOrUnitOffFault(statusWord);
Brandon Wyman442035f2017-08-08 15:58:45 -0500137 }
138 }
139 }
140 catch (ReadFailure& e)
141 {
Brandon Wymane4af9802017-11-13 15:58:33 -0600142 if (readFail < FAULT_COUNT)
143 {
144 readFail++;
145 }
146
147 if (!readFailLogged && readFail >= FAULT_COUNT)
Brandon Wyman442035f2017-08-08 15:58:45 -0500148 {
149 commit<ReadFailure>();
150 readFailLogged = true;
Brandon Wyman442035f2017-08-08 15:58:45 -0500151 }
152 }
153
Brandon Wyman1db9a9e2017-07-26 18:50:22 -0500154 return;
155}
156
Brandon Wyman10295542017-08-09 18:20:44 -0500157void PowerSupply::inventoryChanged(sdbusplus::message::message& msg)
158{
159 std::string msgSensor;
160 std::map<std::string, sdbusplus::message::variant<uint32_t, bool>> msgData;
161 msg.read(msgSensor, msgData);
162
163 // Check if it was the Present property that changed.
164 auto valPropMap = msgData.find(PRESENT_PROP);
165 if (valPropMap != msgData.end())
166 {
167 present = sdbusplus::message::variant_ns::get<bool>(valPropMap->second);
168
169 if (present)
170 {
Brandon Wyman6ccce0b2017-10-26 15:13:10 -0500171 clearFaults();
Brandon Wyman590fc282017-11-01 18:22:25 -0500172 presentTimer.start(presentInterval, Timer::TimerType::oneshot);
173 }
174 else
175 {
176 presentTimer.stop();
Brandon Wyman10295542017-08-09 18:20:44 -0500177 }
178 }
179
180 return;
181}
182
183void PowerSupply::updatePresence()
184{
185 // Use getProperty utility function to get presence status.
Brandon Wyman10295542017-08-09 18:20:44 -0500186 std::string service = "xyz.openbmc_project.Inventory.Manager";
Brandon Wyman50bb85d2017-11-01 18:36:00 -0500187 util::getProperty(INVENTORY_INTERFACE, PRESENT_PROP, inventoryPath,
188 service, bus, this->present);
Brandon Wyman10295542017-08-09 18:20:44 -0500189}
190
Brandon Wyman431fbe42017-08-18 16:22:09 -0500191void PowerSupply::powerStateChanged(sdbusplus::message::message& msg)
192{
193 int32_t state = 0;
194 std::string msgSensor;
195 std::map<std::string, sdbusplus::message::variant<int32_t, int32_t>>
196 msgData;
197 msg.read(msgSensor, msgData);
198
199 // Check if it was the Present property that changed.
200 auto valPropMap = msgData.find("state");
201 if (valPropMap != msgData.end())
202 {
203 state = sdbusplus::message::variant_ns::get<int32_t>(valPropMap->second);
204
205 // Power is on when state=1. Set the fault logged variables to false
206 // and start the power on timer when the state changes to 1.
207 if (state)
208 {
Brandon Wyman6ccce0b2017-10-26 15:13:10 -0500209 clearFaults();
Brandon Wyman431fbe42017-08-18 16:22:09 -0500210 powerOnTimer.start(powerOnInterval, Timer::TimerType::oneshot);
211 }
212 else
213 {
214 powerOnTimer.stop();
215 powerOn = false;
216 }
217 }
218
219}
220
221void PowerSupply::updatePowerState()
222{
223 // When state = 1, system is powered on
224 int32_t state = 0;
225
226 try
227 {
228 auto service = util::getService(POWER_OBJ_PATH,
229 POWER_INTERFACE,
230 bus);
231
232 // Use getProperty utility function to get power state.
233 util::getProperty<int32_t>(POWER_INTERFACE,
234 "state",
235 POWER_OBJ_PATH,
236 service,
237 bus,
238 state);
239
240 if (state)
241 {
242 powerOn = true;
243 }
244 else
245 {
246 powerOn = false;
247 }
248 }
249 catch (std::exception& e)
250 {
251 log<level::INFO>("Failed to get power state. Assuming it is off.");
252 powerOn = false;
253 }
254
255}
256
Brandon Wyman603cc002017-08-28 18:17:58 -0500257void PowerSupply::checkInputFault(const uint16_t statusWord)
258{
259 using namespace witherspoon::pmbus;
260
261 std::uint8_t statusInput = 0;
262
Brandon Wymand20686a2017-11-01 17:45:23 -0500263 if (!inputFault && ((statusWord & status_word::INPUT_FAULT_WARN) ||
264 (statusWord & status_word::VIN_UV_FAULT)))
Brandon Wyman603cc002017-08-28 18:17:58 -0500265 {
Brandon Wyman3343e822017-11-03 16:54:11 -0500266 faultFound = true;
Brandon Wyman603cc002017-08-28 18:17:58 -0500267 inputFault = true;
268
Brandon Wyman603cc002017-08-28 18:17:58 -0500269 util::NamesValues nv;
270 nv.add("STATUS_WORD", statusWord);
Brandon Wymana1e96342017-09-25 16:47:44 -0500271 captureCmd(nv, STATUS_INPUT, Type::Debug);
Brandon Wyman603cc002017-08-28 18:17:58 -0500272
Brandon Wymane0eb45c2017-10-06 12:58:42 -0500273 using metadata = org::open_power::Witherspoon::Fault::
Brandon Wyman603cc002017-08-28 18:17:58 -0500274 PowerSupplyInputFault;
275
276 report<PowerSupplyInputFault>(
Brandon Wymanea358c92017-10-27 17:34:07 -0500277 metadata::RAW_STATUS(nv.get().c_str()),
278 metadata::CALLOUT_INVENTORY_PATH(inventoryPath.c_str()));
Brandon Wyman603cc002017-08-28 18:17:58 -0500279 }
280 else
281 {
282 if ((inputFault) &&
Brandon Wymand20686a2017-11-01 17:45:23 -0500283 !(statusWord & status_word::INPUT_FAULT_WARN) &&
284 !(statusWord & status_word::VIN_UV_FAULT))
Brandon Wyman603cc002017-08-28 18:17:58 -0500285 {
286 inputFault = false;
Brandon Wyman3343e822017-11-03 16:54:11 -0500287 faultFound = false;
Brandon Wyman69591bd2017-11-01 18:07:23 -0500288
Brandon Wyman603cc002017-08-28 18:17:58 -0500289 statusInput = pmbusIntf.read(STATUS_INPUT, Type::Debug);
290
291 log<level::INFO>("INPUT_FAULT_WARN cleared",
292 entry("POWERSUPPLY=%s", inventoryPath.c_str()),
293 entry("STATUS_WORD=0x%04X", statusWord),
294 entry("STATUS_INPUT=0x%02X", statusInput));
Brandon Wyman69591bd2017-11-01 18:07:23 -0500295
296 if (powerOn)
297 {
298 // The power supply will not be immediately powered on after
299 // the input power is restored.
300 powerOn = false;
301 // Start up the timer that will set the state to indicate we
302 // are ready for the powered on fault checks.
303 powerOnTimer.start(powerOnInterval, Timer::TimerType::oneshot);
304 }
Brandon Wyman603cc002017-08-28 18:17:58 -0500305 }
306 }
307}
308
309void PowerSupply::checkPGOrUnitOffFault(const uint16_t statusWord)
310{
311 using namespace witherspoon::pmbus;
312
Brandon Wyman593d24f2017-10-13 18:15:23 -0500313 if (powerOnFault < FAULT_COUNT)
Brandon Wyman603cc002017-08-28 18:17:58 -0500314 {
Brandon Wyman593d24f2017-10-13 18:15:23 -0500315 // Check PG# and UNIT_IS_OFF
316 if ((statusWord & status_word::POWER_GOOD_NEGATED) ||
317 (statusWord & status_word::UNIT_IS_OFF))
318 {
319 log<level::INFO>("PGOOD or UNIT_IS_OFF bit bad",
320 entry("STATUS_WORD=0x%04X", statusWord));
321 powerOnFault++;
322 }
323 else
324 {
325 if (powerOnFault > 0)
326 {
327 log<level::INFO>("PGOOD and UNIT_IS_OFF bits good");
328 powerOnFault = 0;
329 }
330 }
Brandon Wyman603cc002017-08-28 18:17:58 -0500331
Brandon Wyman593d24f2017-10-13 18:15:23 -0500332 if (powerOnFault >= FAULT_COUNT)
333 {
Brandon Wyman3343e822017-11-03 16:54:11 -0500334 faultFound = true;
335
Brandon Wyman593d24f2017-10-13 18:15:23 -0500336 util::NamesValues nv;
337 nv.add("STATUS_WORD", statusWord);
338 captureCmd(nv, STATUS_INPUT, Type::Debug);
339 auto status0Vout = pmbusIntf.insertPageNum(STATUS_VOUT, 0);
340 captureCmd(nv, status0Vout, Type::Debug);
341 captureCmd(nv, STATUS_IOUT, Type::Debug);
342 captureCmd(nv, STATUS_MFR, Type::Debug);
Brandon Wyman603cc002017-08-28 18:17:58 -0500343
Brandon Wyman593d24f2017-10-13 18:15:23 -0500344 using metadata = org::open_power::Witherspoon::Fault::
345 PowerSupplyShouldBeOn;
Brandon Wyman603cc002017-08-28 18:17:58 -0500346
Brandon Wyman593d24f2017-10-13 18:15:23 -0500347 // A power supply is OFF (or pgood low) but should be on.
348 report<PowerSupplyShouldBeOn>(
349 metadata::RAW_STATUS(nv.get().c_str()),
350 metadata::CALLOUT_INVENTORY_PATH(
351 inventoryPath.c_str()));
352 }
Brandon Wyman603cc002017-08-28 18:17:58 -0500353 }
354
355}
356
357void PowerSupply::checkCurrentOutOverCurrentFault(const uint16_t statusWord)
358{
359 using namespace witherspoon::pmbus;
360
Brandon Wymandd61be42017-11-07 18:38:54 -0600361 if (outputOCFault < FAULT_COUNT)
Brandon Wyman603cc002017-08-28 18:17:58 -0500362 {
Brandon Wymandd61be42017-11-07 18:38:54 -0600363 // Check for an output overcurrent fault.
364 if ((statusWord & status_word::IOUT_OC_FAULT))
365 {
366 outputOCFault++;
367 }
368 else
369 {
370 if (outputOCFault > 0)
371 {
372 outputOCFault = 0;
373 }
374 }
Brandon Wyman603cc002017-08-28 18:17:58 -0500375
Brandon Wymandd61be42017-11-07 18:38:54 -0600376 if (outputOCFault >= FAULT_COUNT)
377 {
378 util::NamesValues nv;
379 nv.add("STATUS_WORD", statusWord);
380 captureCmd(nv, STATUS_INPUT, Type::Debug);
381 auto status0Vout = pmbusIntf.insertPageNum(STATUS_VOUT, 0);
382 captureCmd(nv, status0Vout, Type::Debug);
383 captureCmd(nv, STATUS_IOUT, Type::Debug);
384 captureCmd(nv, STATUS_MFR, Type::Debug);
Brandon Wyman603cc002017-08-28 18:17:58 -0500385
Brandon Wymandd61be42017-11-07 18:38:54 -0600386 using metadata = org::open_power::Witherspoon::Fault::
387 PowerSupplyOutputOvercurrent;
Brandon Wyman603cc002017-08-28 18:17:58 -0500388
Brandon Wymandd61be42017-11-07 18:38:54 -0600389 report<PowerSupplyOutputOvercurrent>(
390 metadata::RAW_STATUS(nv.get().c_str()),
391 metadata::CALLOUT_INVENTORY_PATH(inventoryPath.c_str()));
392
393 faultFound = true;
394 }
Brandon Wyman603cc002017-08-28 18:17:58 -0500395 }
396}
397
Brandon Wymanab05c072017-08-30 18:26:41 -0500398void PowerSupply::checkOutputOvervoltageFault(const uint16_t statusWord)
399{
400 using namespace witherspoon::pmbus;
401
Brandon Wyman2ab319b2017-11-08 17:34:59 -0600402 if (outputOVFault < FAULT_COUNT)
Brandon Wymanab05c072017-08-30 18:26:41 -0500403 {
Brandon Wyman2ab319b2017-11-08 17:34:59 -0600404 // Check for an output overvoltage fault.
405 if (statusWord & status_word::VOUT_OV_FAULT)
406 {
407 outputOVFault++;
408 }
409 else
410 {
411 if (outputOVFault > 0)
412 {
413 outputOVFault = 0;
414 }
415 }
Brandon Wymanab05c072017-08-30 18:26:41 -0500416
Brandon Wyman2ab319b2017-11-08 17:34:59 -0600417 if (outputOVFault >= FAULT_COUNT)
418 {
419 util::NamesValues nv;
420 nv.add("STATUS_WORD", statusWord);
421 captureCmd(nv, STATUS_INPUT, Type::Debug);
422 auto status0Vout = pmbusIntf.insertPageNum(STATUS_VOUT, 0);
423 captureCmd(nv, status0Vout, Type::Debug);
424 captureCmd(nv, STATUS_IOUT, Type::Debug);
425 captureCmd(nv, STATUS_MFR, Type::Debug);
Brandon Wymanab05c072017-08-30 18:26:41 -0500426
Brandon Wyman2ab319b2017-11-08 17:34:59 -0600427 using metadata = org::open_power::Witherspoon::Fault::
428 PowerSupplyOutputOvervoltage;
Brandon Wymanab05c072017-08-30 18:26:41 -0500429
Brandon Wyman2ab319b2017-11-08 17:34:59 -0600430 report<PowerSupplyOutputOvervoltage>(
431 metadata::RAW_STATUS(nv.get().c_str()),
432 metadata::CALLOUT_INVENTORY_PATH(inventoryPath.c_str()));
433
434 faultFound = true;
435 }
Brandon Wymanab05c072017-08-30 18:26:41 -0500436 }
437}
438
Brandon Wyman12661f12017-08-31 15:28:21 -0500439void PowerSupply::checkFanFault(const uint16_t statusWord)
440{
441 using namespace witherspoon::pmbus;
442
Brandon Wymanba255532017-11-08 17:44:10 -0600443 if (fanFault < FAULT_COUNT)
Brandon Wyman12661f12017-08-31 15:28:21 -0500444 {
Brandon Wymanba255532017-11-08 17:44:10 -0600445 // Check for a fan fault or warning condition
446 if (statusWord & status_word::FAN_FAULT)
447 {
448 fanFault++;
449 }
450 else
451 {
452 if (fanFault > 0)
453 {
454 fanFault = 0;
455 }
456 }
Brandon Wyman12661f12017-08-31 15:28:21 -0500457
Brandon Wymanba255532017-11-08 17:44:10 -0600458 if (fanFault >= FAULT_COUNT)
459 {
460 util::NamesValues nv;
461 nv.add("STATUS_WORD", statusWord);
462 captureCmd(nv, STATUS_MFR, Type::Debug);
463 captureCmd(nv, STATUS_TEMPERATURE, Type::Debug);
464 captureCmd(nv, STATUS_FANS_1_2, Type::Debug);
Brandon Wyman12661f12017-08-31 15:28:21 -0500465
Brandon Wymanba255532017-11-08 17:44:10 -0600466 using metadata = org::open_power::Witherspoon::Fault::
467 PowerSupplyFanFault;
Brandon Wyman12661f12017-08-31 15:28:21 -0500468
Brandon Wymanba255532017-11-08 17:44:10 -0600469 report<PowerSupplyFanFault>(
470 metadata::RAW_STATUS(nv.get().c_str()),
471 metadata::CALLOUT_INVENTORY_PATH(inventoryPath.c_str()));
472
473 faultFound = true;
474 }
Brandon Wyman12661f12017-08-31 15:28:21 -0500475 }
476}
477
Brandon Wyman875b3632017-09-13 18:46:03 -0500478void PowerSupply::checkTemperatureFault(const uint16_t statusWord)
479{
480 using namespace witherspoon::pmbus;
481
482 // Due to how the PMBus core device driver sends a clear faults command
483 // the bit in STATUS_WORD will likely be cleared when we attempt to examine
484 // it for a Thermal Fault or Warning. So, check the STATUS_WORD and the
485 // STATUS_TEMPERATURE bits. If either indicates a fault, proceed with
486 // logging the over-temperature condition.
487 std::uint8_t statusTemperature = 0;
488 statusTemperature = pmbusIntf.read(STATUS_TEMPERATURE, Type::Debug);
Brandon Wyman50044ea2017-11-08 17:58:56 -0600489 if (temperatureFault < FAULT_COUNT)
Brandon Wyman875b3632017-09-13 18:46:03 -0500490 {
Brandon Wyman50044ea2017-11-08 17:58:56 -0600491 if ((statusWord & status_word::TEMPERATURE_FAULT_WARN) ||
492 (statusTemperature & status_temperature::OT_FAULT))
493 {
494 temperatureFault++;
495 }
496 else
497 {
498 if (temperatureFault > 0)
499 {
500 temperatureFault = 0;
501 }
502 }
Brandon Wyman875b3632017-09-13 18:46:03 -0500503
Brandon Wyman50044ea2017-11-08 17:58:56 -0600504 if (temperatureFault >= FAULT_COUNT)
505 {
506 // The power supply has had an over-temperature condition.
507 // This may not result in a shutdown if experienced for a short
508 // duration.
509 // This should not occur under normal conditions.
510 // The power supply may be faulty, or the paired supply may be
511 // putting out less current.
512 // Capture command responses with potentially relevant information,
513 // and call out the power supply reporting the condition.
514 util::NamesValues nv;
515 nv.add("STATUS_WORD", statusWord);
516 captureCmd(nv, STATUS_MFR, Type::Debug);
517 captureCmd(nv, STATUS_IOUT, Type::Debug);
518 nv.add("STATUS_TEMPERATURE", statusTemperature);
519 captureCmd(nv, STATUS_FANS_1_2, Type::Debug);
Brandon Wyman875b3632017-09-13 18:46:03 -0500520
Brandon Wyman50044ea2017-11-08 17:58:56 -0600521 using metadata = org::open_power::Witherspoon::Fault::
522 PowerSupplyTemperatureFault;
Brandon Wyman875b3632017-09-13 18:46:03 -0500523
Brandon Wyman50044ea2017-11-08 17:58:56 -0600524 report<PowerSupplyTemperatureFault>(
525 metadata::RAW_STATUS(nv.get().c_str()),
526 metadata::CALLOUT_INVENTORY_PATH(inventoryPath.c_str()));
527
528 faultFound = true;
529 }
Brandon Wyman875b3632017-09-13 18:46:03 -0500530 }
531}
532
Brandon Wyman1db9a9e2017-07-26 18:50:22 -0500533void PowerSupply::clearFaults()
534{
Brandon Wymane4af9802017-11-13 15:58:33 -0600535 readFail = 0;
Brandon Wyman6ccce0b2017-10-26 15:13:10 -0500536 readFailLogged = false;
Brandon Wyman6ccce0b2017-10-26 15:13:10 -0500537 inputFault = false;
538 powerOnFault = 0;
Brandon Wymandd61be42017-11-07 18:38:54 -0600539 outputOCFault = 0;
Brandon Wyman2ab319b2017-11-08 17:34:59 -0600540 outputOVFault = 0;
Brandon Wymanba255532017-11-08 17:44:10 -0600541 fanFault = 0;
Brandon Wyman50044ea2017-11-08 17:58:56 -0600542 temperatureFault = 0;
Brandon Wyman3343e822017-11-03 16:54:11 -0500543 faultFound = false;
Brandon Wyman6ccce0b2017-10-26 15:13:10 -0500544
Brandon Wyman1db9a9e2017-07-26 18:50:22 -0500545 return;
546}
547
Brandon Wyman24e422f2017-07-25 19:40:14 -0500548}
549}
550}