AppaRao Puli | c532f55 | 2019-07-05 15:23:50 +0530 | [diff] [blame] | 1 | /* |
| 2 | // Copyright (c) 2019 Intel 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 | |
AppaRao Puli | c532f55 | 2019-07-05 15:23:50 +0530 | [diff] [blame] | 17 | #include "pfr.hpp" |
AppaRao Puli | 67d184c | 2020-05-29 00:48:33 +0530 | [diff] [blame] | 18 | |
AppaRao Puli | c532f55 | 2019-07-05 15:23:50 +0530 | [diff] [blame] | 19 | #include "file.hpp" |
AppaRao Puli | 4b639a2 | 2019-10-01 18:12:59 +0530 | [diff] [blame] | 20 | #include "spiDev.hpp" |
AppaRao Puli | c532f55 | 2019-07-05 15:23:50 +0530 | [diff] [blame] | 21 | |
Chalapathi Venkataramashetty | 53b8700 | 2020-07-03 09:52:44 +0000 | [diff] [blame] | 22 | #include <gpiod.hpp> |
| 23 | |
AppaRao Puli | 67d184c | 2020-05-29 00:48:33 +0530 | [diff] [blame] | 24 | #include <iomanip> |
| 25 | #include <iostream> |
| 26 | #include <sstream> |
| 27 | |
AppaRao Puli | c532f55 | 2019-07-05 15:23:50 +0530 | [diff] [blame] | 28 | namespace pfr |
| 29 | { |
Chalapathi Venkataramashetty | 55e7934 | 2021-03-29 10:17:48 +0000 | [diff] [blame] | 30 | |
| 31 | using GetSubTreeType = std::vector< |
| 32 | std::pair<std::string, |
| 33 | std::vector<std::pair<std::string, std::vector<std::string>>>>>; |
| 34 | |
| 35 | static int i2cBusNumber = 4; |
| 36 | static int i2cSlaveAddress = 56; |
AppaRao Puli | c532f55 | 2019-07-05 15:23:50 +0530 | [diff] [blame] | 37 | |
| 38 | // CPLD mailbox registers |
Chalapathi Venkataramashetty | 53b8700 | 2020-07-03 09:52:44 +0000 | [diff] [blame] | 39 | static constexpr uint8_t pfrROTId = 0x00; |
AppaRao Puli | c532f55 | 2019-07-05 15:23:50 +0530 | [diff] [blame] | 40 | static constexpr uint8_t cpldROTVersion = 0x01; |
| 41 | static constexpr uint8_t cpldROTSvn = 0x02; |
| 42 | static constexpr uint8_t platformState = 0x03; |
| 43 | static constexpr uint8_t recoveryCount = 0x04; |
| 44 | static constexpr uint8_t lastRecoveryReason = 0x05; |
| 45 | static constexpr uint8_t panicEventCount = 0x06; |
| 46 | static constexpr uint8_t panicEventReason = 0x07; |
| 47 | static constexpr uint8_t majorErrorCode = 0x08; |
| 48 | static constexpr uint8_t minorErrorCode = 0x09; |
| 49 | static constexpr uint8_t provisioningStatus = 0x0A; |
Vikram Bodireddy | 0884191 | 2020-08-31 18:11:45 +0530 | [diff] [blame] | 50 | static constexpr uint8_t bmcBootCheckpointRev1 = 0x0F; |
| 51 | static constexpr uint8_t bmcBootCheckpoint = 0x60; |
AppaRao Puli | a04c825 | 2019-07-31 22:59:28 +0530 | [diff] [blame] | 52 | static constexpr uint8_t pchActiveMajorVersion = 0x15; |
| 53 | static constexpr uint8_t pchActiveMinorVersion = 0x16; |
AppaRao Puli | a04c825 | 2019-07-31 22:59:28 +0530 | [diff] [blame] | 54 | static constexpr uint8_t pchRecoveryMajorVersion = 0x1B; |
| 55 | static constexpr uint8_t pchRecoveryMinorVersion = 0x1C; |
Chalapathi Venkataramashetty | 53b8700 | 2020-07-03 09:52:44 +0000 | [diff] [blame] | 56 | static constexpr uint8_t CPLDHashRegStart = 0x20; |
| 57 | static constexpr uint8_t pfrRoTValue = 0xDE; |
Vikram Bodireddy | 8292dc6 | 2021-05-26 13:31:47 +0530 | [diff] [blame] | 58 | static constexpr uint8_t afmActiveMajorVersion = 0x75; |
| 59 | static constexpr uint8_t afmActiveMinorVersion = 0x76; |
| 60 | static constexpr uint8_t afmRecoveryMajorVersion = 0x78; |
| 61 | static constexpr uint8_t afmRecoveryMinorVersion = 0x79; |
AppaRao Puli | c532f55 | 2019-07-05 15:23:50 +0530 | [diff] [blame] | 62 | |
| 63 | static constexpr uint8_t ufmLockedMask = (0x1 << 0x04); |
| 64 | static constexpr uint8_t ufmProvisionedMask = (0x1 << 0x05); |
| 65 | |
AppaRao Puli | 4b639a2 | 2019-10-01 18:12:59 +0530 | [diff] [blame] | 66 | // PFR MTD devices |
| 67 | static constexpr const char* bmcActiveImgPfmMTDDev = "/dev/mtd/pfm"; |
| 68 | static constexpr const char* bmcRecoveryImgMTDDev = "/dev/mtd/rc-image"; |
| 69 | |
| 70 | // PFM offset in full image |
| 71 | static constexpr const uint32_t pfmBaseOffsetInImage = 0x400; |
| 72 | |
| 73 | // OFFSET values in PFM |
| 74 | static constexpr const uint32_t verOffsetInPFM = 0x406; |
| 75 | static constexpr const uint32_t buildNumOffsetInPFM = 0x40C; |
| 76 | static constexpr const uint32_t buildHashOffsetInPFM = 0x40D; |
| 77 | |
Chalapathi Venkataramashetty | 53b8700 | 2020-07-03 09:52:44 +0000 | [diff] [blame] | 78 | static const std::array<std::string, 8> mainCPLDGpioLines = { |
| 79 | "MAIN_PLD_MAJOR_REV_BIT3", "MAIN_PLD_MAJOR_REV_BIT2", |
| 80 | "MAIN_PLD_MAJOR_REV_BIT1", "MAIN_PLD_MAJOR_REV_BIT0", |
| 81 | "MAIN_PLD_MINOR_REV_BIT3", "MAIN_PLD_MINOR_REV_BIT2", |
| 82 | "MAIN_PLD_MINOR_REV_BIT1", "MAIN_PLD_MINOR_REV_BIT0"}; |
| 83 | |
| 84 | static const std::array<std::string, 8> pldGpioLines = { |
| 85 | "SGPIO_PLD_MAJOR_REV_BIT3", "SGPIO_PLD_MAJOR_REV_BIT2", |
| 86 | "SGPIO_PLD_MAJOR_REV_BIT1", "SGPIO_PLD_MAJOR_REV_BIT0", |
| 87 | "SGPIO_PLD_MINOR_REV_BIT3", "SGPIO_PLD_MINOR_REV_BIT2", |
| 88 | "SGPIO_PLD_MINOR_REV_BIT1", "SGPIO_PLD_MINOR_REV_BIT0"}; |
| 89 | |
Chalapathi Venkataramashetty | 00acaff | 2020-12-24 11:01:17 +0000 | [diff] [blame] | 90 | bool exceptionFlag = true; |
| 91 | |
Chalapathi Venkataramashetty | 55e7934 | 2021-03-29 10:17:48 +0000 | [diff] [blame] | 92 | void init(std::shared_ptr<sdbusplus::asio::connection> conn, |
| 93 | bool& i2cConfigLoaded) |
| 94 | { |
| 95 | conn->async_method_call( |
| 96 | [conn, &i2cConfigLoaded](const boost::system::error_code ec, |
| 97 | const GetSubTreeType& resp) { |
| 98 | if (ec || resp.size() != 1) |
| 99 | { |
| 100 | return; |
| 101 | } |
Vikram Bodireddy | 1c06ae4 | 2021-07-08 15:26:51 +0530 | [diff] [blame] | 102 | if (resp[0].second.begin() == resp[0].second.end()) |
| 103 | return; |
Chalapathi Venkataramashetty | 55e7934 | 2021-03-29 10:17:48 +0000 | [diff] [blame] | 104 | const std::string& objPath = resp[0].first; |
| 105 | const std::string& serviceName = resp[0].second.begin()->first; |
Vikram Bodireddy | 1c06ae4 | 2021-07-08 15:26:51 +0530 | [diff] [blame] | 106 | |
Chalapathi Venkataramashetty | 55e7934 | 2021-03-29 10:17:48 +0000 | [diff] [blame] | 107 | const std::string match = "Baseboard/PFR"; |
| 108 | if (boost::ends_with(objPath, match)) |
| 109 | { |
| 110 | // PFR object found.. check for PFR support |
| 111 | conn->async_method_call( |
| 112 | [objPath, serviceName, conn, &i2cConfigLoaded]( |
| 113 | boost::system::error_code ec, |
| 114 | const std::vector<std::pair< |
| 115 | std::string, std::variant<std::string, uint64_t>>>& |
| 116 | propertiesList) { |
| 117 | if (ec) |
| 118 | { |
| 119 | phosphor::logging::log< |
| 120 | phosphor::logging::level::ERR>( |
| 121 | "Error to Get PFR properties.", |
| 122 | phosphor::logging::entry("MSG=%s", |
| 123 | ec.message().c_str())); |
| 124 | return; |
| 125 | } |
| 126 | |
| 127 | const uint64_t* i2cBus = nullptr; |
| 128 | const uint64_t* address = nullptr; |
| 129 | |
| 130 | for (const auto& [propName, propVariant] : |
| 131 | propertiesList) |
| 132 | { |
| 133 | if (propName == "Address") |
| 134 | { |
| 135 | address = std::get_if<uint64_t>(&propVariant); |
| 136 | } |
| 137 | else if (propName == "Bus") |
| 138 | { |
| 139 | i2cBus = std::get_if<uint64_t>(&propVariant); |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | if ((address == nullptr) || (i2cBus == nullptr)) |
| 144 | { |
| 145 | phosphor::logging::log< |
| 146 | phosphor::logging::level::ERR>( |
| 147 | "Unable to read the pfr properties"); |
| 148 | return; |
| 149 | } |
| 150 | |
| 151 | i2cBusNumber = static_cast<int>(*i2cBus); |
| 152 | i2cSlaveAddress = static_cast<int>(*address); |
| 153 | i2cConfigLoaded = true; |
| 154 | }, |
| 155 | serviceName, objPath, "org.freedesktop.DBus.Properties", |
| 156 | "GetAll", "xyz.openbmc_project.Configuration.PFR"); |
| 157 | } |
| 158 | }, |
| 159 | "xyz.openbmc_project.ObjectMapper", |
| 160 | "/xyz/openbmc_project/object_mapper", |
| 161 | "xyz.openbmc_project.ObjectMapper", "GetSubTree", |
| 162 | "/xyz/openbmc_project/inventory/system", 0, |
| 163 | std::array<const char*, 1>{"xyz.openbmc_project.Configuration.PFR"}); |
| 164 | return; |
| 165 | } |
| 166 | |
AppaRao Puli | dbe184d | 2019-10-09 18:04:22 +0530 | [diff] [blame] | 167 | std::string toHexString(const uint8_t val) |
AppaRao Puli | c532f55 | 2019-07-05 15:23:50 +0530 | [diff] [blame] | 168 | { |
| 169 | std::stringstream stream; |
AppaRao Puli | dbe184d | 2019-10-09 18:04:22 +0530 | [diff] [blame] | 170 | stream << std::setfill('0') << std::setw(2) << std::hex |
| 171 | << static_cast<int>(val); |
AppaRao Puli | c532f55 | 2019-07-05 15:23:50 +0530 | [diff] [blame] | 172 | return stream.str(); |
| 173 | } |
| 174 | |
Chalapathi Venkataramashetty | 53b8700 | 2020-07-03 09:52:44 +0000 | [diff] [blame] | 175 | static std::string readCPLDHash() |
| 176 | { |
| 177 | std::stringstream hashStrStream; |
| 178 | static constexpr uint8_t hashLength = 32; |
| 179 | std::array<uint8_t, hashLength> hashValue = {0}; |
| 180 | try |
| 181 | { |
| 182 | I2CFile cpldDev(i2cBusNumber, i2cSlaveAddress, O_RDWR | O_CLOEXEC); |
| 183 | if (cpldDev.i2cReadBlockData(CPLDHashRegStart, hashLength, |
| 184 | hashValue.data())) |
| 185 | { |
| 186 | for (const auto& i : hashValue) |
| 187 | { |
| 188 | hashStrStream << std::setfill('0') << std::setw(2) << std::hex |
| 189 | << static_cast<int>(i); |
| 190 | } |
| 191 | } |
| 192 | else |
| 193 | { |
| 194 | // read failed |
| 195 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 196 | "Failed to read CPLD Hash string"); |
| 197 | return ""; |
| 198 | } |
| 199 | } |
| 200 | catch (const std::exception& e) |
| 201 | { |
| 202 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 203 | "Exception caught in readCPLDHash.", |
| 204 | phosphor::logging::entry("MSG=%s", e.what())); |
| 205 | return ""; |
| 206 | } |
| 207 | return hashStrStream.str(); |
| 208 | } |
| 209 | |
AppaRao Puli | 4b639a2 | 2019-10-01 18:12:59 +0530 | [diff] [blame] | 210 | static std::string readVersionFromCPLD(const uint8_t majorReg, |
| 211 | const uint8_t minorReg) |
AppaRao Puli | c532f55 | 2019-07-05 15:23:50 +0530 | [diff] [blame] | 212 | { |
| 213 | try |
| 214 | { |
AppaRao Puli | c532f55 | 2019-07-05 15:23:50 +0530 | [diff] [blame] | 215 | I2CFile cpldDev(i2cBusNumber, i2cSlaveAddress, O_RDWR | O_CLOEXEC); |
| 216 | uint8_t majorVer = cpldDev.i2cReadByteData(majorReg); |
| 217 | uint8_t minorVer = cpldDev.i2cReadByteData(minorReg); |
AppaRao Puli | 90fb45c | 2020-01-21 16:50:53 +0530 | [diff] [blame] | 218 | // Major and Minor versions should be binary encoded strings. |
AppaRao Puli | c532f55 | 2019-07-05 15:23:50 +0530 | [diff] [blame] | 219 | std::string version = |
AppaRao Puli | 90fb45c | 2020-01-21 16:50:53 +0530 | [diff] [blame] | 220 | std::to_string(majorVer) + "." + std::to_string(minorVer); |
AppaRao Puli | c532f55 | 2019-07-05 15:23:50 +0530 | [diff] [blame] | 221 | return version; |
| 222 | } |
| 223 | catch (const std::exception& e) |
| 224 | { |
| 225 | phosphor::logging::log<phosphor::logging::level::ERR>( |
AppaRao Puli | 4b639a2 | 2019-10-01 18:12:59 +0530 | [diff] [blame] | 226 | "Exception caught in readVersionFromCPLD.", |
AppaRao Puli | c532f55 | 2019-07-05 15:23:50 +0530 | [diff] [blame] | 227 | phosphor::logging::entry("MSG=%s", e.what())); |
| 228 | return ""; |
| 229 | } |
| 230 | } |
| 231 | |
AppaRao Puli | 4b639a2 | 2019-10-01 18:12:59 +0530 | [diff] [blame] | 232 | static std::string readBMCVersionFromSPI(const ImageType& imgType) |
| 233 | { |
| 234 | std::string mtdDev; |
| 235 | uint32_t verOffset = verOffsetInPFM; |
| 236 | uint32_t bldNumOffset = buildNumOffsetInPFM; |
| 237 | uint32_t bldHashOffset = buildHashOffsetInPFM; |
| 238 | |
| 239 | if (imgType == ImageType::bmcActive) |
| 240 | { |
| 241 | // For Active image, PFM is emulated as separate MTD device. |
| 242 | mtdDev = bmcActiveImgPfmMTDDev; |
| 243 | } |
| 244 | else if (imgType == ImageType::bmcRecovery) |
| 245 | { |
| 246 | // For Recovery image, PFM is part of compressed Image |
| 247 | // at offset 0x400. |
| 248 | mtdDev = bmcRecoveryImgMTDDev; |
| 249 | verOffset += pfmBaseOffsetInImage; |
| 250 | bldNumOffset += pfmBaseOffsetInImage; |
| 251 | bldHashOffset += pfmBaseOffsetInImage; |
| 252 | } |
| 253 | else |
| 254 | { |
| 255 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 256 | "Invalid image type passed to readBMCVersionFromSPI."); |
| 257 | return ""; |
| 258 | } |
| 259 | |
| 260 | uint8_t buildNo = 0; |
| 261 | std::array<uint8_t, 2> ver; |
| 262 | std::array<uint8_t, 3> buildHash; |
| 263 | |
| 264 | try |
| 265 | { |
| 266 | SPIDev spiDev(mtdDev); |
| 267 | spiDev.spiReadData(verOffset, ver.size(), |
| 268 | reinterpret_cast<void*>(ver.data())); |
| 269 | spiDev.spiReadData(bldNumOffset, sizeof(buildNo), |
| 270 | reinterpret_cast<void*>(&buildNo)); |
| 271 | spiDev.spiReadData(bldHashOffset, buildHash.size(), |
| 272 | reinterpret_cast<void*>(buildHash.data())); |
| 273 | } |
| 274 | catch (const std::exception& e) |
| 275 | { |
| 276 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 277 | "Exception caught in readBMCVersionFromSPI.", |
| 278 | phosphor::logging::entry("MSG=%s", e.what())); |
| 279 | return ""; |
| 280 | } |
AppaRao Puli | 90fb45c | 2020-01-21 16:50:53 +0530 | [diff] [blame] | 281 | |
| 282 | // Version format: <major>.<minor>-<build bum>-g<build hash> |
| 283 | // Example: 0.11-7-g1e5c2d |
| 284 | // Major, minor and build numberare BCD encoded. |
| 285 | std::string version = |
| 286 | std::to_string(ver[0]) + "." + std::to_string(ver[1]) + "-" + |
| 287 | std::to_string(buildNo) + "-g" + toHexString(buildHash[0]) + |
| 288 | toHexString(buildHash[1]) + toHexString(buildHash[2]); |
AppaRao Puli | 4b639a2 | 2019-10-01 18:12:59 +0530 | [diff] [blame] | 289 | return version; |
| 290 | } |
| 291 | |
Chalapathi Venkataramashetty | 53b8700 | 2020-07-03 09:52:44 +0000 | [diff] [blame] | 292 | static bool getGPIOInput(const std::string& name, gpiod::line& gpioLine, |
| 293 | uint8_t* value) |
| 294 | { |
| 295 | // Find the GPIO line |
| 296 | gpioLine = gpiod::find_line(name); |
| 297 | if (!gpioLine) |
| 298 | { |
| 299 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 300 | "Failed to find the GPIO line: ", |
| 301 | phosphor::logging::entry("MSG=%s", name.c_str())); |
| 302 | return false; |
| 303 | } |
| 304 | try |
| 305 | { |
| 306 | gpioLine.request({__FUNCTION__, gpiod::line_request::DIRECTION_INPUT}); |
| 307 | } |
Patrick Williams | 4990c9e | 2021-10-06 14:40:02 -0500 | [diff] [blame^] | 308 | catch (const std::exception& e) |
Chalapathi Venkataramashetty | 53b8700 | 2020-07-03 09:52:44 +0000 | [diff] [blame] | 309 | { |
| 310 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 311 | "Failed to request the GPIO line", |
| 312 | phosphor::logging::entry("MSG=%s", e.what())); |
| 313 | gpioLine.release(); |
| 314 | return false; |
| 315 | } |
| 316 | try |
| 317 | { |
| 318 | *value = gpioLine.get_value(); |
| 319 | } |
Patrick Williams | 4990c9e | 2021-10-06 14:40:02 -0500 | [diff] [blame^] | 320 | catch (const std::exception& e) |
Chalapathi Venkataramashetty | 53b8700 | 2020-07-03 09:52:44 +0000 | [diff] [blame] | 321 | { |
| 322 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 323 | "Failed to get the value of GPIO line", |
| 324 | phosphor::logging::entry("MSG=%s", e.what())); |
| 325 | gpioLine.release(); |
| 326 | return false; |
| 327 | } |
| 328 | gpioLine.release(); |
| 329 | return true; |
| 330 | } |
| 331 | |
Chalapathi Venkataramashetty | e6fb18e | 2021-02-03 14:51:00 +0000 | [diff] [blame] | 332 | std::string readCPLDVersion() |
Chalapathi Venkataramashetty | 53b8700 | 2020-07-03 09:52:44 +0000 | [diff] [blame] | 333 | { |
| 334 | // CPLD SGPIO lines |
| 335 | gpiod::line mainCPLDLine; |
| 336 | gpiod::line pldLine; |
| 337 | // read main pld and pld version |
| 338 | uint8_t mainCPLDVer = 0; |
| 339 | uint8_t pldVer = 0; |
| 340 | // main CPLD |
| 341 | for (const auto& gLine : mainCPLDGpioLines) |
| 342 | { |
| 343 | uint8_t value = 0; |
| 344 | if (getGPIOInput(gLine, mainCPLDLine, &value)) |
| 345 | { |
| 346 | mainCPLDVer <<= 1; |
| 347 | mainCPLDVer = mainCPLDVer | value; |
| 348 | } |
| 349 | else |
| 350 | { |
| 351 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 352 | "Failed to read GPIO line: ", |
| 353 | phosphor::logging::entry("MSG=%s", gLine.c_str())); |
| 354 | mainCPLDVer = 0; |
| 355 | break; |
| 356 | } |
| 357 | } |
| 358 | |
| 359 | // pld lines |
| 360 | for (const auto& gLine : pldGpioLines) |
| 361 | { |
| 362 | uint8_t value = 0; |
| 363 | if (getGPIOInput(gLine, pldLine, &value)) |
| 364 | { |
| 365 | pldVer <<= 1; |
| 366 | pldVer = pldVer | value; |
| 367 | } |
| 368 | else |
| 369 | { |
| 370 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 371 | "Failed to read GPIO line: ", |
| 372 | phosphor::logging::entry("MSG=%s", gLine.c_str())); |
| 373 | pldVer = 0; |
| 374 | break; |
| 375 | } |
| 376 | } |
| 377 | |
| 378 | std::string svnRoTHash = ""; |
| 379 | |
| 380 | // check if reg 0x00 read 0xde |
| 381 | uint8_t cpldRoTValue = 0; |
Zhikui Ren | ace48a7 | 2020-08-12 15:54:42 -0700 | [diff] [blame] | 382 | try |
| 383 | { |
| 384 | I2CFile cpldDev(i2cBusNumber, i2cSlaveAddress, O_RDWR | O_CLOEXEC); |
| 385 | cpldRoTValue = cpldDev.i2cReadByteData(pfrROTId); |
| 386 | } |
| 387 | catch (const std::exception& e) |
| 388 | { |
| 389 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 390 | "Exception caught in readCPLDVersion.", |
| 391 | phosphor::logging::entry("MSG=%s", e.what())); |
| 392 | } |
Chalapathi Venkataramashetty | 53b8700 | 2020-07-03 09:52:44 +0000 | [diff] [blame] | 393 | |
| 394 | if (cpldRoTValue == pfrRoTValue) |
| 395 | { |
| 396 | // read SVN and RoT version |
| 397 | std::string svnRoTver = readVersionFromCPLD(cpldROTVersion, cpldROTSvn); |
| 398 | |
| 399 | // read CPLD hash |
| 400 | std::string cpldHash = readCPLDHash(); |
| 401 | svnRoTHash = "-" + svnRoTver + "-" + cpldHash; |
| 402 | } |
| 403 | else |
| 404 | { |
| 405 | phosphor::logging::log<phosphor::logging::level::INFO>( |
| 406 | "PFR-CPLD not present."); |
| 407 | } |
| 408 | |
| 409 | // CPLD version format: |
| 410 | // When PFR CPLD is present |
| 411 | // <MainPLDMajorMinor.PLDMajorMinor>-<SVN.RoT>-<CPLD-Hash> |
| 412 | // Example: 2.7-1.1-<Hash string> |
| 413 | |
| 414 | // When Non-PFR CPLD is present -> <MainPLDMajorMinor.PLDMajorMinor> |
| 415 | // Example: 2.7 |
| 416 | |
| 417 | std::string version = |
| 418 | std::to_string(mainCPLDVer) + "." + std::to_string(pldVer) + svnRoTHash; |
| 419 | return version; |
| 420 | } |
| 421 | |
AppaRao Puli | 4b639a2 | 2019-10-01 18:12:59 +0530 | [diff] [blame] | 422 | std::string getFirmwareVersion(const ImageType& imgType) |
| 423 | { |
| 424 | switch (imgType) |
| 425 | { |
Vikram Bodireddy | 3c6c8c3 | 2019-12-05 11:06:15 +0530 | [diff] [blame] | 426 | case (ImageType::cpldActive): |
Chalapathi Venkataramashetty | 53b8700 | 2020-07-03 09:52:44 +0000 | [diff] [blame] | 427 | { |
| 428 | return readCPLDVersion(); |
| 429 | } |
Vikram Bodireddy | 3c6c8c3 | 2019-12-05 11:06:15 +0530 | [diff] [blame] | 430 | case (ImageType::cpldRecovery): |
AppaRao Puli | 4b639a2 | 2019-10-01 18:12:59 +0530 | [diff] [blame] | 431 | { |
Vikram Bodireddy | 3c6c8c3 | 2019-12-05 11:06:15 +0530 | [diff] [blame] | 432 | // TO-DO: Need to update once CPLD supported Firmware is available |
AppaRao Puli | 4b639a2 | 2019-10-01 18:12:59 +0530 | [diff] [blame] | 433 | return readVersionFromCPLD(cpldROTVersion, cpldROTSvn); |
| 434 | } |
| 435 | case (ImageType::biosActive): |
| 436 | { |
| 437 | return readVersionFromCPLD(pchActiveMajorVersion, |
| 438 | pchActiveMinorVersion); |
| 439 | } |
| 440 | case (ImageType::biosRecovery): |
| 441 | { |
| 442 | return readVersionFromCPLD(pchRecoveryMajorVersion, |
| 443 | pchRecoveryMinorVersion); |
| 444 | } |
| 445 | case (ImageType::bmcActive): |
| 446 | case (ImageType::bmcRecovery): |
| 447 | { |
| 448 | return readBMCVersionFromSPI(imgType); |
| 449 | } |
Vikram Bodireddy | 8292dc6 | 2021-05-26 13:31:47 +0530 | [diff] [blame] | 450 | case (ImageType::afmActive): |
| 451 | { |
| 452 | return readVersionFromCPLD(afmActiveMajorVersion, |
| 453 | afmActiveMinorVersion); |
| 454 | } |
| 455 | case (ImageType::afmRecovery): |
| 456 | { |
| 457 | return readVersionFromCPLD(afmRecoveryMajorVersion, |
| 458 | afmRecoveryMinorVersion); |
| 459 | } |
AppaRao Puli | 4b639a2 | 2019-10-01 18:12:59 +0530 | [diff] [blame] | 460 | default: |
| 461 | // Invalid image Type. |
| 462 | return ""; |
| 463 | } |
| 464 | } |
| 465 | |
Chalapathi Venkataramashetty | f881970 | 2021-02-03 09:43:46 +0000 | [diff] [blame] | 466 | int getProvisioningStatus(bool& ufmLocked, bool& ufmProvisioned, |
| 467 | bool& ufmSupport) |
AppaRao Puli | c532f55 | 2019-07-05 15:23:50 +0530 | [diff] [blame] | 468 | { |
| 469 | try |
| 470 | { |
| 471 | I2CFile cpldDev(i2cBusNumber, i2cSlaveAddress, O_RDWR | O_CLOEXEC); |
| 472 | uint8_t provStatus = cpldDev.i2cReadByteData(provisioningStatus); |
Chalapathi Venkataramashetty | f881970 | 2021-02-03 09:43:46 +0000 | [diff] [blame] | 473 | uint8_t pfrRoT = cpldDev.i2cReadByteData(pfrROTId); |
AppaRao Puli | c532f55 | 2019-07-05 15:23:50 +0530 | [diff] [blame] | 474 | ufmLocked = (provStatus & ufmLockedMask); |
| 475 | ufmProvisioned = (provStatus & ufmProvisionedMask); |
Chalapathi Venkataramashetty | f881970 | 2021-02-03 09:43:46 +0000 | [diff] [blame] | 476 | ufmSupport = (pfrRoT & pfrRoTValue); |
AppaRao Puli | c532f55 | 2019-07-05 15:23:50 +0530 | [diff] [blame] | 477 | return 0; |
| 478 | } |
| 479 | catch (const std::exception& e) |
| 480 | { |
| 481 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 482 | "Exception caught in getProvisioningStatus.", |
| 483 | phosphor::logging::entry("MSG=%s", e.what())); |
| 484 | return -1; |
| 485 | } |
| 486 | } |
| 487 | |
AppaRao Puli | dbe184d | 2019-10-09 18:04:22 +0530 | [diff] [blame] | 488 | int readCpldReg(const ActionType& action, uint8_t& value) |
AppaRao Puli | 88aa33b | 2019-07-18 23:49:55 +0530 | [diff] [blame] | 489 | { |
| 490 | uint8_t cpldReg; |
| 491 | |
| 492 | switch (action) |
| 493 | { |
Chalapathi Venkataramashetty | bcc7ce1 | 2021-05-17 04:27:21 +0000 | [diff] [blame] | 494 | case (ActionType::readRoTRev): |
| 495 | cpldReg = cpldROTVersion; |
| 496 | break; |
AppaRao Puli | 88aa33b | 2019-07-18 23:49:55 +0530 | [diff] [blame] | 497 | case (ActionType::recoveryCount): |
| 498 | cpldReg = recoveryCount; |
| 499 | break; |
| 500 | case (ActionType::recoveryReason): |
| 501 | cpldReg = lastRecoveryReason; |
| 502 | break; |
| 503 | case (ActionType::panicCount): |
| 504 | cpldReg = panicEventCount; |
| 505 | break; |
| 506 | case (ActionType::panicReason): |
| 507 | cpldReg = panicEventReason; |
| 508 | break; |
| 509 | case (ActionType::majorError): |
| 510 | cpldReg = majorErrorCode; |
| 511 | break; |
| 512 | case (ActionType::minorError): |
| 513 | cpldReg = minorErrorCode; |
| 514 | break; |
| 515 | |
| 516 | default: |
| 517 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 518 | "Invalid CPLD read action."); |
| 519 | return -1; |
| 520 | } |
| 521 | |
| 522 | try |
| 523 | { |
| 524 | I2CFile cpldDev(i2cBusNumber, i2cSlaveAddress, O_RDWR | O_CLOEXEC); |
| 525 | value = cpldDev.i2cReadByteData(cpldReg); |
| 526 | return 0; |
| 527 | } |
| 528 | catch (const std::exception& e) |
| 529 | { |
Chalapathi Venkataramashetty | 00acaff | 2020-12-24 11:01:17 +0000 | [diff] [blame] | 530 | if (exceptionFlag) |
| 531 | { |
| 532 | exceptionFlag = false; |
| 533 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 534 | "Exception caught in readCpldReg.", |
| 535 | phosphor::logging::entry("MSG=%s", e.what())); |
| 536 | } |
AppaRao Puli | 88aa33b | 2019-07-18 23:49:55 +0530 | [diff] [blame] | 537 | return -1; |
| 538 | } |
| 539 | } |
| 540 | |
AppaRao Puli | 46cead9 | 2019-07-22 16:50:09 +0530 | [diff] [blame] | 541 | int setBMCBootCheckpoint(const uint8_t checkPoint) |
| 542 | { |
Vikram Bodireddy | 0884191 | 2020-08-31 18:11:45 +0530 | [diff] [blame] | 543 | uint8_t bmcBootCheckpointReg = bmcBootCheckpoint; |
| 544 | |
| 545 | // check if reg 0x01(RoTRev) is 1 or 2. |
| 546 | // checkpoint register changes for RoT Rev 1 and 2 |
| 547 | uint8_t cpldRoTRev = 0; |
AppaRao Puli | 46cead9 | 2019-07-22 16:50:09 +0530 | [diff] [blame] | 548 | try |
| 549 | { |
| 550 | I2CFile cpldDev(i2cBusNumber, i2cSlaveAddress, O_RDWR | O_CLOEXEC); |
Vikram Bodireddy | 0884191 | 2020-08-31 18:11:45 +0530 | [diff] [blame] | 551 | cpldRoTRev = cpldDev.i2cReadByteData(cpldROTVersion); |
| 552 | } |
| 553 | catch (const std::exception& e) |
| 554 | { |
| 555 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 556 | "Exception caught in reading RoT rev.", |
| 557 | phosphor::logging::entry("MSG=%s", e.what())); |
| 558 | return -1; |
| 559 | } |
| 560 | |
| 561 | // latest PFR has different check point register |
| 562 | if (cpldRoTRev <= 1) |
| 563 | { |
| 564 | bmcBootCheckpointReg = bmcBootCheckpointRev1; |
| 565 | } |
| 566 | |
| 567 | try |
| 568 | { |
| 569 | I2CFile cpldDev(i2cBusNumber, i2cSlaveAddress, O_RDWR | O_CLOEXEC); |
| 570 | cpldDev.i2cWriteByteData(bmcBootCheckpointReg, checkPoint); |
AppaRao Puli | b7e172c | 2019-12-13 14:46:25 +0530 | [diff] [blame] | 571 | phosphor::logging::log<phosphor::logging::level::INFO>( |
| 572 | "Successfully set the PFR CPLD checkpoint 9."); |
AppaRao Puli | 46cead9 | 2019-07-22 16:50:09 +0530 | [diff] [blame] | 573 | return 0; |
| 574 | } |
| 575 | catch (const std::exception& e) |
| 576 | { |
| 577 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 578 | "Exception caught in setBMCBootCheckout.", |
| 579 | phosphor::logging::entry("MSG=%s", e.what())); |
| 580 | return -1; |
| 581 | } |
| 582 | } |
| 583 | |
AppaRao Puli | c532f55 | 2019-07-05 15:23:50 +0530 | [diff] [blame] | 584 | } // namespace pfr |