| Vishwanatha Subbanna | 307d80b | 2017-06-28 15:56:09 +0530 | [diff] [blame] | 1 | #include "occ_status.hpp" | 
| Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 2 |  | 
| Vishwanatha Subbanna | 6add0b8 | 2017-07-21 19:02:37 +0530 | [diff] [blame] | 3 | #include "occ_sensor.hpp" | 
| Chris Cain | 78e8601 | 2021-03-04 16:15:31 -0600 | [diff] [blame] | 4 | #include "powermode.hpp" | 
| Vishwanatha Subbanna | 30e329a | 2017-07-24 23:13:14 +0530 | [diff] [blame] | 5 | #include "utils.hpp" | 
| Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 6 |  | 
| Chris Cain | a8857c5 | 2021-01-27 11:53:05 -0600 | [diff] [blame] | 7 | #include <fmt/core.h> | 
|  | 8 |  | 
| Chris Cain | 78e8601 | 2021-03-04 16:15:31 -0600 | [diff] [blame] | 9 | #ifdef POWER10 | 
|  | 10 | #include <com/ibm/Host/Target/server.hpp> | 
|  | 11 | #endif | 
| Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 12 | #include <phosphor-logging/log.hpp> | 
| Chris Cain | 78e8601 | 2021-03-04 16:15:31 -0600 | [diff] [blame] | 13 |  | 
| Vishwanatha Subbanna | 307d80b | 2017-06-28 15:56:09 +0530 | [diff] [blame] | 14 | namespace open_power | 
|  | 15 | { | 
|  | 16 | namespace occ | 
|  | 17 | { | 
| Chris Cain | 78e8601 | 2021-03-04 16:15:31 -0600 | [diff] [blame] | 18 |  | 
| Chris Cain | a8857c5 | 2021-01-27 11:53:05 -0600 | [diff] [blame] | 19 | using namespace phosphor::logging; | 
| Vishwanatha Subbanna | 307d80b | 2017-06-28 15:56:09 +0530 | [diff] [blame] | 20 |  | 
|  | 21 | // Handles updates to occActive property | 
|  | 22 | bool Status::occActive(bool value) | 
|  | 23 | { | 
| Vishwanatha Subbanna | 32e84e9 | 2017-06-28 19:17:28 +0530 | [diff] [blame] | 24 | if (value != this->occActive()) | 
|  | 25 | { | 
| Chris Cain | a8857c5 | 2021-01-27 11:53:05 -0600 | [diff] [blame] | 26 | log<level::INFO>(fmt::format("Status::occActive OCC{} changed to {}", | 
|  | 27 | instance, value) | 
|  | 28 | .c_str()); | 
| Vishwanatha Subbanna | 32e84e9 | 2017-06-28 19:17:28 +0530 | [diff] [blame] | 29 | if (value) | 
|  | 30 | { | 
|  | 31 | // Bind the device | 
|  | 32 | device.bind(); | 
| Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 33 |  | 
| Edward A. James | 9fd2bdc | 2017-11-08 16:18:57 -0600 | [diff] [blame] | 34 | // Start watching for errors | 
|  | 35 | addErrorWatch(); | 
|  | 36 |  | 
| Chris Cain | a8857c5 | 2021-01-27 11:53:05 -0600 | [diff] [blame] | 37 | // Reset last OCC state | 
|  | 38 | lastState = 0; | 
|  | 39 |  | 
| Vishwanatha Subbanna | 2dc9b1a | 2017-08-18 18:29:41 +0530 | [diff] [blame] | 40 | // Call into Manager to let know that we have bound | 
| Edward A. James | 9fd2bdc | 2017-11-08 16:18:57 -0600 | [diff] [blame] | 41 | if (this->callBack) | 
| Vishwanatha Subbanna | 2dc9b1a | 2017-08-18 18:29:41 +0530 | [diff] [blame] | 42 | { | 
|  | 43 | this->callBack(value); | 
| Edward A. James | 9fd2bdc | 2017-11-08 16:18:57 -0600 | [diff] [blame] | 44 | } | 
| Vishwanatha Subbanna | 32e84e9 | 2017-06-28 19:17:28 +0530 | [diff] [blame] | 45 | } | 
|  | 46 | else | 
|  | 47 | { | 
| Vishwanatha Subbanna | 2dc9b1a | 2017-08-18 18:29:41 +0530 | [diff] [blame] | 48 | // Call into Manager to let know that we will unbind. | 
| Edward A. James | 9fd2bdc | 2017-11-08 16:18:57 -0600 | [diff] [blame] | 49 | if (this->callBack) | 
| Vishwanatha Subbanna | 2dc9b1a | 2017-08-18 18:29:41 +0530 | [diff] [blame] | 50 | { | 
|  | 51 | this->callBack(value); | 
| Edward A. James | 9fd2bdc | 2017-11-08 16:18:57 -0600 | [diff] [blame] | 52 | } | 
|  | 53 |  | 
|  | 54 | // Stop watching for errors | 
|  | 55 | removeErrorWatch(); | 
| Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 56 |  | 
|  | 57 | // Do the unbind. | 
| Vishwanatha Subbanna | 32e84e9 | 2017-06-28 19:17:28 +0530 | [diff] [blame] | 58 | device.unBind(); | 
|  | 59 | } | 
|  | 60 | } | 
| Edward A. James | 5e17797 | 2017-10-25 15:50:31 -0500 | [diff] [blame] | 61 | else if (value && !device.bound()) | 
|  | 62 | { | 
|  | 63 | // Existing error watch is on a dead file descriptor. | 
| Edward A. James | 9fd2bdc | 2017-11-08 16:18:57 -0600 | [diff] [blame] | 64 | removeErrorWatch(); | 
| Edward A. James | 5e17797 | 2017-10-25 15:50:31 -0500 | [diff] [blame] | 65 |  | 
|  | 66 | /* | 
|  | 67 | * In it's constructor, Status checks Device::bound() to see if OCC is | 
|  | 68 | * active or not. | 
|  | 69 | * Device::bound() checks for occX-dev0 directory. | 
|  | 70 | * We will lose occX-dev0 directories during FSI rescan. | 
|  | 71 | * So, if we start this application (and construct Status), and then | 
|  | 72 | * later do FSI rescan, we will end up with occActive = true and device | 
|  | 73 | * NOT bound. Lets correct that situation here. | 
|  | 74 | */ | 
|  | 75 | device.bind(); | 
|  | 76 |  | 
|  | 77 | // Add error watch again | 
| Edward A. James | 9fd2bdc | 2017-11-08 16:18:57 -0600 | [diff] [blame] | 78 | addErrorWatch(); | 
| Edward A. James | 5e17797 | 2017-10-25 15:50:31 -0500 | [diff] [blame] | 79 | } | 
| Eddie James | 6d6d1b3 | 2019-04-22 10:45:08 -0500 | [diff] [blame] | 80 | else if (!value && device.bound()) | 
|  | 81 | { | 
|  | 82 | removeErrorWatch(); | 
|  | 83 |  | 
|  | 84 | // In the event that the application never receives the active signal | 
|  | 85 | // even though the OCC is active (this can occur if the BMC is rebooted | 
|  | 86 | // with the host on, since the initial OCC driver probe will discover | 
|  | 87 | // the OCCs), this application needs to be able to unbind the device | 
|  | 88 | // when we get the OCC inactive signal. | 
|  | 89 | device.unBind(); | 
|  | 90 | } | 
| Vishwanatha Subbanna | 307d80b | 2017-06-28 15:56:09 +0530 | [diff] [blame] | 91 | return Base::Status::occActive(value); | 
|  | 92 | } | 
|  | 93 |  | 
| Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 94 | // Callback handler when a device error is reported. | 
| Eddie James | 482e31f | 2017-09-14 13:17:17 -0500 | [diff] [blame] | 95 | void Status::deviceErrorHandler(bool error) | 
| Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 96 | { | 
| Eddie James | 482e31f | 2017-09-14 13:17:17 -0500 | [diff] [blame] | 97 | // Make sure we have an error | 
|  | 98 | if (error) | 
|  | 99 | { | 
|  | 100 | // This would deem OCC inactive | 
|  | 101 | this->occActive(false); | 
| Vishwanatha Subbanna | 30e329a | 2017-07-24 23:13:14 +0530 | [diff] [blame] | 102 |  | 
| Eddie James | 482e31f | 2017-09-14 13:17:17 -0500 | [diff] [blame] | 103 | // Reset the OCC | 
|  | 104 | this->resetOCC(); | 
|  | 105 | } | 
| Vishwanatha Subbanna | 30e329a | 2017-07-24 23:13:14 +0530 | [diff] [blame] | 106 | } | 
|  | 107 |  | 
|  | 108 | // Sends message to host control command handler to reset OCC | 
|  | 109 | void Status::resetOCC() | 
|  | 110 | { | 
| Chris Cain | a8857c5 | 2021-01-27 11:53:05 -0600 | [diff] [blame] | 111 | log<level::INFO>( | 
|  | 112 | fmt::format(">>Status::resetOCC() - requesting reset for OCC{}", | 
|  | 113 | instance) | 
|  | 114 | .c_str()); | 
| Tom Joseph | 0032523 | 2020-07-29 17:51:48 +0530 | [diff] [blame] | 115 | #ifdef PLDM | 
|  | 116 | if (resetCallBack) | 
|  | 117 | { | 
|  | 118 | this->resetCallBack(instance); | 
|  | 119 | } | 
|  | 120 | #else | 
| Vishwanatha Subbanna | 30e329a | 2017-07-24 23:13:14 +0530 | [diff] [blame] | 121 | constexpr auto CONTROL_HOST_PATH = "/org/open_power/control/host0"; | 
|  | 122 | constexpr auto CONTROL_HOST_INTF = "org.open_power.Control.Host"; | 
|  | 123 |  | 
|  | 124 | // This will throw exception on failure | 
| George Liu | f3b7514 | 2021-06-10 11:22:50 +0800 | [diff] [blame] | 125 | auto service = utils::getService(CONTROL_HOST_PATH, CONTROL_HOST_INTF); | 
| Vishwanatha Subbanna | 30e329a | 2017-07-24 23:13:14 +0530 | [diff] [blame] | 126 |  | 
| George Liu | f3b7514 | 2021-06-10 11:22:50 +0800 | [diff] [blame] | 127 | auto& bus = utils::getBus(); | 
| Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 128 | auto method = bus.new_method_call(service.c_str(), CONTROL_HOST_PATH, | 
|  | 129 | CONTROL_HOST_INTF, "Execute"); | 
| Vishwanatha Subbanna | 30e329a | 2017-07-24 23:13:14 +0530 | [diff] [blame] | 130 | // OCC Reset control command | 
| Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 131 | method.append(convertForMessage(Control::Host::Command::OCCReset).c_str()); | 
| Vishwanatha Subbanna | 30e329a | 2017-07-24 23:13:14 +0530 | [diff] [blame] | 132 |  | 
|  | 133 | // OCC Sensor ID for callout reasons | 
| Patrick Williams | e096270 | 2020-05-13 17:50:22 -0500 | [diff] [blame] | 134 | method.append(std::variant<uint8_t>(std::get<0>(sensorMap.at(instance)))); | 
| Vishwanatha Subbanna | 30e329a | 2017-07-24 23:13:14 +0530 | [diff] [blame] | 135 | bus.call_noreply(method); | 
|  | 136 | return; | 
| Tom Joseph | 0032523 | 2020-07-29 17:51:48 +0530 | [diff] [blame] | 137 | #endif | 
| Vishwanatha Subbanna | 30e329a | 2017-07-24 23:13:14 +0530 | [diff] [blame] | 138 | } | 
|  | 139 |  | 
|  | 140 | // Handler called by Host control command handler to convey the | 
|  | 141 | // status of the executed command | 
|  | 142 | void Status::hostControlEvent(sdbusplus::message::message& msg) | 
|  | 143 | { | 
| Vishwanatha Subbanna | 30e329a | 2017-07-24 23:13:14 +0530 | [diff] [blame] | 144 | std::string cmdCompleted{}; | 
|  | 145 | std::string cmdStatus{}; | 
|  | 146 |  | 
|  | 147 | msg.read(cmdCompleted, cmdStatus); | 
|  | 148 |  | 
|  | 149 | log<level::DEBUG>("Host control signal values", | 
| Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 150 | entry("COMMAND=%s", cmdCompleted.c_str()), | 
|  | 151 | entry("STATUS=%s", cmdStatus.c_str())); | 
| Vishwanatha Subbanna | 30e329a | 2017-07-24 23:13:14 +0530 | [diff] [blame] | 152 |  | 
| Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 153 | if (Control::Host::convertResultFromString(cmdStatus) != | 
|  | 154 | Control::Host::Result::Success) | 
| Vishwanatha Subbanna | 30e329a | 2017-07-24 23:13:14 +0530 | [diff] [blame] | 155 | { | 
| Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 156 | if (Control::Host::convertCommandFromString(cmdCompleted) == | 
|  | 157 | Control::Host::Command::OCCReset) | 
| Vishwanatha Subbanna | 30e329a | 2017-07-24 23:13:14 +0530 | [diff] [blame] | 158 | { | 
| Gunnar Mills | 85e6520 | 2018-04-08 15:01:54 -0500 | [diff] [blame] | 159 | // Must be a Timeout. Log an Error trace | 
| Alexander Filippov | 1d69e19 | 2019-03-21 18:12:07 +0300 | [diff] [blame] | 160 | log<level::ERR>( | 
|  | 161 | "Error resetting the OCC.", entry("PATH=%s", path.c_str()), | 
|  | 162 | entry("SENSORID=0x%X", std::get<0>(sensorMap.at(instance)))); | 
| Vishwanatha Subbanna | 30e329a | 2017-07-24 23:13:14 +0530 | [diff] [blame] | 163 | } | 
|  | 164 | } | 
|  | 165 | return; | 
| Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 166 | } | 
|  | 167 |  | 
| Chris Cain | a8857c5 | 2021-01-27 11:53:05 -0600 | [diff] [blame] | 168 | void Status::readOccState() | 
|  | 169 | { | 
|  | 170 | unsigned int state; | 
|  | 171 | const fs::path filename = | 
|  | 172 | fs::path(DEV_PATH) / | 
|  | 173 | fs::path(sysfsName + "." + std::to_string(instance + 1)) / "occ_state"; | 
|  | 174 |  | 
|  | 175 | log<level::DEBUG>( | 
|  | 176 | fmt::format("Status::readOccState: reading OCC{} state from {}", | 
|  | 177 | instance, filename.c_str()) | 
|  | 178 | .c_str()); | 
|  | 179 |  | 
|  | 180 | std::ifstream file(filename, std::ios::in); | 
|  | 181 | const int open_errno = errno; | 
|  | 182 | if (file) | 
|  | 183 | { | 
|  | 184 | file >> state; | 
|  | 185 | if (state != lastState) | 
|  | 186 | { | 
|  | 187 | // Trace OCC state changes | 
|  | 188 | log<level::INFO>( | 
|  | 189 | fmt::format("Status::readOccState: OCC{} state 0x{:02X}", | 
|  | 190 | instance, state) | 
|  | 191 | .c_str()); | 
|  | 192 | lastState = state; | 
| Chris Cain | 78e8601 | 2021-03-04 16:15:31 -0600 | [diff] [blame] | 193 |  | 
|  | 194 | #ifdef POWER10 | 
|  | 195 | if ((OccState(state) == OccState::ACTIVE) && (device.master())) | 
|  | 196 | { | 
|  | 197 | // Kernel detected that the master OCC went to active state | 
|  | 198 | occsWentActive(); | 
|  | 199 | } | 
|  | 200 | #endif | 
| Chris Cain | a8857c5 | 2021-01-27 11:53:05 -0600 | [diff] [blame] | 201 | } | 
|  | 202 | file.close(); | 
|  | 203 | } | 
|  | 204 | else | 
|  | 205 | { | 
|  | 206 | // If not able to read, OCC may be offline | 
|  | 207 | log<level::DEBUG>( | 
|  | 208 | fmt::format("Status::readOccState: open failed (errno={})", | 
|  | 209 | open_errno) | 
|  | 210 | .c_str()); | 
|  | 211 | lastState = 0; | 
|  | 212 | } | 
|  | 213 | } | 
|  | 214 |  | 
| Chris Cain | 78e8601 | 2021-03-04 16:15:31 -0600 | [diff] [blame] | 215 | #ifdef POWER10 | 
|  | 216 | // Check if Hypervisor target is PowerVM | 
|  | 217 | bool Status::isPowerVM() | 
|  | 218 | { | 
|  | 219 | using namespace open_power::occ::powermode; | 
|  | 220 | namespace Hyper = sdbusplus::com::ibm::Host::server; | 
|  | 221 | constexpr auto HYPE_PATH = "/com/ibm/host0/hypervisor"; | 
|  | 222 | constexpr auto HYPE_INTERFACE = "com.ibm.Host.Target"; | 
|  | 223 | constexpr auto HYPE_PROP = "Target"; | 
|  | 224 |  | 
|  | 225 | bool powerVmTarget = false; | 
|  | 226 |  | 
|  | 227 | // This will throw exception on failure | 
|  | 228 | auto& bus = utils::getBus(); | 
|  | 229 | auto service = utils::getService(HYPE_PATH, HYPE_INTERFACE); | 
|  | 230 | auto method = bus.new_method_call(service.c_str(), HYPE_PATH, | 
|  | 231 | "org.freedesktop.DBus.Properties", "Get"); | 
|  | 232 | method.append(HYPE_INTERFACE, HYPE_PROP); | 
|  | 233 | auto reply = bus.call(method); | 
|  | 234 |  | 
|  | 235 | std::variant<std::string> hyperEntryValue; | 
|  | 236 | reply.read(hyperEntryValue); | 
|  | 237 | auto propVal = std::get<std::string>(hyperEntryValue); | 
|  | 238 | if (Hyper::Target::convertHypervisorFromString(propVal) == | 
|  | 239 | Hyper::Target::Hypervisor::PowerVM) | 
|  | 240 | { | 
|  | 241 | powerVmTarget = true; | 
|  | 242 | } | 
|  | 243 |  | 
|  | 244 | log<level::DEBUG>( | 
|  | 245 | fmt::format("Status::isPowerVM returning {}", powerVmTarget).c_str()); | 
|  | 246 |  | 
|  | 247 | return powerVmTarget; | 
|  | 248 | } | 
|  | 249 |  | 
|  | 250 | // Get the requested power mode | 
|  | 251 | SysPwrMode Status::getMode() | 
|  | 252 | { | 
|  | 253 | using namespace open_power::occ::powermode; | 
|  | 254 | SysPwrMode pmode = SysPwrMode::NO_CHANGE; | 
|  | 255 |  | 
|  | 256 | // This will throw exception on failure | 
|  | 257 | auto& bus = utils::getBus(); | 
|  | 258 | auto service = utils::getService(PMODE_PATH, PMODE_INTERFACE); | 
|  | 259 | auto method = bus.new_method_call(service.c_str(), PMODE_PATH, | 
|  | 260 | "org.freedesktop.DBus.Properties", "Get"); | 
|  | 261 | method.append(PMODE_INTERFACE, POWER_MODE_PROP); | 
|  | 262 | auto reply = bus.call(method); | 
|  | 263 |  | 
|  | 264 | std::variant<std::string> stateEntryValue; | 
|  | 265 | reply.read(stateEntryValue); | 
|  | 266 | auto propVal = std::get<std::string>(stateEntryValue); | 
|  | 267 | pmode = powermode::convertStringToMode(propVal); | 
|  | 268 |  | 
|  | 269 | log<level::DEBUG>( | 
|  | 270 | fmt::format("Status::getMode returning {}", pmode).c_str()); | 
|  | 271 |  | 
|  | 272 | return pmode; | 
|  | 273 | } | 
|  | 274 |  | 
|  | 275 | // Special processing that needs to happen once the OCCs change to ACTIVE state | 
|  | 276 | void Status::occsWentActive() | 
|  | 277 | { | 
|  | 278 | CmdStatus status = CmdStatus::SUCCESS; | 
|  | 279 |  | 
|  | 280 | status = sendModeChange(); | 
|  | 281 | if (status != CmdStatus::SUCCESS) | 
|  | 282 | { | 
| George Liu | b5ca101 | 2021-09-10 12:53:11 +0800 | [diff] [blame] | 283 | log<level::ERR>( | 
|  | 284 | fmt::format( | 
|  | 285 | "Status::occsWentActive: OCC mode change failed with status {}", | 
|  | 286 | status) | 
|  | 287 | .c_str()); | 
| Chris Cain | 78e8601 | 2021-03-04 16:15:31 -0600 | [diff] [blame] | 288 | } | 
|  | 289 |  | 
|  | 290 | status = sendIpsData(); | 
|  | 291 | if (status != CmdStatus::SUCCESS) | 
|  | 292 | { | 
|  | 293 | log<level::ERR>( | 
|  | 294 | fmt::format( | 
| George Liu | b5ca101 | 2021-09-10 12:53:11 +0800 | [diff] [blame] | 295 | "Status::occsWentActive: Sending Idle Power Save Config data failed with status {}", | 
| Chris Cain | 78e8601 | 2021-03-04 16:15:31 -0600 | [diff] [blame] | 296 | status) | 
|  | 297 | .c_str()); | 
|  | 298 | } | 
|  | 299 | } | 
|  | 300 |  | 
|  | 301 | // Send mode change request to the master OCC | 
|  | 302 | CmdStatus Status::sendModeChange() | 
|  | 303 | { | 
|  | 304 | CmdStatus status = CmdStatus::FAILURE; | 
|  | 305 |  | 
|  | 306 | if (!device.master()) | 
|  | 307 | { | 
|  | 308 | log<level::ERR>( | 
| George Liu | b5ca101 | 2021-09-10 12:53:11 +0800 | [diff] [blame] | 309 | fmt::format( | 
|  | 310 | "Status::sendModeChange: MODE CHANGE does not get sent to slave OCC{}", | 
|  | 311 | instance) | 
| Chris Cain | 78e8601 | 2021-03-04 16:15:31 -0600 | [diff] [blame] | 312 | .c_str()); | 
|  | 313 | return status; | 
|  | 314 | } | 
|  | 315 | if (!isPowerVM()) | 
|  | 316 | { | 
|  | 317 | // Mode change is only supported on PowerVM systems | 
| George Liu | b5ca101 | 2021-09-10 12:53:11 +0800 | [diff] [blame] | 318 | log<level::DEBUG>( | 
|  | 319 | "Status::sendModeChange: MODE CHANGE does not get sent on non-PowerVM systems"); | 
| Chris Cain | 78e8601 | 2021-03-04 16:15:31 -0600 | [diff] [blame] | 320 | return CmdStatus::SUCCESS; | 
|  | 321 | } | 
|  | 322 |  | 
|  | 323 | const SysPwrMode newMode = getMode(); | 
|  | 324 |  | 
|  | 325 | if (VALID_POWER_MODE_SETTING(newMode)) | 
|  | 326 | { | 
|  | 327 | std::vector<std::uint8_t> cmd, rsp; | 
|  | 328 | cmd.push_back(uint8_t(CmdType::SET_MODE_AND_STATE)); | 
|  | 329 | cmd.push_back(0x00); // Data Length (2 bytes) | 
|  | 330 | cmd.push_back(0x06); | 
|  | 331 | cmd.push_back(0x30); // Data (Version) | 
|  | 332 | cmd.push_back(uint8_t(OccState::NO_CHANGE)); | 
|  | 333 | cmd.push_back(uint8_t(newMode)); | 
|  | 334 | cmd.push_back(0x00); // Mode Data (Freq Point) | 
|  | 335 | cmd.push_back(0x00); // | 
|  | 336 | cmd.push_back(0x00); // reserved | 
| George Liu | b5ca101 | 2021-09-10 12:53:11 +0800 | [diff] [blame] | 337 | log<level::INFO>( | 
|  | 338 | fmt::format( | 
|  | 339 | "Status::sendModeChange: SET_MODE({}) command to OCC{} ({} bytes)", | 
|  | 340 | newMode, instance, cmd.size()) | 
|  | 341 | .c_str()); | 
| Chris Cain | 78e8601 | 2021-03-04 16:15:31 -0600 | [diff] [blame] | 342 | status = occCmd.send(cmd, rsp); | 
|  | 343 | if (status == CmdStatus::SUCCESS) | 
|  | 344 | { | 
|  | 345 | if (rsp.size() == 5) | 
|  | 346 | { | 
|  | 347 | if (RspStatus::SUCCESS == RspStatus(rsp[2])) | 
|  | 348 | { | 
| George Liu | b5ca101 | 2021-09-10 12:53:11 +0800 | [diff] [blame] | 349 | log<level::DEBUG>( | 
|  | 350 | "Status::sendModeChange: - Mode change completed successfully"); | 
| Chris Cain | 78e8601 | 2021-03-04 16:15:31 -0600 | [diff] [blame] | 351 | } | 
|  | 352 | else | 
|  | 353 | { | 
|  | 354 | log<level::ERR>( | 
| George Liu | b5ca101 | 2021-09-10 12:53:11 +0800 | [diff] [blame] | 355 | fmt::format( | 
|  | 356 | "Status::sendModeChange: SET MODE failed with status 0x{:02X}", | 
|  | 357 | rsp[2]) | 
| Chris Cain | 78e8601 | 2021-03-04 16:15:31 -0600 | [diff] [blame] | 358 | .c_str()); | 
|  | 359 | } | 
|  | 360 | } | 
|  | 361 | else | 
|  | 362 | { | 
|  | 363 | log<level::ERR>( | 
|  | 364 | "Status::sendModeChange: INVALID SET MODE response"); | 
|  | 365 | dump_hex(rsp); | 
|  | 366 | } | 
|  | 367 | } | 
|  | 368 | else | 
|  | 369 | { | 
|  | 370 | if (status == CmdStatus::OPEN_FAILURE) | 
|  | 371 | { | 
|  | 372 | log<level::WARNING>( | 
|  | 373 | "Status::sendModeChange: OCC not active yet"); | 
|  | 374 | } | 
|  | 375 | else | 
|  | 376 | { | 
|  | 377 | log<level::ERR>("Status::sendModeChange: SET_MODE FAILED!"); | 
|  | 378 | } | 
|  | 379 | } | 
|  | 380 | } | 
|  | 381 | else | 
|  | 382 | { | 
|  | 383 | log<level::ERR>( | 
|  | 384 | fmt::format( | 
|  | 385 | "Status::sendModeChange: Unable to set power mode to {}", | 
|  | 386 | newMode) | 
|  | 387 | .c_str()); | 
|  | 388 | } | 
|  | 389 |  | 
|  | 390 | return status; | 
|  | 391 | } | 
|  | 392 |  | 
|  | 393 | // Send Idle Power Saver config data to the master OCC | 
|  | 394 | CmdStatus Status::sendIpsData() | 
|  | 395 | { | 
|  | 396 | CmdStatus status = CmdStatus::FAILURE; | 
|  | 397 |  | 
|  | 398 | if (!device.master()) | 
|  | 399 | { | 
|  | 400 | log<level::ERR>( | 
| George Liu | b5ca101 | 2021-09-10 12:53:11 +0800 | [diff] [blame] | 401 | fmt::format( | 
|  | 402 | "Status::sendIpsData: SET_CFG_DATA[IPS] does not get sent to slave OCC{}", | 
|  | 403 | instance) | 
| Chris Cain | 78e8601 | 2021-03-04 16:15:31 -0600 | [diff] [blame] | 404 | .c_str()); | 
|  | 405 | return status; | 
|  | 406 | } | 
|  | 407 | if (!isPowerVM()) | 
|  | 408 | { | 
|  | 409 | // Idle Power Saver data is only supported on PowerVM systems | 
| George Liu | b5ca101 | 2021-09-10 12:53:11 +0800 | [diff] [blame] | 410 | log<level::DEBUG>( | 
|  | 411 | "Status::sendIpsData: SET_CFG_DATA[IPS] does not get sent on non-PowerVM systems"); | 
| Chris Cain | 78e8601 | 2021-03-04 16:15:31 -0600 | [diff] [blame] | 412 | return CmdStatus::SUCCESS; | 
|  | 413 | } | 
|  | 414 |  | 
|  | 415 | std::vector<std::uint8_t> cmd, rsp; | 
|  | 416 | cmd.push_back(uint8_t(CmdType::SET_CONFIG_DATA)); | 
|  | 417 | cmd.push_back(0x00); // Data Length (2 bytes) | 
|  | 418 | cmd.push_back(0x09); | 
|  | 419 | // Data: | 
|  | 420 | cmd.push_back(0x11); // Config Format: IPS Settings | 
|  | 421 | cmd.push_back(0x00); // Version | 
| Chris Cain | eeb95ba | 2021-06-29 17:59:30 -0500 | [diff] [blame] | 422 | cmd.push_back(0x00); // IPS Enable: disabled | 
| Chris Cain | 78e8601 | 2021-03-04 16:15:31 -0600 | [diff] [blame] | 423 | cmd.push_back(0x00); // Enter Delay Time (240s) | 
|  | 424 | cmd.push_back(0xF0); // | 
|  | 425 | cmd.push_back(0x08); // Enter Utilization (8%) | 
|  | 426 | cmd.push_back(0x00); // Exit Delay Time (10s) | 
|  | 427 | cmd.push_back(0x0A); // | 
|  | 428 | cmd.push_back(0x0C); // Exit Utilization (12%) | 
| George Liu | b5ca101 | 2021-09-10 12:53:11 +0800 | [diff] [blame] | 429 | log<level::INFO>( | 
|  | 430 | fmt::format( | 
|  | 431 | "Status::sendIpsData: SET_CFG_DATA[IPS] command to OCC{} ({} bytes)", | 
|  | 432 | instance, cmd.size()) | 
|  | 433 | .c_str()); | 
| Chris Cain | 78e8601 | 2021-03-04 16:15:31 -0600 | [diff] [blame] | 434 | status = occCmd.send(cmd, rsp); | 
|  | 435 | if (status == CmdStatus::SUCCESS) | 
|  | 436 | { | 
|  | 437 | if (rsp.size() == 5) | 
|  | 438 | { | 
|  | 439 | if (RspStatus::SUCCESS == RspStatus(rsp[2])) | 
|  | 440 | { | 
| George Liu | b5ca101 | 2021-09-10 12:53:11 +0800 | [diff] [blame] | 441 | log<level::DEBUG>( | 
|  | 442 | "Status::sendIpsData: - SET_CFG_DATA[IPS] completed successfully"); | 
| Chris Cain | 78e8601 | 2021-03-04 16:15:31 -0600 | [diff] [blame] | 443 | } | 
|  | 444 | else | 
|  | 445 | { | 
|  | 446 | log<level::ERR>( | 
| George Liu | b5ca101 | 2021-09-10 12:53:11 +0800 | [diff] [blame] | 447 | fmt::format( | 
|  | 448 | "Status::sendIpsData: SET_CFG_DATA[IPS] failed with status 0x{:02X}", | 
|  | 449 | rsp[2]) | 
| Chris Cain | 78e8601 | 2021-03-04 16:15:31 -0600 | [diff] [blame] | 450 | .c_str()); | 
|  | 451 | } | 
|  | 452 | } | 
|  | 453 | else | 
|  | 454 | { | 
|  | 455 | log<level::ERR>( | 
|  | 456 | "Status::sendIpsData: INVALID SET_CFG_DATA[IPS] response"); | 
|  | 457 | dump_hex(rsp); | 
|  | 458 | } | 
|  | 459 | } | 
|  | 460 | else | 
|  | 461 | { | 
|  | 462 | if (status == CmdStatus::OPEN_FAILURE) | 
|  | 463 | { | 
|  | 464 | log<level::WARNING>("Status::sendIpsData: OCC not active yet"); | 
|  | 465 | } | 
|  | 466 | else | 
|  | 467 | { | 
|  | 468 | log<level::ERR>("Status::sendIpsData: SET_CFG_DATA[IPS] FAILED!"); | 
|  | 469 | } | 
|  | 470 | } | 
|  | 471 |  | 
|  | 472 | return status; | 
|  | 473 | } | 
|  | 474 |  | 
|  | 475 | #endif // POWER10 | 
|  | 476 |  | 
| Vishwanatha Subbanna | 307d80b | 2017-06-28 15:56:09 +0530 | [diff] [blame] | 477 | } // namespace occ | 
|  | 478 | } // namespace open_power |