Vishwanatha Subbanna | dfc7ec7 | 2017-09-07 18:18:01 +0530 | [diff] [blame] | 1 | #include "config.h" |
| 2 | |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 3 | #include "occ_manager.hpp" |
| 4 | |
| 5 | #include "i2c_occ.hpp" |
Chicago Duan | bb895cb | 2021-06-18 19:37:16 +0800 | [diff] [blame] | 6 | #include "occ_dbus.hpp" |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 7 | #include "utils.hpp" |
| 8 | |
Chicago Duan | bb895cb | 2021-06-18 19:37:16 +0800 | [diff] [blame] | 9 | #include <cmath> |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 10 | #include <experimental/filesystem> |
| 11 | #include <phosphor-logging/elog-errors.hpp> |
| 12 | #include <phosphor-logging/log.hpp> |
Chicago Duan | bb895cb | 2021-06-18 19:37:16 +0800 | [diff] [blame] | 13 | #include <regex> |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 14 | #include <xyz/openbmc_project/Common/error.hpp> |
| 15 | |
Vishwanatha Subbanna | dfc7ec7 | 2017-09-07 18:18:01 +0530 | [diff] [blame] | 16 | namespace open_power |
| 17 | { |
| 18 | namespace occ |
| 19 | { |
| 20 | |
Matt Spinler | 8b8abee | 2021-08-25 15:18:21 -0500 | [diff] [blame^] | 21 | constexpr uint32_t fruTypeNotAvailable = 0xFF; |
| 22 | |
Chris Cain | a8857c5 | 2021-01-27 11:53:05 -0600 | [diff] [blame] | 23 | using namespace phosphor::logging; |
| 24 | |
Vishwanatha Subbanna | dfc7ec7 | 2017-09-07 18:18:01 +0530 | [diff] [blame] | 25 | void Manager::findAndCreateObjects() |
| 26 | { |
Deepak Kodihalli | 370f06b | 2017-10-25 04:26:07 -0500 | [diff] [blame] | 27 | for (auto id = 0; id < MAX_CPUS; ++id) |
| 28 | { |
Deepak Kodihalli | 30417a1 | 2017-12-04 00:54:01 -0600 | [diff] [blame] | 29 | // Create one occ per cpu |
| 30 | auto occ = std::string(OCC_NAME) + std::to_string(id); |
| 31 | createObjects(occ); |
Vishwanatha Subbanna | dfc7ec7 | 2017-09-07 18:18:01 +0530 | [diff] [blame] | 32 | } |
| 33 | } |
| 34 | |
| 35 | int Manager::cpuCreated(sdbusplus::message::message& msg) |
| 36 | { |
| 37 | namespace fs = std::experimental::filesystem; |
| 38 | |
| 39 | sdbusplus::message::object_path o; |
| 40 | msg.read(o); |
| 41 | fs::path cpuPath(std::string(std::move(o))); |
| 42 | |
| 43 | auto name = cpuPath.filename().string(); |
| 44 | auto index = name.find(CPU_NAME); |
| 45 | name.replace(index, std::strlen(CPU_NAME), OCC_NAME); |
| 46 | |
| 47 | createObjects(name); |
| 48 | |
| 49 | return 0; |
| 50 | } |
| 51 | |
| 52 | void Manager::createObjects(const std::string& occ) |
| 53 | { |
| 54 | auto path = fs::path(OCC_CONTROL_ROOT) / occ; |
| 55 | |
| 56 | passThroughObjects.emplace_back( |
George Liu | f3b7514 | 2021-06-10 11:22:50 +0800 | [diff] [blame] | 57 | std::make_unique<PassThrough>(path.c_str())); |
Vishwanatha Subbanna | dfc7ec7 | 2017-09-07 18:18:01 +0530 | [diff] [blame] | 58 | |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 59 | statusObjects.emplace_back(std::make_unique<Status>( |
George Liu | f3b7514 | 2021-06-10 11:22:50 +0800 | [diff] [blame] | 60 | event, path.c_str(), *this, |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 61 | std::bind(std::mem_fn(&Manager::statusCallBack), this, |
Tom Joseph | 0032523 | 2020-07-29 17:51:48 +0530 | [diff] [blame] | 62 | std::placeholders::_1) |
| 63 | #ifdef PLDM |
| 64 | , |
| 65 | std::bind(std::mem_fn(&pldm::Interface::resetOCC), pldmHandle.get(), |
| 66 | std::placeholders::_1) |
| 67 | #endif |
| 68 | )); |
Vishwanatha Subbanna | dfc7ec7 | 2017-09-07 18:18:01 +0530 | [diff] [blame] | 69 | |
| 70 | // Create the power cap monitor object for master occ (0) |
| 71 | if (!pcap) |
| 72 | { |
| 73 | pcap = std::make_unique<open_power::occ::powercap::PowerCap>( |
George Liu | f3b7514 | 2021-06-10 11:22:50 +0800 | [diff] [blame] | 74 | *statusObjects.front()); |
Vishwanatha Subbanna | dfc7ec7 | 2017-09-07 18:18:01 +0530 | [diff] [blame] | 75 | } |
Chris Cain | 78e8601 | 2021-03-04 16:15:31 -0600 | [diff] [blame] | 76 | |
| 77 | #ifdef POWER10 |
| 78 | // Create the power mode monitor object for master occ (0) |
| 79 | if (!pmode) |
| 80 | { |
| 81 | pmode = std::make_unique<open_power::occ::powermode::PowerMode>( |
| 82 | *statusObjects.front()); |
| 83 | } |
| 84 | #endif |
Vishwanatha Subbanna | dfc7ec7 | 2017-09-07 18:18:01 +0530 | [diff] [blame] | 85 | } |
| 86 | |
| 87 | void Manager::statusCallBack(bool status) |
| 88 | { |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 89 | using InternalFailure = |
| 90 | sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure; |
Vishwanatha Subbanna | dfc7ec7 | 2017-09-07 18:18:01 +0530 | [diff] [blame] | 91 | |
| 92 | // At this time, it won't happen but keeping it |
| 93 | // here just in case something changes in the future |
| 94 | if ((activeCount == 0) && (!status)) |
| 95 | { |
| 96 | log<level::ERR>("Invalid update on OCCActive"); |
| 97 | elog<InternalFailure>(); |
| 98 | } |
| 99 | |
| 100 | activeCount += status ? 1 : -1; |
Eddie James | dae2d94 | 2017-12-20 10:50:03 -0600 | [diff] [blame] | 101 | |
| 102 | // Only start presence detection if all the OCCs are bound |
| 103 | if (activeCount == statusObjects.size()) |
| 104 | { |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 105 | for (auto& obj : statusObjects) |
Eddie James | dae2d94 | 2017-12-20 10:50:03 -0600 | [diff] [blame] | 106 | { |
| 107 | obj->addPresenceWatchMaster(); |
| 108 | } |
| 109 | } |
Chris Cain | a8857c5 | 2021-01-27 11:53:05 -0600 | [diff] [blame] | 110 | |
| 111 | if ((!_pollTimer->isEnabled()) && (activeCount > 0)) |
| 112 | { |
| 113 | log<level::INFO>(fmt::format("Manager::statusCallBack(): {} OCCs will " |
| 114 | "be polled every {} seconds", |
| 115 | activeCount, pollInterval) |
| 116 | .c_str()); |
| 117 | |
| 118 | // Send poll and start OCC poll timer |
| 119 | pollerTimerExpired(); |
| 120 | } |
| 121 | else if ((_pollTimer->isEnabled()) && (activeCount == 0)) |
| 122 | { |
| 123 | // Stop OCC poll timer |
| 124 | log<level::INFO>("Manager::statusCallBack(): OCCs are not running, " |
| 125 | "stopping poll timer"); |
| 126 | _pollTimer->setEnabled(false); |
| 127 | } |
Vishwanatha Subbanna | dfc7ec7 | 2017-09-07 18:18:01 +0530 | [diff] [blame] | 128 | } |
| 129 | |
| 130 | #ifdef I2C_OCC |
| 131 | void Manager::initStatusObjects() |
| 132 | { |
| 133 | // Make sure we have a valid path string |
| 134 | static_assert(sizeof(DEV_PATH) != 0); |
| 135 | |
| 136 | auto deviceNames = i2c_occ::getOccHwmonDevices(DEV_PATH); |
Lei YU | 41470e5 | 2017-11-30 16:03:50 +0800 | [diff] [blame] | 137 | auto occMasterName = deviceNames.front(); |
Vishwanatha Subbanna | dfc7ec7 | 2017-09-07 18:18:01 +0530 | [diff] [blame] | 138 | for (auto& name : deviceNames) |
| 139 | { |
| 140 | i2c_occ::i2cToDbus(name); |
Lei YU | b5259a1 | 2017-09-01 16:22:40 +0800 | [diff] [blame] | 141 | name = std::string(OCC_NAME) + '_' + name; |
Vishwanatha Subbanna | dfc7ec7 | 2017-09-07 18:18:01 +0530 | [diff] [blame] | 142 | auto path = fs::path(OCC_CONTROL_ROOT) / name; |
| 143 | statusObjects.emplace_back( |
George Liu | f3b7514 | 2021-06-10 11:22:50 +0800 | [diff] [blame] | 144 | std::make_unique<Status>(event, path.c_str(), *this)); |
Vishwanatha Subbanna | dfc7ec7 | 2017-09-07 18:18:01 +0530 | [diff] [blame] | 145 | } |
Lei YU | 41470e5 | 2017-11-30 16:03:50 +0800 | [diff] [blame] | 146 | // The first device is master occ |
| 147 | pcap = std::make_unique<open_power::occ::powercap::PowerCap>( |
George Liu | f3b7514 | 2021-06-10 11:22:50 +0800 | [diff] [blame] | 148 | *statusObjects.front(), occMasterName); |
Chris Cain | 78e8601 | 2021-03-04 16:15:31 -0600 | [diff] [blame] | 149 | #ifdef POWER10 |
| 150 | pmode = std::make_unique<open_power::occ::powermode::PowerMode>( |
| 151 | *statusObjects.front()); |
| 152 | #endif |
Vishwanatha Subbanna | dfc7ec7 | 2017-09-07 18:18:01 +0530 | [diff] [blame] | 153 | } |
| 154 | #endif |
| 155 | |
Tom Joseph | 815f9f5 | 2020-07-27 12:12:13 +0530 | [diff] [blame] | 156 | #ifdef PLDM |
| 157 | bool Manager::updateOCCActive(instanceID instance, bool status) |
| 158 | { |
| 159 | return (statusObjects[instance])->occActive(status); |
| 160 | } |
| 161 | #endif |
| 162 | |
Chris Cain | a8857c5 | 2021-01-27 11:53:05 -0600 | [diff] [blame] | 163 | void Manager::pollerTimerExpired() |
| 164 | { |
| 165 | if (activeCount == 0) |
| 166 | { |
| 167 | // No OCCs running, so poll timer will not be restarted |
| 168 | log<level::INFO>("Manager::pollerTimerExpire(): No OCCs running, poll " |
| 169 | "timer not restarted"); |
| 170 | } |
| 171 | |
| 172 | if (!_pollTimer) |
| 173 | { |
| 174 | log<level::ERR>( |
| 175 | "Manager::pollerTimerExpired() ERROR: Timer not defined"); |
| 176 | return; |
| 177 | } |
| 178 | |
| 179 | for (auto& obj : statusObjects) |
| 180 | { |
| 181 | // Read sysfs to force kernel to poll OCC |
| 182 | obj->readOccState(); |
Chicago Duan | bb895cb | 2021-06-18 19:37:16 +0800 | [diff] [blame] | 183 | |
| 184 | #ifdef READ_OCC_SENSORS |
| 185 | // Read occ sensor values |
| 186 | auto id = obj->getOccInstanceID(); |
| 187 | if (!obj->occActive()) |
| 188 | { |
| 189 | // Occ not activated |
| 190 | setSensorValueToNaN(id); |
| 191 | continue; |
| 192 | } |
| 193 | getSensorValues(id, obj->isMasterOcc()); |
| 194 | #endif |
Chris Cain | a8857c5 | 2021-01-27 11:53:05 -0600 | [diff] [blame] | 195 | } |
| 196 | |
| 197 | // Restart OCC poll timer |
| 198 | _pollTimer->restartOnce(std::chrono::seconds(pollInterval)); |
| 199 | } |
| 200 | |
Chicago Duan | bb895cb | 2021-06-18 19:37:16 +0800 | [diff] [blame] | 201 | #ifdef READ_OCC_SENSORS |
| 202 | void Manager::readTempSensors(const fs::path& path, uint32_t id) |
| 203 | { |
| 204 | const int open_errno = errno; |
| 205 | std::regex expr{"temp\\d+_label$"}; // Example: temp5_label |
| 206 | for (auto& file : fs::directory_iterator(path)) |
| 207 | { |
| 208 | if (!std::regex_search(file.path().string(), expr)) |
| 209 | { |
| 210 | continue; |
| 211 | } |
| 212 | std::ifstream fileOpen(file.path(), std::ios::in); |
| 213 | if (!fileOpen) |
| 214 | { |
| 215 | // If not able to read, OCC may be offline |
| 216 | log<level::DEBUG>( |
| 217 | fmt::format("readTempSensors: open failed(errno = {}) ", |
| 218 | open_errno) |
| 219 | .c_str()); |
| 220 | |
| 221 | continue; |
| 222 | } |
| 223 | std::string labelValue; |
| 224 | fileOpen >> labelValue; |
| 225 | fileOpen.close(); |
| 226 | |
| 227 | const std::string& tempLabel = "label"; |
| 228 | const std::string filePathString = file.path().string().substr( |
| 229 | 0, file.path().string().length() - tempLabel.length()); |
| 230 | std::ifstream fruTypeFile(filePathString + "fru_type", std::ios::in); |
| 231 | if (!fruTypeFile) |
| 232 | { |
| 233 | // If not able to read, OCC may be offline |
| 234 | log<level::DEBUG>( |
| 235 | fmt::format("readTempSensors: open failed(errno = {}) ", |
| 236 | open_errno) |
| 237 | .c_str()); |
| 238 | continue; |
| 239 | } |
| 240 | uint32_t fruTypeValue{0}; |
| 241 | fruTypeFile >> fruTypeValue; |
| 242 | fruTypeFile.close(); |
| 243 | |
| 244 | std::string sensorPath = |
| 245 | OCC_SENSORS_ROOT + std::string("/temperature/"); |
| 246 | |
| 247 | if (fruTypeValue == VRMVdd) |
| 248 | { |
| 249 | sensorPath.append("vrm_vdd" + std::to_string(id) + "_temp"); |
| 250 | } |
| 251 | else |
| 252 | { |
| 253 | auto sensorTypeID = |
| 254 | open_power::occ::utils::checkLabelValue(labelValue); |
| 255 | if (sensorTypeID == std::nullopt) |
| 256 | { |
| 257 | continue; |
| 258 | } |
| 259 | auto& [type, instanceID] = *sensorTypeID; |
| 260 | |
| 261 | if (type == OCC_DIMM_TEMP_SENSOR_TYPE) |
| 262 | { |
Matt Spinler | 8b8abee | 2021-08-25 15:18:21 -0500 | [diff] [blame^] | 263 | if (fruTypeValue == fruTypeNotAvailable) |
| 264 | { |
| 265 | // Not all DIMM related temps are available to read |
| 266 | // (no _input file in this case) |
| 267 | continue; |
| 268 | } |
Chicago Duan | bb895cb | 2021-06-18 19:37:16 +0800 | [diff] [blame] | 269 | auto iter = dimmTempSensorName.find(fruTypeValue); |
| 270 | if (iter == dimmTempSensorName.end()) |
| 271 | { |
| 272 | log<level::ERR>(fmt::format("readTempSensors: Fru type " |
| 273 | "error! fruTypeValue = {}) ", |
| 274 | fruTypeValue) |
| 275 | .c_str()); |
| 276 | continue; |
| 277 | } |
| 278 | |
| 279 | sensorPath.append("dimm" + std::to_string(instanceID) + |
| 280 | iter->second); |
| 281 | } |
| 282 | else if (type == OCC_CPU_TEMP_SENSOR_TYPE) |
| 283 | { |
| 284 | if (fruTypeValue != processorCore) |
| 285 | { |
| 286 | log<level::ERR>(fmt::format("readTempSensors: Fru type " |
| 287 | "error! fruTypeValue = {}) ", |
| 288 | fruTypeValue) |
| 289 | .c_str()); |
| 290 | continue; |
| 291 | } |
| 292 | |
| 293 | sensorPath.append("proc" + std::to_string(id) + "_core" + |
| 294 | std::to_string(instanceID) + "_temp"); |
| 295 | } |
| 296 | else |
| 297 | { |
| 298 | continue; |
| 299 | } |
| 300 | } |
| 301 | |
| 302 | std::ifstream faultPathFile(filePathString + "fault", std::ios::in); |
| 303 | if (faultPathFile) |
| 304 | { |
| 305 | uint32_t faultValue; |
| 306 | faultPathFile >> faultValue; |
| 307 | faultPathFile.close(); |
| 308 | |
| 309 | if (faultValue != 0) |
| 310 | { |
| 311 | open_power::occ::dbus::OccDBusSensors::getOccDBus().setValue( |
| 312 | sensorPath, std::numeric_limits<double>::quiet_NaN()); |
| 313 | |
| 314 | open_power::occ::dbus::OccDBusSensors::getOccDBus() |
| 315 | .setOperationalStatus(sensorPath, false); |
| 316 | |
| 317 | continue; |
| 318 | } |
| 319 | } |
| 320 | |
| 321 | std::ifstream inputFile(filePathString + "input", std::ios::in); |
| 322 | if (inputFile) |
| 323 | { |
| 324 | double tempValue; |
| 325 | inputFile >> tempValue; |
| 326 | |
| 327 | inputFile.close(); |
| 328 | |
| 329 | open_power::occ::dbus::OccDBusSensors::getOccDBus().setValue( |
| 330 | sensorPath, tempValue * std::pow(10, -3)); |
| 331 | |
| 332 | open_power::occ::dbus::OccDBusSensors::getOccDBus() |
| 333 | .setOperationalStatus(sensorPath, true); |
| 334 | |
| 335 | existingSensors[sensorPath] = id; |
| 336 | } |
| 337 | else |
| 338 | { |
| 339 | // If not able to read, OCC may be offline |
| 340 | log<level::DEBUG>( |
| 341 | fmt::format("readTempSensors: open failed(errno = {}) ", |
| 342 | open_errno) |
| 343 | .c_str()); |
| 344 | } |
| 345 | } |
| 346 | return; |
| 347 | } |
| 348 | |
| 349 | std::optional<std::string> |
| 350 | Manager::getPowerLabelFunctionID(const std::string& value) |
| 351 | { |
| 352 | // If the value is "system", then the FunctionID is "system". |
| 353 | if (value == "system") |
| 354 | { |
| 355 | return value; |
| 356 | } |
| 357 | |
| 358 | // If the value is not "system", then the label value have 3 numbers, of |
| 359 | // which we only care about the middle one: |
| 360 | // <sensor id>_<function id>_<apss channel> |
| 361 | // eg: The value is "0_10_5" , then the FunctionID is "10". |
| 362 | if (value.find("_") == std::string::npos) |
| 363 | { |
| 364 | return std::nullopt; |
| 365 | } |
| 366 | |
| 367 | auto powerLabelValue = value.substr((value.find("_") + 1)); |
| 368 | |
| 369 | if (powerLabelValue.find("_") == std::string::npos) |
| 370 | { |
| 371 | return std::nullopt; |
| 372 | } |
| 373 | |
| 374 | return powerLabelValue.substr(0, powerLabelValue.find("_")); |
| 375 | } |
| 376 | |
| 377 | void Manager::readPowerSensors(const fs::path& path, uint32_t id) |
| 378 | { |
| 379 | const int open_errno = errno; |
| 380 | std::regex expr{"power\\d+_label$"}; // Example: power5_label |
| 381 | for (auto& file : fs::directory_iterator(path)) |
| 382 | { |
| 383 | if (!std::regex_search(file.path().string(), expr)) |
| 384 | { |
| 385 | continue; |
| 386 | } |
| 387 | std::ifstream fileOpen(file.path(), std::ios::in); |
| 388 | if (!fileOpen) |
| 389 | { |
| 390 | // If not able to read, OCC may be offline |
| 391 | log<level::DEBUG>( |
| 392 | fmt::format("readPowerSensors: open failed(errno = {}) ", |
| 393 | open_errno) |
| 394 | .c_str()); |
| 395 | |
| 396 | continue; |
| 397 | } |
| 398 | std::string labelValue; |
| 399 | fileOpen >> labelValue; |
| 400 | fileOpen.close(); |
| 401 | |
| 402 | auto functionID = getPowerLabelFunctionID(labelValue); |
| 403 | if (functionID == std::nullopt) |
| 404 | { |
| 405 | continue; |
| 406 | } |
| 407 | |
| 408 | const std::string& tempLabel = "label"; |
| 409 | const std::string filePathString = file.path().string().substr( |
| 410 | 0, file.path().string().length() - tempLabel.length()); |
| 411 | |
| 412 | std::string sensorPath = OCC_SENSORS_ROOT + std::string("/power/"); |
| 413 | |
| 414 | auto iter = powerSensorName.find(*functionID); |
| 415 | if (iter == powerSensorName.end()) |
| 416 | { |
| 417 | continue; |
| 418 | } |
| 419 | sensorPath.append(iter->second); |
| 420 | |
| 421 | std::ifstream faultPathFile(filePathString + "fault", std::ios::in); |
| 422 | if (faultPathFile) |
| 423 | { |
| 424 | uint32_t faultValue{0}; |
| 425 | faultPathFile >> faultValue; |
| 426 | faultPathFile.close(); |
| 427 | |
| 428 | if (faultValue != 0) |
| 429 | { |
| 430 | open_power::occ::dbus::OccDBusSensors::getOccDBus().setValue( |
| 431 | sensorPath, std::numeric_limits<double>::quiet_NaN()); |
| 432 | |
| 433 | open_power::occ::dbus::OccDBusSensors::getOccDBus() |
| 434 | .setOperationalStatus(sensorPath, false); |
| 435 | |
| 436 | continue; |
| 437 | } |
| 438 | } |
| 439 | |
| 440 | std::ifstream inputFile(filePathString + "input", std::ios::in); |
| 441 | if (inputFile) |
| 442 | { |
| 443 | double tempValue; |
| 444 | inputFile >> tempValue; |
| 445 | inputFile.close(); |
| 446 | |
| 447 | open_power::occ::dbus::OccDBusSensors::getOccDBus().setValue( |
| 448 | sensorPath, tempValue * std::pow(10, -3) * std::pow(10, -3)); |
| 449 | |
| 450 | open_power::occ::dbus::OccDBusSensors::getOccDBus() |
| 451 | .setOperationalStatus(sensorPath, true); |
| 452 | |
| 453 | existingSensors[sensorPath] = id; |
| 454 | } |
| 455 | else |
| 456 | { |
| 457 | // If not able to read, OCC may be offline |
| 458 | log<level::DEBUG>( |
| 459 | fmt::format("readPowerSensors: open failed(errno = {}) ", |
| 460 | open_errno) |
| 461 | .c_str()); |
| 462 | } |
| 463 | } |
| 464 | return; |
| 465 | } |
| 466 | |
| 467 | void Manager::setSensorValueToNaN(uint32_t id) |
| 468 | { |
| 469 | for (const auto& [sensorPath, occId] : existingSensors) |
| 470 | { |
| 471 | if (occId == id) |
| 472 | { |
| 473 | open_power::occ::dbus::OccDBusSensors::getOccDBus().setValue( |
| 474 | sensorPath, std::numeric_limits<double>::quiet_NaN()); |
| 475 | } |
| 476 | } |
| 477 | return; |
| 478 | } |
| 479 | |
| 480 | void Manager::getSensorValues(uint32_t id, bool masterOcc) |
| 481 | { |
| 482 | const auto occ = std::string("occ-hwmon.") + std::to_string(id + 1); |
| 483 | |
| 484 | fs::path fileName{OCC_HWMON_PATH + occ + "/hwmon/"}; |
| 485 | |
| 486 | // Need to get the hwmonXX directory name, there better only be 1 dir |
| 487 | assert(std::distance(fs::directory_iterator(fileName), |
| 488 | fs::directory_iterator{}) == 1); |
| 489 | // Now set our path to this full path, including this hwmonXX directory |
| 490 | fileName = fs::path(*fs::directory_iterator(fileName)); |
| 491 | |
| 492 | // Read temperature sensors |
| 493 | readTempSensors(fileName, id); |
| 494 | |
| 495 | if (masterOcc) |
| 496 | { |
| 497 | // Read power sensors |
| 498 | readPowerSensors(fileName, id); |
| 499 | } |
| 500 | |
| 501 | return; |
| 502 | } |
| 503 | #endif |
| 504 | |
Vishwanatha Subbanna | dfc7ec7 | 2017-09-07 18:18:01 +0530 | [diff] [blame] | 505 | } // namespace occ |
| 506 | } // namespace open_power |