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