| Matt Spinler | 015e3ad | 2017-08-01 11:20:47 -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 |  */ | 
| Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 16 | #include "pmbus.hpp" | 
 | 17 |  | 
| Matt Spinler | 015e3ad | 2017-08-01 11:20:47 -0500 | [diff] [blame] | 18 | #include <phosphor-logging/elog-errors.hpp> | 
| Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 19 | #include <phosphor-logging/elog.hpp> | 
| Matt Spinler | ceacf94 | 2017-10-05 13:55:02 -0500 | [diff] [blame] | 20 | #include <xyz/openbmc_project/Common/Device/error.hpp> | 
| Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 21 | #include <xyz/openbmc_project/Common/error.hpp> | 
| Matt Spinler | 015e3ad | 2017-08-01 11:20:47 -0500 | [diff] [blame] | 22 |  | 
| Brandon Wyman | d1bc4ce | 2019-12-13 14:20:34 -0600 | [diff] [blame] | 23 | #include <filesystem> | 
 | 24 | #include <fstream> | 
 | 25 |  | 
| Lei YU | ab09332 | 2019-10-09 16:43:22 +0800 | [diff] [blame] | 26 | namespace phosphor | 
| Matt Spinler | 015e3ad | 2017-08-01 11:20:47 -0500 | [diff] [blame] | 27 | { | 
 | 28 | namespace pmbus | 
 | 29 | { | 
 | 30 |  | 
 | 31 | using namespace phosphor::logging; | 
 | 32 | using namespace sdbusplus::xyz::openbmc_project::Common::Error; | 
| Matt Spinler | ceacf94 | 2017-10-05 13:55:02 -0500 | [diff] [blame] | 33 | using namespace sdbusplus::xyz::openbmc_project::Common::Device::Error; | 
| Brandon Wyman | 9c7897c | 2019-03-28 17:42:34 -0500 | [diff] [blame] | 34 | namespace fs = std::filesystem; | 
| Matt Spinler | 015e3ad | 2017-08-01 11:20:47 -0500 | [diff] [blame] | 35 |  | 
| Matt Spinler | fa23e33 | 2018-01-18 11:24:58 -0600 | [diff] [blame] | 36 | /** | 
 | 37 |  * @brief Helper to close a file handle | 
 | 38 |  */ | 
 | 39 | struct FileCloser | 
 | 40 | { | 
 | 41 |     void operator()(FILE* fp) const | 
 | 42 |     { | 
 | 43 |         fclose(fp); | 
 | 44 |     } | 
 | 45 | }; | 
 | 46 |  | 
| Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 47 | std::string PMBus::insertPageNum(const std::string& templateName, size_t page) | 
| Matt Spinler | 015e3ad | 2017-08-01 11:20:47 -0500 | [diff] [blame] | 48 | { | 
 | 49 |     auto name = templateName; | 
 | 50 |  | 
| Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 51 |     // insert the page where the P was | 
| Matt Spinler | 015e3ad | 2017-08-01 11:20:47 -0500 | [diff] [blame] | 52 |     auto pos = name.find('P'); | 
 | 53 |     if (pos != std::string::npos) | 
 | 54 |     { | 
 | 55 |         name.replace(pos, 1, std::to_string(page)); | 
 | 56 |     } | 
 | 57 |  | 
 | 58 |     return name; | 
 | 59 | } | 
 | 60 |  | 
| Brandon Wyman | ff5f339 | 2017-08-11 17:43:22 -0500 | [diff] [blame] | 61 | fs::path PMBus::getPath(Type type) | 
 | 62 | { | 
 | 63 |     switch (type) | 
 | 64 |     { | 
 | 65 |         default: | 
| Brandon Wyman | f855e82 | 2017-08-08 18:04:47 -0500 | [diff] [blame] | 66 |         /* fall through */ | 
| Brandon Wyman | ff5f339 | 2017-08-11 17:43:22 -0500 | [diff] [blame] | 67 |         case Type::Base: | 
 | 68 |             return basePath; | 
 | 69 |             break; | 
 | 70 |         case Type::Hwmon: | 
 | 71 |             return basePath / "hwmon" / hwmonDir; | 
 | 72 |             break; | 
 | 73 |         case Type::Debug: | 
| Matt Spinler | 8f0d953 | 2017-08-21 11:22:37 -0500 | [diff] [blame] | 74 |             return debugPath / "pmbus" / hwmonDir; | 
 | 75 |             break; | 
 | 76 |         case Type::DeviceDebug: | 
| Matt Spinler | 4dc4678 | 2018-01-04 14:29:16 -0600 | [diff] [blame] | 77 |         { | 
| Matt Spinler | 8f0d953 | 2017-08-21 11:22:37 -0500 | [diff] [blame] | 78 |             auto dir = driverName + "." + std::to_string(instance); | 
 | 79 |             return debugPath / dir; | 
| Brandon Wyman | ff5f339 | 2017-08-11 17:43:22 -0500 | [diff] [blame] | 80 |             break; | 
| Matt Spinler | 4dc4678 | 2018-01-04 14:29:16 -0600 | [diff] [blame] | 81 |         } | 
 | 82 |         case Type::HwmonDeviceDebug: | 
 | 83 |             return debugPath / "pmbus" / hwmonDir / getDeviceName(); | 
 | 84 |             break; | 
| Brandon Wyman | ff5f339 | 2017-08-11 17:43:22 -0500 | [diff] [blame] | 85 |     } | 
 | 86 | } | 
 | 87 |  | 
| Matt Spinler | ba05348 | 2018-01-04 14:26:05 -0600 | [diff] [blame] | 88 | std::string PMBus::getDeviceName() | 
 | 89 | { | 
 | 90 |     std::string name; | 
 | 91 |     std::ifstream file; | 
 | 92 |     auto path = basePath / "name"; | 
 | 93 |  | 
| Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 94 |     file.exceptions(std::ifstream::failbit | std::ifstream::badbit | | 
| Matt Spinler | ba05348 | 2018-01-04 14:26:05 -0600 | [diff] [blame] | 95 |                     std::ifstream::eofbit); | 
 | 96 |     try | 
 | 97 |     { | 
 | 98 |         file.open(path); | 
 | 99 |         file >> name; | 
 | 100 |     } | 
| Patrick Williams | c1d4de5 | 2021-10-06 12:45:57 -0500 | [diff] [blame] | 101 |     catch (const std::exception& e) | 
| Matt Spinler | ba05348 | 2018-01-04 14:26:05 -0600 | [diff] [blame] | 102 |     { | 
| Jay Meyer | 6a3fd2c | 2020-08-25 16:37:16 -0500 | [diff] [blame] | 103 |         log<level::ERR>((std::string("Unable to read PMBus device name " | 
 | 104 |                                      "PATH=") + | 
 | 105 |                          path.string()) | 
 | 106 |                             .c_str()); | 
| Matt Spinler | ba05348 | 2018-01-04 14:26:05 -0600 | [diff] [blame] | 107 |     } | 
 | 108 |  | 
 | 109 |     return name; | 
 | 110 | } | 
 | 111 |  | 
| Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 112 | bool PMBus::readBitInPage(const std::string& name, size_t page, Type type) | 
| Matt Spinler | 015e3ad | 2017-08-01 11:20:47 -0500 | [diff] [blame] | 113 | { | 
 | 114 |     auto pagedBit = insertPageNum(name, page); | 
| Matt Spinler | 57868bc | 2017-08-03 10:07:41 -0500 | [diff] [blame] | 115 |     return readBit(pagedBit, type); | 
| Matt Spinler | 015e3ad | 2017-08-01 11:20:47 -0500 | [diff] [blame] | 116 | } | 
 | 117 |  | 
| Matt Spinler | 57868bc | 2017-08-03 10:07:41 -0500 | [diff] [blame] | 118 | bool PMBus::readBit(const std::string& name, Type type) | 
| Matt Spinler | 015e3ad | 2017-08-01 11:20:47 -0500 | [diff] [blame] | 119 | { | 
 | 120 |     unsigned long int value = 0; | 
 | 121 |     std::ifstream file; | 
| Brandon Wyman | ff5f339 | 2017-08-11 17:43:22 -0500 | [diff] [blame] | 122 |     fs::path path = getPath(type); | 
| Matt Spinler | 57868bc | 2017-08-03 10:07:41 -0500 | [diff] [blame] | 123 |  | 
| Matt Spinler | 015e3ad | 2017-08-01 11:20:47 -0500 | [diff] [blame] | 124 |     path /= name; | 
 | 125 |  | 
| Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 126 |     file.exceptions(std::ifstream::failbit | std::ifstream::badbit | | 
| Matt Spinler | 015e3ad | 2017-08-01 11:20:47 -0500 | [diff] [blame] | 127 |                     std::ifstream::eofbit); | 
 | 128 |  | 
 | 129 |     try | 
 | 130 |     { | 
 | 131 |         char* err = NULL; | 
 | 132 |         std::string val{1, '\0'}; | 
 | 133 |  | 
 | 134 |         file.open(path); | 
 | 135 |         file.read(&val[0], 1); | 
 | 136 |  | 
 | 137 |         value = strtoul(val.c_str(), &err, 10); | 
 | 138 |  | 
 | 139 |         if (*err) | 
 | 140 |         { | 
| Jay Meyer | 6a3fd2c | 2020-08-25 16:37:16 -0500 | [diff] [blame] | 141 |             log<level::ERR>((std::string("Invalid character in sysfs file" | 
 | 142 |                                          " FILE=") + | 
 | 143 |                              path.string() + std::string(" CONTENTS=") + val) | 
 | 144 |                                 .c_str()); | 
| Matt Spinler | 015e3ad | 2017-08-01 11:20:47 -0500 | [diff] [blame] | 145 |  | 
| Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 146 |             // Catch below and handle as a read failure | 
| Matt Spinler | 015e3ad | 2017-08-01 11:20:47 -0500 | [diff] [blame] | 147 |             elog<InternalFailure>(); | 
 | 148 |         } | 
 | 149 |     } | 
| Patrick Williams | c1d4de5 | 2021-10-06 12:45:57 -0500 | [diff] [blame] | 150 |     catch (const std::exception& e) | 
| Matt Spinler | 015e3ad | 2017-08-01 11:20:47 -0500 | [diff] [blame] | 151 |     { | 
 | 152 |         auto rc = errno; | 
 | 153 |  | 
| Jay Meyer | 6a3fd2c | 2020-08-25 16:37:16 -0500 | [diff] [blame] | 154 |         log<level::ERR>((std::string("Failed to read sysfs file " | 
 | 155 |                                      "errno=") + | 
 | 156 |                          std::to_string(rc) + std::string(" FILENAME=") + | 
 | 157 |                          path.string()) | 
 | 158 |                             .c_str()); | 
| Matt Spinler | 015e3ad | 2017-08-01 11:20:47 -0500 | [diff] [blame] | 159 |  | 
| Matt Spinler | ceacf94 | 2017-10-05 13:55:02 -0500 | [diff] [blame] | 160 |         using metadata = xyz::openbmc_project::Common::Device::ReadFailure; | 
 | 161 |  | 
| Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 162 |         elog<ReadFailure>( | 
 | 163 |             metadata::CALLOUT_ERRNO(rc), | 
 | 164 |             metadata::CALLOUT_DEVICE_PATH(fs::canonical(basePath).c_str())); | 
| Matt Spinler | 015e3ad | 2017-08-01 11:20:47 -0500 | [diff] [blame] | 165 |     } | 
 | 166 |  | 
 | 167 |     return value != 0; | 
 | 168 | } | 
 | 169 |  | 
| Brandon Wyman | 3b7b38b | 2017-09-25 16:43:45 -0500 | [diff] [blame] | 170 | bool PMBus::exists(const std::string& name, Type type) | 
 | 171 | { | 
 | 172 |     auto path = getPath(type); | 
 | 173 |     path /= name; | 
 | 174 |     return fs::exists(path); | 
 | 175 | } | 
 | 176 |  | 
| Brandon Wyman | f855e82 | 2017-08-08 18:04:47 -0500 | [diff] [blame] | 177 | uint64_t PMBus::read(const std::string& name, Type type) | 
 | 178 | { | 
 | 179 |     uint64_t data = 0; | 
 | 180 |     std::ifstream file; | 
 | 181 |     auto path = getPath(type); | 
 | 182 |     path /= name; | 
 | 183 |  | 
| Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 184 |     file.exceptions(std::ifstream::failbit | std::ifstream::badbit | | 
| Brandon Wyman | f855e82 | 2017-08-08 18:04:47 -0500 | [diff] [blame] | 185 |                     std::ifstream::eofbit); | 
 | 186 |  | 
 | 187 |     try | 
 | 188 |     { | 
 | 189 |         file.open(path); | 
 | 190 |         file >> std::hex >> data; | 
 | 191 |     } | 
| Patrick Williams | c1d4de5 | 2021-10-06 12:45:57 -0500 | [diff] [blame] | 192 |     catch (const std::exception& e) | 
| Brandon Wyman | f855e82 | 2017-08-08 18:04:47 -0500 | [diff] [blame] | 193 |     { | 
 | 194 |         auto rc = errno; | 
| Jay Meyer | 6a3fd2c | 2020-08-25 16:37:16 -0500 | [diff] [blame] | 195 |         log<level::ERR>((std::string("Failed to read sysfs file " | 
 | 196 |                                      "errno=") + | 
 | 197 |                          std::to_string(rc) + " FILENAME=" + path.string()) | 
 | 198 |                             .c_str()); | 
| Brandon Wyman | f855e82 | 2017-08-08 18:04:47 -0500 | [diff] [blame] | 199 |  | 
| Matt Spinler | ceacf94 | 2017-10-05 13:55:02 -0500 | [diff] [blame] | 200 |         using metadata = xyz::openbmc_project::Common::Device::ReadFailure; | 
| Brandon Wyman | f855e82 | 2017-08-08 18:04:47 -0500 | [diff] [blame] | 201 |  | 
| Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 202 |         elog<ReadFailure>( | 
 | 203 |             metadata::CALLOUT_ERRNO(rc), | 
 | 204 |             metadata::CALLOUT_DEVICE_PATH(fs::canonical(basePath).c_str())); | 
| Brandon Wyman | f855e82 | 2017-08-08 18:04:47 -0500 | [diff] [blame] | 205 |     } | 
 | 206 |  | 
 | 207 |     return data; | 
 | 208 | } | 
 | 209 |  | 
| Matt Spinler | fbae7b6 | 2018-01-04 14:33:13 -0600 | [diff] [blame] | 210 | std::string PMBus::readString(const std::string& name, Type type) | 
 | 211 | { | 
 | 212 |     std::string data; | 
 | 213 |     std::ifstream file; | 
 | 214 |     auto path = getPath(type); | 
 | 215 |     path /= name; | 
 | 216 |  | 
| Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 217 |     file.exceptions(std::ifstream::failbit | std::ifstream::badbit | | 
| Matt Spinler | fbae7b6 | 2018-01-04 14:33:13 -0600 | [diff] [blame] | 218 |                     std::ifstream::eofbit); | 
 | 219 |  | 
 | 220 |     try | 
 | 221 |     { | 
 | 222 |         file.open(path); | 
 | 223 |         file >> data; | 
 | 224 |     } | 
| Patrick Williams | c1d4de5 | 2021-10-06 12:45:57 -0500 | [diff] [blame] | 225 |     catch (const std::exception& e) | 
| Matt Spinler | fbae7b6 | 2018-01-04 14:33:13 -0600 | [diff] [blame] | 226 |     { | 
 | 227 |         auto rc = errno; | 
| Jay Meyer | 6a3fd2c | 2020-08-25 16:37:16 -0500 | [diff] [blame] | 228 |         log<level::ERR>((std::string("Failed to read sysfs file " | 
 | 229 |                                      "errno=") + | 
 | 230 |                          std::to_string(rc) + " FILENAME=" + path.string()) | 
 | 231 |                             .c_str()); | 
| Matt Spinler | fbae7b6 | 2018-01-04 14:33:13 -0600 | [diff] [blame] | 232 |  | 
 | 233 |         using metadata = xyz::openbmc_project::Common::Device::ReadFailure; | 
 | 234 |  | 
| Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 235 |         elog<ReadFailure>( | 
 | 236 |             metadata::CALLOUT_ERRNO(rc), | 
 | 237 |             metadata::CALLOUT_DEVICE_PATH(fs::canonical(basePath).c_str())); | 
| Matt Spinler | fbae7b6 | 2018-01-04 14:33:13 -0600 | [diff] [blame] | 238 |     } | 
 | 239 |  | 
 | 240 |     return data; | 
 | 241 | } | 
 | 242 |  | 
| Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 243 | std::vector<uint8_t> PMBus::readBinary(const std::string& name, Type type, | 
| Matt Spinler | fa23e33 | 2018-01-18 11:24:58 -0600 | [diff] [blame] | 244 |                                        size_t length) | 
 | 245 | { | 
 | 246 |     auto path = getPath(type) / name; | 
 | 247 |  | 
| Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 248 |     // Use C style IO because it's easier to handle telling the difference | 
 | 249 |     // between hitting EOF or getting an actual error. | 
| Matt Spinler | fa23e33 | 2018-01-18 11:24:58 -0600 | [diff] [blame] | 250 |     std::unique_ptr<FILE, FileCloser> file{fopen(path.c_str(), "rb")}; | 
 | 251 |  | 
 | 252 |     if (file) | 
 | 253 |     { | 
 | 254 |         std::vector<uint8_t> data(length, 0); | 
 | 255 |  | 
| Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 256 |         auto bytes = | 
 | 257 |             fread(data.data(), sizeof(decltype(data[0])), length, file.get()); | 
| Matt Spinler | fa23e33 | 2018-01-18 11:24:58 -0600 | [diff] [blame] | 258 |  | 
 | 259 |         if (bytes != length) | 
 | 260 |         { | 
| Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 261 |             // If hit EOF, just return the amount of data that was read. | 
| Matt Spinler | fa23e33 | 2018-01-18 11:24:58 -0600 | [diff] [blame] | 262 |             if (feof(file.get())) | 
 | 263 |             { | 
| Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 264 |                 data.erase(data.begin() + bytes, data.end()); | 
| Matt Spinler | fa23e33 | 2018-01-18 11:24:58 -0600 | [diff] [blame] | 265 |             } | 
 | 266 |             else if (ferror(file.get())) | 
 | 267 |             { | 
 | 268 |                 auto rc = errno; | 
| Jay Meyer | 6a3fd2c | 2020-08-25 16:37:16 -0500 | [diff] [blame] | 269 |                 log<level::ERR>((std::string("Failed to read sysfs file " | 
 | 270 |                                              "errno=") + | 
 | 271 |                                  std::to_string(rc) + | 
 | 272 |                                  " FILENAME=" + path.string()) | 
 | 273 |                                     .c_str()); | 
| Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 274 |                 using metadata = | 
 | 275 |                     xyz::openbmc_project::Common::Device::ReadFailure; | 
| Matt Spinler | fa23e33 | 2018-01-18 11:24:58 -0600 | [diff] [blame] | 276 |  | 
 | 277 |                 elog<ReadFailure>(metadata::CALLOUT_ERRNO(rc), | 
 | 278 |                                   metadata::CALLOUT_DEVICE_PATH( | 
| Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 279 |                                       fs::canonical(basePath).c_str())); | 
| Matt Spinler | fa23e33 | 2018-01-18 11:24:58 -0600 | [diff] [blame] | 280 |             } | 
 | 281 |         } | 
 | 282 |         return data; | 
 | 283 |     } | 
 | 284 |  | 
 | 285 |     return std::vector<uint8_t>{}; | 
 | 286 | } | 
 | 287 |  | 
| Matt Spinler | 57868bc | 2017-08-03 10:07:41 -0500 | [diff] [blame] | 288 | void PMBus::write(const std::string& name, int value, Type type) | 
| Matt Spinler | 015e3ad | 2017-08-01 11:20:47 -0500 | [diff] [blame] | 289 | { | 
 | 290 |     std::ofstream file; | 
| Brandon Wyman | ff5f339 | 2017-08-11 17:43:22 -0500 | [diff] [blame] | 291 |     fs::path path = getPath(type); | 
| Matt Spinler | 57868bc | 2017-08-03 10:07:41 -0500 | [diff] [blame] | 292 |  | 
| Matt Spinler | 015e3ad | 2017-08-01 11:20:47 -0500 | [diff] [blame] | 293 |     path /= name; | 
 | 294 |  | 
| Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 295 |     file.exceptions(std::ofstream::failbit | std::ofstream::badbit | | 
| Matt Spinler | 015e3ad | 2017-08-01 11:20:47 -0500 | [diff] [blame] | 296 |                     std::ofstream::eofbit); | 
 | 297 |  | 
 | 298 |     try | 
 | 299 |     { | 
 | 300 |         file.open(path); | 
 | 301 |         file << value; | 
 | 302 |     } | 
 | 303 |     catch (const std::exception& e) | 
 | 304 |     { | 
 | 305 |         auto rc = errno; | 
| Jay Meyer | 6a3fd2c | 2020-08-25 16:37:16 -0500 | [diff] [blame] | 306 |         log<level::ERR>((std::string("Failed to write sysfs file " | 
 | 307 |                                      "errno=") + | 
 | 308 |                          std::to_string(rc) + " FILENAME=" + path.string()) | 
 | 309 |                             .c_str()); | 
| Matt Spinler | 015e3ad | 2017-08-01 11:20:47 -0500 | [diff] [blame] | 310 |  | 
| Matt Spinler | ceacf94 | 2017-10-05 13:55:02 -0500 | [diff] [blame] | 311 |         using metadata = xyz::openbmc_project::Common::Device::WriteFailure; | 
 | 312 |  | 
| Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 313 |         elog<WriteFailure>( | 
 | 314 |             metadata::CALLOUT_ERRNO(rc), | 
 | 315 |             metadata::CALLOUT_DEVICE_PATH(fs::canonical(basePath).c_str())); | 
| Matt Spinler | 015e3ad | 2017-08-01 11:20:47 -0500 | [diff] [blame] | 316 |     } | 
 | 317 | } | 
 | 318 |  | 
| Brandon Wyman | 59a3579 | 2020-06-04 12:37:40 -0500 | [diff] [blame] | 319 | void PMBus::writeBinary(const std::string& name, std::vector<uint8_t> data, | 
 | 320 |                         Type type) | 
 | 321 | { | 
 | 322 |     std::ofstream file; | 
 | 323 |     fs::path path = getPath(type); | 
 | 324 |  | 
 | 325 |     path /= name; | 
 | 326 |  | 
 | 327 |     file.exceptions(std::ofstream::failbit | std::ofstream::badbit | | 
 | 328 |                     std::ofstream::eofbit); | 
 | 329 |  | 
 | 330 |     try | 
 | 331 |     { | 
 | 332 |         // I need to specify binary mode when I construct the ofstream | 
 | 333 |         file.open(path, std::ios::out | std::ios_base::binary); | 
| Jay Meyer | 6a3fd2c | 2020-08-25 16:37:16 -0500 | [diff] [blame] | 334 |         log<level::DEBUG>(std::string("Write data to sysfs file " | 
 | 335 |                                       "FILENAME=" + | 
 | 336 |                                       path.string()) | 
 | 337 |                               .c_str()); | 
| Brandon Wyman | 59a3579 | 2020-06-04 12:37:40 -0500 | [diff] [blame] | 338 |         file.write(reinterpret_cast<const char*>(&data[0]), data.size()); | 
 | 339 |     } | 
 | 340 |     catch (const std::exception& e) | 
 | 341 |     { | 
 | 342 |         auto rc = errno; | 
| Jay Meyer | 6a3fd2c | 2020-08-25 16:37:16 -0500 | [diff] [blame] | 343 |         log<level::ERR>( | 
 | 344 |             (std::string("Failed to write binary data to sysfs file " | 
 | 345 |                          "errno=") + | 
 | 346 |              std::to_string(rc) + " FILENAME=" + path.string()) | 
 | 347 |                 .c_str()); | 
| Brandon Wyman | 59a3579 | 2020-06-04 12:37:40 -0500 | [diff] [blame] | 348 |  | 
 | 349 |         using metadata = xyz::openbmc_project::Common::Device::WriteFailure; | 
 | 350 |  | 
 | 351 |         elog<WriteFailure>( | 
 | 352 |             metadata::CALLOUT_ERRNO(rc), | 
 | 353 |             metadata::CALLOUT_DEVICE_PATH(fs::canonical(basePath).c_str())); | 
 | 354 |     } | 
 | 355 | } | 
 | 356 |  | 
| Brandon Wyman | ff5f339 | 2017-08-11 17:43:22 -0500 | [diff] [blame] | 357 | void PMBus::findHwmonDir() | 
| Matt Spinler | 57868bc | 2017-08-03 10:07:41 -0500 | [diff] [blame] | 358 | { | 
 | 359 |     fs::path path{basePath}; | 
 | 360 |     path /= "hwmon"; | 
 | 361 |  | 
| Brandon Wyman | aad73e9 | 2017-08-16 16:27:54 -0500 | [diff] [blame] | 362 |     // Make sure the directory exists, otherwise for things that can be | 
 | 363 |     // dynamically present or not present an exception will be thrown if the | 
 | 364 |     // hwmon directory is not there, resulting in a program termination. | 
 | 365 |     if (fs::is_directory(path)) | 
| Matt Spinler | 57868bc | 2017-08-03 10:07:41 -0500 | [diff] [blame] | 366 |     { | 
| Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 367 |         // look for <basePath>/hwmon/hwmonN/ | 
| Brandon Wyman | aad73e9 | 2017-08-16 16:27:54 -0500 | [diff] [blame] | 368 |         for (auto& f : fs::directory_iterator(path)) | 
| Matt Spinler | 57868bc | 2017-08-03 10:07:41 -0500 | [diff] [blame] | 369 |         { | 
| Brandon Wyman | aad73e9 | 2017-08-16 16:27:54 -0500 | [diff] [blame] | 370 |             if ((f.path().filename().string().find("hwmon") != | 
 | 371 |                  std::string::npos) && | 
 | 372 |                 (fs::is_directory(f.path()))) | 
 | 373 |             { | 
 | 374 |                 hwmonDir = f.path().filename(); | 
 | 375 |                 break; | 
 | 376 |             } | 
| Matt Spinler | 57868bc | 2017-08-03 10:07:41 -0500 | [diff] [blame] | 377 |         } | 
 | 378 |     } | 
 | 379 |  | 
| Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 380 |     // Don't really want to crash here, just log it | 
 | 381 |     // and let accesses fail later | 
| Brandon Wyman | ff5f339 | 2017-08-11 17:43:22 -0500 | [diff] [blame] | 382 |     if (hwmonDir.empty()) | 
| Matt Spinler | 57868bc | 2017-08-03 10:07:41 -0500 | [diff] [blame] | 383 |     { | 
| Jay Meyer | 6a3fd2c | 2020-08-25 16:37:16 -0500 | [diff] [blame] | 384 |         log<level::INFO>(std::string("Unable to find hwmon directory " | 
 | 385 |                                      "in device base path" | 
 | 386 |                                      " DEVICE_PATH=" + | 
 | 387 |                                      basePath.string()) | 
 | 388 |                              .c_str()); | 
| Matt Spinler | 57868bc | 2017-08-03 10:07:41 -0500 | [diff] [blame] | 389 |     } | 
| Matt Spinler | 57868bc | 2017-08-03 10:07:41 -0500 | [diff] [blame] | 390 | } | 
 | 391 |  | 
| Brandon Wyman | 8d19577 | 2020-01-27 15:03:51 -0600 | [diff] [blame] | 392 | std::unique_ptr<PMBusBase> PMBus::createPMBus(std::uint8_t bus, | 
 | 393 |                                               const std::string& address) | 
 | 394 | { | 
 | 395 |     const std::string physpath = {"/sys/bus/i2c/devices/" + | 
 | 396 |                                   std::to_string(bus) + "-" + address}; | 
 | 397 |     auto interface = std::make_unique<PMBus>(physpath); | 
 | 398 |  | 
 | 399 |     return interface; | 
 | 400 | } | 
 | 401 |  | 
 | 402 | std::unique_ptr<PMBusBase> createPMBus(std::uint8_t bus, | 
 | 403 |                                        const std::string& address) | 
 | 404 | { | 
 | 405 |     return PMBus::createPMBus(bus, address); | 
 | 406 | } | 
 | 407 |  | 
| Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 408 | } // namespace pmbus | 
| Lei YU | ab09332 | 2019-10-09 16:43:22 +0800 | [diff] [blame] | 409 | } // namespace phosphor |