| Vishwanatha Subbanna | 506aa0f | 2017-01-24 14:58:25 +0530 | [diff] [blame] | 1 | /** | 
 | 2 |  * Copyright © 2016 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 |  */ | 
| Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 16 | #include "config.h" | 
 | 17 |  | 
 | 18 | #include "softoff.hpp" | 
 | 19 |  | 
| Vernon Mauery | 6a98fe7 | 2019-03-11 15:57:48 -0700 | [diff] [blame] | 20 | #include <ipmid/utils.hpp> | 
| Vishwanatha Subbanna | d27e71e | 2017-02-01 18:02:38 +0530 | [diff] [blame] | 21 | #include <phosphor-logging/log.hpp> | 
| Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 22 | #include <xyz/openbmc_project/Control/Host/server.hpp> | 
| Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 23 |  | 
 | 24 | #include <chrono> | 
| Vishwanatha Subbanna | 506aa0f | 2017-01-24 14:58:25 +0530 | [diff] [blame] | 25 | namespace phosphor | 
 | 26 | { | 
 | 27 | namespace ipmi | 
 | 28 | { | 
| Vishwanatha Subbanna | 7cc9d71 | 2017-01-24 18:48:40 +0530 | [diff] [blame] | 29 |  | 
| Andrew Geissler | f0f496c | 2017-05-02 13:54:35 -0500 | [diff] [blame] | 30 | using namespace phosphor::logging; | 
 | 31 | using namespace sdbusplus::xyz::openbmc_project::Control::server; | 
 | 32 |  | 
 | 33 | void SoftPowerOff::sendHostShutDownCmd() | 
| Vishwanatha Subbanna | 7cc9d71 | 2017-01-24 18:48:40 +0530 | [diff] [blame] | 34 | { | 
| Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 35 |     auto ctrlHostPath = std::string{CONTROL_HOST_OBJ_MGR} + '/' + HOST_NAME + | 
 | 36 |                         '0'; | 
| Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 37 |     auto host = ::ipmi::getService(this->bus, CONTROL_HOST_BUSNAME, | 
| Andrew Geissler | f0f496c | 2017-05-02 13:54:35 -0500 | [diff] [blame] | 38 |                                    ctrlHostPath.c_str()); | 
| Vishwanatha Subbanna | 7cc9d71 | 2017-01-24 18:48:40 +0530 | [diff] [blame] | 39 |  | 
| Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 40 |     auto method = bus.new_method_call(host.c_str(), ctrlHostPath.c_str(), | 
 | 41 |                                       CONTROL_HOST_BUSNAME, "Execute"); | 
| Vishwanatha Subbanna | 7cc9d71 | 2017-01-24 18:48:40 +0530 | [diff] [blame] | 42 |  | 
| Andrew Geissler | f0f496c | 2017-05-02 13:54:35 -0500 | [diff] [blame] | 43 |     method.append(convertForMessage(Host::Command::SoftOff).c_str()); | 
 | 44 |  | 
 | 45 |     auto reply = bus.call(method); | 
 | 46 |     if (reply.is_method_error()) | 
| Vishwanatha Subbanna | d27e71e | 2017-02-01 18:02:38 +0530 | [diff] [blame] | 47 |     { | 
| Andrew Geissler | f0f496c | 2017-05-02 13:54:35 -0500 | [diff] [blame] | 48 |         log<level::ERR>("Error in call to control host Execute"); | 
 | 49 |         // TODO openbmc/openbmc#851 - Once available, throw returned error | 
 | 50 |         throw std::runtime_error("Error in call to control host Execute"); | 
| Vishwanatha Subbanna | d27e71e | 2017-02-01 18:02:38 +0530 | [diff] [blame] | 51 |     } | 
| Andrew Geissler | f0f496c | 2017-05-02 13:54:35 -0500 | [diff] [blame] | 52 |  | 
| Vishwanatha Subbanna | 7cc9d71 | 2017-01-24 18:48:40 +0530 | [diff] [blame] | 53 |     return; | 
 | 54 | } | 
| Vishwanatha Subbanna | bcb7688 | 2017-01-25 16:29:43 +0530 | [diff] [blame] | 55 |  | 
| Andrew Geissler | f0f496c | 2017-05-02 13:54:35 -0500 | [diff] [blame] | 56 | // Function called on host control signals | 
| Patrick Williams | 5d82f47 | 2022-07-22 19:26:53 -0500 | [diff] [blame] | 57 | void SoftPowerOff::hostControlEvent(sdbusplus::message_t& msg) | 
| Vishwanatha Subbanna | 31272b8 | 2017-02-01 18:53:14 +0530 | [diff] [blame] | 58 | { | 
| Andrew Geissler | f0f496c | 2017-05-02 13:54:35 -0500 | [diff] [blame] | 59 |     std::string cmdCompleted{}; | 
 | 60 |     std::string cmdStatus{}; | 
| Vishwanatha Subbanna | 31272b8 | 2017-02-01 18:53:14 +0530 | [diff] [blame] | 61 |  | 
| Andrew Geissler | f0f496c | 2017-05-02 13:54:35 -0500 | [diff] [blame] | 62 |     msg.read(cmdCompleted, cmdStatus); | 
 | 63 |  | 
 | 64 |     log<level::DEBUG>("Host control signal values", | 
| Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 65 |                       entry("COMMAND=%s", cmdCompleted.c_str()), | 
 | 66 |                       entry("STATUS=%s", cmdStatus.c_str())); | 
| Andrew Geissler | f0f496c | 2017-05-02 13:54:35 -0500 | [diff] [blame] | 67 |  | 
| Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 68 |     if (Host::convertResultFromString(cmdStatus) == Host::Result::Success) | 
| Vishwanatha Subbanna | 31272b8 | 2017-02-01 18:53:14 +0530 | [diff] [blame] | 69 |     { | 
| Andrew Geissler | f0f496c | 2017-05-02 13:54:35 -0500 | [diff] [blame] | 70 |         // Set our internal property indicating we got host attention | 
| Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 71 |         sdbusplus::xyz::openbmc_project::Ipmi::Internal ::server::SoftPowerOff:: | 
 | 72 |             responseReceived(HostResponse::SoftOffReceived); | 
| Andrew Geissler | f0f496c | 2017-05-02 13:54:35 -0500 | [diff] [blame] | 73 |  | 
 | 74 |         // Start timer for host shutdown | 
 | 75 |         using namespace std::chrono; | 
| Vishwanatha Subbanna | 31272b8 | 2017-02-01 18:53:14 +0530 | [diff] [blame] | 76 |         auto time = duration_cast<microseconds>( | 
| Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 77 |             seconds(IPMI_HOST_SHUTDOWN_COMPLETE_TIMEOUT_SECS)); | 
| Vishwanatha Subbanna | 917454b | 2017-02-24 00:16:05 +0530 | [diff] [blame] | 78 |         auto r = startTimer(time); | 
| Vishwanatha Subbanna | 31272b8 | 2017-02-01 18:53:14 +0530 | [diff] [blame] | 79 |         if (r < 0) | 
 | 80 |         { | 
| Vishwanatha Subbanna | 917454b | 2017-02-24 00:16:05 +0530 | [diff] [blame] | 81 |             log<level::ERR>("Failure to start Host shutdown wait timer", | 
| Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 82 |                             entry("ERRNO=0x%X", -r)); | 
| Vishwanatha Subbanna | 31272b8 | 2017-02-01 18:53:14 +0530 | [diff] [blame] | 83 |         } | 
| Vishwanatha Subbanna | 917454b | 2017-02-24 00:16:05 +0530 | [diff] [blame] | 84 |         else | 
 | 85 |         { | 
| Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 86 |             log<level::INFO>( | 
 | 87 |                 "Timer started waiting for host to shutdown", | 
| Joseph Reynolds | 510eb9c | 2018-05-30 11:51:28 -0500 | [diff] [blame] | 88 |                 entry("TIMEOUT_IN_MSEC=%llu", | 
| Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 89 |                       (duration_cast<milliseconds>( | 
 | 90 |                            seconds(IPMI_HOST_SHUTDOWN_COMPLETE_TIMEOUT_SECS))) | 
 | 91 |                           .count())); | 
| Vishwanatha Subbanna | 917454b | 2017-02-24 00:16:05 +0530 | [diff] [blame] | 92 |         } | 
| Vishwanatha Subbanna | 31272b8 | 2017-02-01 18:53:14 +0530 | [diff] [blame] | 93 |     } | 
| Andrew Geissler | f0f496c | 2017-05-02 13:54:35 -0500 | [diff] [blame] | 94 |     else | 
 | 95 |     { | 
| Andrew Geissler | 5f4fe3c | 2017-05-31 19:34:41 -0500 | [diff] [blame] | 96 |         // An error on the initial attention is not considered an error, just | 
 | 97 |         // exit normally and allow remaining shutdown targets to run | 
 | 98 |         log<level::INFO>("Timeout on host attention, continue with power down"); | 
 | 99 |         completed = true; | 
| Andrew Geissler | f0f496c | 2017-05-02 13:54:35 -0500 | [diff] [blame] | 100 |     } | 
 | 101 |     return; | 
 | 102 | } | 
 | 103 |  | 
 | 104 | // Starts a timer | 
 | 105 | int SoftPowerOff::startTimer(const std::chrono::microseconds& usec) | 
 | 106 | { | 
| Vernon Mauery | 1181af7 | 2018-10-08 12:05:00 -0700 | [diff] [blame] | 107 |     return timer.start(usec); | 
| Andrew Geissler | f0f496c | 2017-05-02 13:54:35 -0500 | [diff] [blame] | 108 | } | 
 | 109 |  | 
 | 110 | // Host Response handler | 
 | 111 | auto SoftPowerOff::responseReceived(HostResponse response) -> HostResponse | 
 | 112 | { | 
 | 113 |     using namespace std::chrono; | 
 | 114 |  | 
 | 115 |     if (response == HostResponse::HostShutdown) | 
| Vishwanatha Subbanna | 31272b8 | 2017-02-01 18:53:14 +0530 | [diff] [blame] | 116 |     { | 
 | 117 |         // Disable the timer since Host has quiesced and we are | 
 | 118 |         // done with soft power off part | 
| Vernon Mauery | 1181af7 | 2018-10-08 12:05:00 -0700 | [diff] [blame] | 119 |         auto r = timer.stop(); | 
| Vishwanatha Subbanna | 31272b8 | 2017-02-01 18:53:14 +0530 | [diff] [blame] | 120 |         if (r < 0) | 
 | 121 |         { | 
 | 122 |             log<level::ERR>("Failure to STOP the timer", | 
| Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 123 |                             entry("ERRNO=0x%X", -r)); | 
| Vishwanatha Subbanna | 31272b8 | 2017-02-01 18:53:14 +0530 | [diff] [blame] | 124 |         } | 
 | 125 |  | 
 | 126 |         // This marks the completion of soft power off sequence. | 
 | 127 |         completed = true; | 
 | 128 |     } | 
 | 129 |  | 
| Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 130 |     return sdbusplus::xyz::openbmc_project::Ipmi::Internal ::server:: | 
 | 131 |         SoftPowerOff::responseReceived(response); | 
| Vishwanatha Subbanna | 31272b8 | 2017-02-01 18:53:14 +0530 | [diff] [blame] | 132 | } | 
 | 133 |  | 
| Vishwanatha Subbanna | 506aa0f | 2017-01-24 14:58:25 +0530 | [diff] [blame] | 134 | } // namespace ipmi | 
 | 135 | } // namespace phosphor |