Matt Spinler | b54357f | 2017-08-21 14:38:54 -0500 | [diff] [blame] | 1 | /** |
| 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 | */ |
| 16 | #include <map> |
| 17 | #include <memory> |
| 18 | #include <phosphor-logging/elog.hpp> |
| 19 | #include <phosphor-logging/log.hpp> |
| 20 | #include <elog-errors.hpp> |
Brandon Wyman | e0eb45c | 2017-10-06 12:58:42 -0500 | [diff] [blame] | 21 | #include <org/open_power/Witherspoon/Fault/error.hpp> |
Matt Spinler | ceacf94 | 2017-10-05 13:55:02 -0500 | [diff] [blame] | 22 | #include <xyz/openbmc_project/Common/Device/error.hpp> |
Matt Spinler | e7e432b | 2017-08-21 15:01:40 -0500 | [diff] [blame] | 23 | #include "names_values.hpp" |
Matt Spinler | b54357f | 2017-08-21 14:38:54 -0500 | [diff] [blame] | 24 | #include "ucd90160.hpp" |
Matt Spinler | a826965 | 2017-09-19 15:13:28 -0500 | [diff] [blame] | 25 | #include "utility.hpp" |
Matt Spinler | b54357f | 2017-08-21 14:38:54 -0500 | [diff] [blame] | 26 | |
| 27 | namespace witherspoon |
| 28 | { |
| 29 | namespace power |
| 30 | { |
| 31 | |
| 32 | using namespace std::string_literals; |
| 33 | |
Matt Spinler | e7e432b | 2017-08-21 15:01:40 -0500 | [diff] [blame] | 34 | const auto MFR_STATUS = "mfr_status"s; |
Matt Spinler | 1e36569 | 2017-08-21 14:43:55 -0500 | [diff] [blame] | 35 | |
Matt Spinler | b54357f | 2017-08-21 14:38:54 -0500 | [diff] [blame] | 36 | const auto DEVICE_NAME = "UCD90160"s; |
| 37 | const auto DRIVER_NAME = "ucd9000"s; |
Matt Spinler | e7e432b | 2017-08-21 15:01:40 -0500 | [diff] [blame] | 38 | constexpr auto NUM_PAGES = 16; |
Matt Spinler | b54357f | 2017-08-21 14:38:54 -0500 | [diff] [blame] | 39 | |
Matt Spinler | 110b284 | 2017-08-21 15:23:27 -0500 | [diff] [blame] | 40 | namespace fs = std::experimental::filesystem; |
Matt Spinler | d998b73 | 2017-08-21 15:35:54 -0500 | [diff] [blame] | 41 | using namespace gpio; |
Matt Spinler | b54357f | 2017-08-21 14:38:54 -0500 | [diff] [blame] | 42 | using namespace pmbus; |
| 43 | using namespace phosphor::logging; |
Matt Spinler | ceacf94 | 2017-10-05 13:55:02 -0500 | [diff] [blame] | 44 | |
| 45 | namespace device_error = sdbusplus::xyz::openbmc_project:: |
| 46 | Common::Device::Error; |
| 47 | namespace power_error = sdbusplus::org::open_power:: |
| 48 | Witherspoon::Fault::Error; |
Matt Spinler | b54357f | 2017-08-21 14:38:54 -0500 | [diff] [blame] | 49 | |
Matt Spinler | a826965 | 2017-09-19 15:13:28 -0500 | [diff] [blame] | 50 | UCD90160::UCD90160(size_t instance, sdbusplus::bus::bus& bus) : |
Matt Spinler | fcd4a71 | 2017-09-19 10:45:07 -0500 | [diff] [blame] | 51 | Device(DEVICE_NAME, instance), |
| 52 | interface(std::get<ucd90160::pathField>( |
| 53 | deviceMap.find(instance)->second), |
| 54 | DRIVER_NAME, |
| 55 | instance), |
Matt Spinler | a826965 | 2017-09-19 15:13:28 -0500 | [diff] [blame] | 56 | gpioDevice(findGPIODevice(interface.path())), |
| 57 | bus(bus) |
Matt Spinler | b54357f | 2017-08-21 14:38:54 -0500 | [diff] [blame] | 58 | { |
| 59 | } |
| 60 | |
| 61 | void UCD90160::onFailure() |
| 62 | { |
| 63 | try |
| 64 | { |
| 65 | auto voutError = checkVOUTFaults(); |
| 66 | |
| 67 | auto pgoodError = checkPGOODFaults(false); |
| 68 | |
| 69 | //Not a voltage or PGOOD fault, but we know something |
| 70 | //failed so still create an error log. |
| 71 | if (!voutError && !pgoodError) |
| 72 | { |
| 73 | createPowerFaultLog(); |
| 74 | } |
| 75 | } |
Matt Spinler | ceacf94 | 2017-10-05 13:55:02 -0500 | [diff] [blame] | 76 | catch (device_error::ReadFailure& e) |
Matt Spinler | b54357f | 2017-08-21 14:38:54 -0500 | [diff] [blame] | 77 | { |
| 78 | if (!accessError) |
| 79 | { |
Matt Spinler | ceacf94 | 2017-10-05 13:55:02 -0500 | [diff] [blame] | 80 | commit<device_error::ReadFailure>(); |
Matt Spinler | b54357f | 2017-08-21 14:38:54 -0500 | [diff] [blame] | 81 | accessError = true; |
| 82 | } |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | void UCD90160::analyze() |
| 87 | { |
| 88 | try |
| 89 | { |
| 90 | //Note: Voltage faults are always fatal, so they just |
| 91 | //need to be analyzed in onFailure(). |
| 92 | |
| 93 | checkPGOODFaults(true); |
| 94 | } |
Matt Spinler | ceacf94 | 2017-10-05 13:55:02 -0500 | [diff] [blame] | 95 | catch (device_error::ReadFailure& e) |
Matt Spinler | b54357f | 2017-08-21 14:38:54 -0500 | [diff] [blame] | 96 | { |
| 97 | if (!accessError) |
| 98 | { |
Matt Spinler | ceacf94 | 2017-10-05 13:55:02 -0500 | [diff] [blame] | 99 | commit<device_error::ReadFailure>(); |
Matt Spinler | b54357f | 2017-08-21 14:38:54 -0500 | [diff] [blame] | 100 | accessError = true; |
| 101 | } |
| 102 | } |
| 103 | } |
| 104 | |
Matt Spinler | e7e432b | 2017-08-21 15:01:40 -0500 | [diff] [blame] | 105 | uint16_t UCD90160::readStatusWord() |
| 106 | { |
| 107 | return interface.read(STATUS_WORD, Type::Debug); |
| 108 | } |
| 109 | |
| 110 | uint32_t UCD90160::readMFRStatus() |
| 111 | { |
| 112 | return interface.read(MFR_STATUS, Type::DeviceDebug); |
| 113 | } |
| 114 | |
Matt Spinler | b54357f | 2017-08-21 14:38:54 -0500 | [diff] [blame] | 115 | bool UCD90160::checkVOUTFaults() |
| 116 | { |
Matt Spinler | e7e432b | 2017-08-21 15:01:40 -0500 | [diff] [blame] | 117 | bool errorCreated = false; |
| 118 | auto statusWord = readStatusWord(); |
| 119 | |
| 120 | //The status_word register has a summary bit to tell us |
| 121 | //if each page even needs to be checked |
| 122 | if (!(statusWord & status_word::VOUT_FAULT)) |
| 123 | { |
| 124 | return errorCreated; |
| 125 | } |
| 126 | |
| 127 | for (size_t page = 0; page < NUM_PAGES; page++) |
| 128 | { |
| 129 | if (isVoutFaultLogged(page)) |
| 130 | { |
| 131 | continue; |
| 132 | } |
| 133 | |
| 134 | auto statusVout = interface.insertPageNum(STATUS_VOUT, page); |
| 135 | uint8_t vout = interface.read(statusVout, Type::Debug); |
| 136 | |
| 137 | //Any bit on is an error |
| 138 | if (vout) |
| 139 | { |
| 140 | auto& railNames = std::get<ucd90160::railNamesField>( |
| 141 | deviceMap.find(getInstance())->second); |
| 142 | auto railName = railNames.at(page); |
| 143 | |
| 144 | util::NamesValues nv; |
| 145 | nv.add("STATUS_WORD", statusWord); |
| 146 | nv.add("STATUS_VOUT", vout); |
| 147 | nv.add("MFR_STATUS", readMFRStatus()); |
| 148 | |
Brandon Wyman | e0eb45c | 2017-10-06 12:58:42 -0500 | [diff] [blame] | 149 | using metadata = org::open_power::Witherspoon::Fault:: |
Matt Spinler | e7e432b | 2017-08-21 15:01:40 -0500 | [diff] [blame] | 150 | PowerSequencerVoltageFault; |
| 151 | |
Matt Spinler | ceacf94 | 2017-10-05 13:55:02 -0500 | [diff] [blame] | 152 | report<power_error::PowerSequencerVoltageFault>( |
Matt Spinler | e7e432b | 2017-08-21 15:01:40 -0500 | [diff] [blame] | 153 | metadata::RAIL(page), |
| 154 | metadata::RAIL_NAME(railName.c_str()), |
| 155 | metadata::RAW_STATUS(nv.get().c_str())); |
| 156 | |
| 157 | setVoutFaultLogged(page); |
| 158 | errorCreated = true; |
| 159 | } |
| 160 | } |
| 161 | |
| 162 | return errorCreated; |
Matt Spinler | b54357f | 2017-08-21 14:38:54 -0500 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | bool UCD90160::checkPGOODFaults(bool polling) |
| 166 | { |
Matt Spinler | d998b73 | 2017-08-21 15:35:54 -0500 | [diff] [blame] | 167 | bool errorCreated = false; |
| 168 | |
| 169 | //While PGOOD faults could show up in MFR_STATUS (and we could then |
| 170 | //check the summary bit in STATUS_WORD first), they are edge triggered, |
| 171 | //and as the device driver sends a clear faults command every time we |
| 172 | //do a read, we will never see them. So, we'll have to just read the |
| 173 | //real time GPI status GPIO. |
| 174 | |
| 175 | //Check only the GPIs configured on this system. |
| 176 | auto& gpiConfigs = std::get<ucd90160::gpiConfigField>( |
| 177 | deviceMap.find(getInstance())->second); |
| 178 | |
| 179 | for (const auto& gpiConfig : gpiConfigs) |
| 180 | { |
| 181 | auto gpiNum = std::get<ucd90160::gpiNumField>(gpiConfig); |
| 182 | auto doPoll = std::get<ucd90160::pollField>(gpiConfig); |
| 183 | |
| 184 | //Can skip this one if there is already an error on this input, |
| 185 | //or we are polling and these inputs don't need to be polled |
| 186 | //(because errors on them are fatal). |
| 187 | if (isPGOODFaultLogged(gpiNum) || (polling && !doPoll)) |
| 188 | { |
| 189 | continue; |
| 190 | } |
| 191 | |
| 192 | //The real time status is read via the pin ID |
| 193 | auto pinID = std::get<ucd90160::pinIDField>(gpiConfig); |
| 194 | auto gpio = gpios.find(pinID); |
| 195 | Value gpiStatus; |
| 196 | |
| 197 | try |
| 198 | { |
| 199 | //The first time through, create the GPIO objects |
| 200 | if (gpio == gpios.end()) |
| 201 | { |
| 202 | gpios.emplace( |
| 203 | pinID, |
| 204 | std::make_unique<GPIO>( |
| 205 | gpioDevice, pinID, Direction::input)); |
| 206 | gpio = gpios.find(pinID); |
| 207 | } |
| 208 | |
| 209 | gpiStatus = gpio->second->read(); |
| 210 | } |
| 211 | catch (std::exception& e) |
| 212 | { |
| 213 | if (!accessError) |
| 214 | { |
| 215 | log<level::ERR>(e.what()); |
| 216 | accessError = true; |
| 217 | } |
| 218 | continue; |
| 219 | } |
| 220 | |
| 221 | if (gpiStatus == Value::low) |
| 222 | { |
Matt Spinler | 8bc1283 | 2017-09-19 11:17:54 -0500 | [diff] [blame] | 223 | //There may be some extra analysis we can do to narrow the |
| 224 | //error down further. Note that finding an error here won't |
| 225 | //prevent us from checking this GPI again. |
| 226 | errorCreated = doExtraAnalysis(gpiConfig); |
| 227 | |
| 228 | if (errorCreated) |
| 229 | { |
| 230 | continue; |
| 231 | } |
| 232 | |
Matt Spinler | d998b73 | 2017-08-21 15:35:54 -0500 | [diff] [blame] | 233 | auto& gpiName = std::get<ucd90160::gpiNameField>(gpiConfig); |
| 234 | auto status = (gpiStatus == Value::low) ? 0 : 1; |
| 235 | |
| 236 | util::NamesValues nv; |
| 237 | nv.add("STATUS_WORD", readStatusWord()); |
| 238 | nv.add("MFR_STATUS", readMFRStatus()); |
| 239 | nv.add("INPUT_STATUS", status); |
| 240 | |
Brandon Wyman | e0eb45c | 2017-10-06 12:58:42 -0500 | [diff] [blame] | 241 | using metadata = org::open_power::Witherspoon::Fault:: |
Matt Spinler | d998b73 | 2017-08-21 15:35:54 -0500 | [diff] [blame] | 242 | PowerSequencerPGOODFault; |
| 243 | |
Matt Spinler | ceacf94 | 2017-10-05 13:55:02 -0500 | [diff] [blame] | 244 | report<power_error::PowerSequencerPGOODFault>( |
Matt Spinler | d998b73 | 2017-08-21 15:35:54 -0500 | [diff] [blame] | 245 | metadata::INPUT_NUM(gpiNum), |
| 246 | metadata::INPUT_NAME(gpiName.c_str()), |
| 247 | metadata::RAW_STATUS(nv.get().c_str())); |
| 248 | |
| 249 | setPGOODFaultLogged(gpiNum); |
| 250 | errorCreated = true; |
| 251 | } |
| 252 | } |
| 253 | |
| 254 | return errorCreated; |
Matt Spinler | b54357f | 2017-08-21 14:38:54 -0500 | [diff] [blame] | 255 | } |
| 256 | |
| 257 | void UCD90160::createPowerFaultLog() |
| 258 | { |
Matt Spinler | 9efb308 | 2017-08-21 15:43:43 -0500 | [diff] [blame] | 259 | util::NamesValues nv; |
| 260 | nv.add("STATUS_WORD", readStatusWord()); |
| 261 | nv.add("MFR_STATUS", readMFRStatus()); |
Matt Spinler | b54357f | 2017-08-21 14:38:54 -0500 | [diff] [blame] | 262 | |
Brandon Wyman | e0eb45c | 2017-10-06 12:58:42 -0500 | [diff] [blame] | 263 | using metadata = org::open_power::Witherspoon::Fault:: |
Matt Spinler | 9efb308 | 2017-08-21 15:43:43 -0500 | [diff] [blame] | 264 | PowerSequencerFault; |
| 265 | |
Matt Spinler | ceacf94 | 2017-10-05 13:55:02 -0500 | [diff] [blame] | 266 | report<power_error::PowerSequencerFault>( |
Matt Spinler | 9efb308 | 2017-08-21 15:43:43 -0500 | [diff] [blame] | 267 | metadata::RAW_STATUS(nv.get().c_str())); |
Matt Spinler | b54357f | 2017-08-21 14:38:54 -0500 | [diff] [blame] | 268 | } |
| 269 | |
Matt Spinler | fcd4a71 | 2017-09-19 10:45:07 -0500 | [diff] [blame] | 270 | fs::path UCD90160::findGPIODevice(const fs::path& path) |
Matt Spinler | 110b284 | 2017-08-21 15:23:27 -0500 | [diff] [blame] | 271 | { |
Matt Spinler | fcd4a71 | 2017-09-19 10:45:07 -0500 | [diff] [blame] | 272 | fs::path gpioDevicePath; |
Matt Spinler | 110b284 | 2017-08-21 15:23:27 -0500 | [diff] [blame] | 273 | |
| 274 | //In the driver directory, look for a subdirectory |
| 275 | //named gpiochipX, where X is some number. Then |
| 276 | //we'll access the GPIO at /dev/gpiochipX. |
| 277 | if (fs::is_directory(path)) |
| 278 | { |
| 279 | for (auto& f : fs::directory_iterator(path)) |
| 280 | { |
| 281 | if (f.path().filename().string().find("gpiochip") != |
| 282 | std::string::npos) |
| 283 | { |
Matt Spinler | fcd4a71 | 2017-09-19 10:45:07 -0500 | [diff] [blame] | 284 | gpioDevicePath = "/dev" / f.path().filename(); |
Matt Spinler | 110b284 | 2017-08-21 15:23:27 -0500 | [diff] [blame] | 285 | break; |
| 286 | } |
| 287 | } |
| 288 | } |
| 289 | |
Matt Spinler | fcd4a71 | 2017-09-19 10:45:07 -0500 | [diff] [blame] | 290 | if (gpioDevicePath.empty()) |
Matt Spinler | 110b284 | 2017-08-21 15:23:27 -0500 | [diff] [blame] | 291 | { |
Matt Spinler | fcd4a71 | 2017-09-19 10:45:07 -0500 | [diff] [blame] | 292 | log<level::ERR>("Could not find GPIO device path", |
Matt Spinler | 110b284 | 2017-08-21 15:23:27 -0500 | [diff] [blame] | 293 | entry("BASE_PATH=%s", path.c_str())); |
| 294 | } |
Matt Spinler | fcd4a71 | 2017-09-19 10:45:07 -0500 | [diff] [blame] | 295 | |
| 296 | return gpioDevicePath; |
Matt Spinler | 110b284 | 2017-08-21 15:23:27 -0500 | [diff] [blame] | 297 | } |
| 298 | |
Matt Spinler | 8bc1283 | 2017-09-19 11:17:54 -0500 | [diff] [blame] | 299 | bool UCD90160::doExtraAnalysis(const ucd90160::GPIConfig& config) |
| 300 | { |
| 301 | |
| 302 | auto type = std::get<ucd90160::extraAnalysisField>(config); |
| 303 | if (type == ucd90160::extraAnalysisType::none) |
| 304 | { |
| 305 | return false; |
| 306 | } |
| 307 | |
| 308 | //Currently the only extra analysis to do is to check other GPIOs. |
| 309 | return doGPIOAnalysis(type); |
| 310 | } |
| 311 | |
| 312 | bool UCD90160::doGPIOAnalysis(ucd90160::extraAnalysisType type) |
| 313 | { |
| 314 | bool errorFound = false; |
Matt Spinler | a826965 | 2017-09-19 15:13:28 -0500 | [diff] [blame] | 315 | bool shutdown = false; |
Matt Spinler | 8bc1283 | 2017-09-19 11:17:54 -0500 | [diff] [blame] | 316 | |
| 317 | const auto& analysisConfig = std::get<ucd90160::gpioAnalysisField>( |
| 318 | deviceMap.find(getInstance())->second); |
| 319 | |
| 320 | auto gpioConfig = analysisConfig.find(type); |
| 321 | if (gpioConfig == analysisConfig.end()) |
| 322 | { |
| 323 | return errorFound; |
| 324 | } |
| 325 | |
| 326 | auto path = std::get<ucd90160::gpioDevicePathField>( |
| 327 | gpioConfig->second); |
| 328 | |
| 329 | //The /dev/gpiochipX device |
| 330 | auto device = findGPIODevice(path); |
| 331 | |
| 332 | //The GPIO value of the fault condition |
| 333 | auto polarity = std::get<ucd90160::gpioPolarityField>( |
| 334 | gpioConfig->second); |
| 335 | |
| 336 | //The GPIOs to check |
| 337 | auto& gpios = std::get<ucd90160::gpioDefinitionField>( |
| 338 | gpioConfig->second); |
| 339 | |
| 340 | for (const auto& gpio : gpios) |
| 341 | { |
| 342 | gpio::Value value; |
| 343 | |
| 344 | try |
| 345 | { |
| 346 | GPIO g{device, |
| 347 | std::get<ucd90160::gpioNumField>(gpio), |
| 348 | Direction::input}; |
| 349 | |
| 350 | value = g.read(); |
| 351 | } |
| 352 | catch (std::exception& e) |
| 353 | { |
| 354 | if (!gpioAccessError) |
| 355 | { |
| 356 | //GPIO only throws InternalErrors - not worth committing. |
| 357 | log<level::ERR>( |
| 358 | "GPIO read failed while analyzing a power fault", |
| 359 | entry("CHIP_PATH=%s", path.c_str())); |
| 360 | |
| 361 | gpioAccessError = true; |
| 362 | } |
| 363 | continue; |
| 364 | } |
| 365 | |
| 366 | if (value == polarity) |
| 367 | { |
| 368 | errorFound = true; |
| 369 | |
| 370 | auto part = std::get<ucd90160::gpioCalloutField>(gpio); |
| 371 | PartCallout callout{type, part}; |
| 372 | |
| 373 | if (isPartCalledOut(callout)) |
| 374 | { |
| 375 | continue; |
| 376 | } |
| 377 | |
| 378 | //Look up and call the error creation function |
| 379 | auto logError = std::get<ucd90160::errorFunctionField>( |
| 380 | gpioConfig->second); |
| 381 | |
| 382 | logError(*this, part); |
| 383 | |
| 384 | //Save the part callout so we don't call it out again |
| 385 | setPartCallout(callout); |
Matt Spinler | a826965 | 2017-09-19 15:13:28 -0500 | [diff] [blame] | 386 | |
| 387 | //Some errors (like overtemps) require a shutdown |
| 388 | auto actions = static_cast<uint32_t>( |
| 389 | std::get<ucd90160::optionFlagsField>(gpioConfig->second)); |
| 390 | |
| 391 | if (actions & static_cast<decltype(actions)>( |
| 392 | ucd90160::optionFlags::shutdownOnFault)) |
| 393 | { |
| 394 | shutdown = true; |
| 395 | } |
Matt Spinler | 8bc1283 | 2017-09-19 11:17:54 -0500 | [diff] [blame] | 396 | } |
| 397 | } |
| 398 | |
Matt Spinler | a826965 | 2017-09-19 15:13:28 -0500 | [diff] [blame] | 399 | if (shutdown) |
| 400 | { |
Matt Spinler | 882ce95 | 2017-10-05 16:12:41 -0500 | [diff] [blame] | 401 | //Will be replaced with a GPU specific error in a future commit |
| 402 | util::powerOff<power_error::Shutdown>(bus); |
Matt Spinler | a826965 | 2017-09-19 15:13:28 -0500 | [diff] [blame] | 403 | } |
| 404 | |
Matt Spinler | 8bc1283 | 2017-09-19 11:17:54 -0500 | [diff] [blame] | 405 | return errorFound; |
| 406 | } |
| 407 | |
Matt Spinler | 7b14db2 | 2017-09-19 10:57:54 -0500 | [diff] [blame] | 408 | void UCD90160::gpuPGOODError(const std::string& callout) |
| 409 | { |
| 410 | util::NamesValues nv; |
| 411 | nv.add("STATUS_WORD", readStatusWord()); |
| 412 | nv.add("MFR_STATUS", readMFRStatus()); |
| 413 | |
Brandon Wyman | e0eb45c | 2017-10-06 12:58:42 -0500 | [diff] [blame] | 414 | using metadata = org::open_power::Witherspoon::Fault::GPUPowerFault; |
Matt Spinler | 7b14db2 | 2017-09-19 10:57:54 -0500 | [diff] [blame] | 415 | |
Matt Spinler | ceacf94 | 2017-10-05 13:55:02 -0500 | [diff] [blame] | 416 | report<power_error::GPUPowerFault>( |
Matt Spinler | 7b14db2 | 2017-09-19 10:57:54 -0500 | [diff] [blame] | 417 | metadata::RAW_STATUS(nv.get().c_str()), |
| 418 | metadata::GPU(callout.c_str())); |
| 419 | } |
| 420 | |
| 421 | void UCD90160::gpuOverTempError(const std::string& callout) |
| 422 | { |
| 423 | util::NamesValues nv; |
| 424 | nv.add("STATUS_WORD", readStatusWord()); |
| 425 | nv.add("MFR_STATUS", readMFRStatus()); |
| 426 | |
Brandon Wyman | e0eb45c | 2017-10-06 12:58:42 -0500 | [diff] [blame] | 427 | using metadata = org::open_power::Witherspoon::Fault::GPUOverTemp; |
Matt Spinler | 7b14db2 | 2017-09-19 10:57:54 -0500 | [diff] [blame] | 428 | |
Matt Spinler | ceacf94 | 2017-10-05 13:55:02 -0500 | [diff] [blame] | 429 | report<power_error::GPUOverTemp>( |
Matt Spinler | 7b14db2 | 2017-09-19 10:57:54 -0500 | [diff] [blame] | 430 | metadata::RAW_STATUS(nv.get().c_str()), |
| 431 | metadata::GPU(callout.c_str())); |
| 432 | } |
| 433 | |
Matt Spinler | b54357f | 2017-08-21 14:38:54 -0500 | [diff] [blame] | 434 | } |
| 435 | } |