blob: ceff8f37d0e53e7a5d2b69d7ce13c795f7f57cdf [file] [log] [blame]
Vishwanatha Subbanna307d80b2017-06-28 15:56:09 +05301#pragma once
George Liubddcf852021-09-08 08:46:22 +08002#include "config.h"
Vishwanatha Subbanna307d80b2017-06-28 15:56:09 +05303
Gunnar Mills94df8c92018-09-14 14:50:03 -05004#include "i2c_occ.hpp"
Chris Caina8857c52021-01-27 11:53:05 -06005#include "occ_command.hpp"
Gunnar Mills94df8c92018-09-14 14:50:03 -05006#include "occ_device.hpp"
7#include "occ_events.hpp"
George Liuf3b75142021-06-10 11:22:50 +08008#include "utils.hpp"
Gunnar Mills94df8c92018-09-14 14:50:03 -05009
Gunnar Mills94df8c92018-09-14 14:50:03 -050010#include <org/open_power/Control/Host/server.hpp>
11#include <org/open_power/OCC/Status/server.hpp>
Vishwanatha Subbanna307d80b2017-06-28 15:56:09 +053012#include <sdbusplus/bus.hpp>
13#include <sdbusplus/server/object.hpp>
Lei YU0ab90ca2017-07-13 17:02:23 +080014
George Liub5ca1012021-09-10 12:53:11 +080015#include <functional>
16
Vishwanatha Subbanna307d80b2017-06-28 15:56:09 +053017namespace open_power
18{
19namespace occ
20{
21
Edward A. James636577f2017-10-06 10:53:55 -050022class Manager;
Vishwanatha Subbanna307d80b2017-06-28 15:56:09 +053023namespace Base = sdbusplus::org::open_power::OCC::server;
24using Interface = sdbusplus::server::object::object<Base::Status>;
25
Vishwanatha Subbanna30e329a2017-07-24 23:13:14 +053026// IPMID's host control application
27namespace Control = sdbusplus::org::open_power::Control::server;
28
29// For waiting on signals
30namespace sdbusRule = sdbusplus::bus::match::rules;
31
Vishwanatha Subbanna6add0b82017-07-21 19:02:37 +053032// OCC status instance. Ex. for "occ0", the instance is 0
33using instanceID = int;
34
35// IPMI sensor ID for a given OCC instance
36using sensorID = uint8_t;
37
Alexander Filippov1d69e192019-03-21 18:12:07 +030038// Human readable sensor name for DBus tree. E.g. "CPU0_OCC"
39using sensorName = std::string;
40
41// OCC sensors definitions in the map
42using sensorDefs = std::tuple<sensorID, sensorName>;
43
Eddie Jamese7d976b2018-02-26 13:42:45 -060044// OCC sysfs name prefix
45const std::string sysfsName = "occ-hwmon";
46
Vishwanatha Subbanna307d80b2017-06-28 15:56:09 +053047/** @class Status
48 * @brief Implementation of OCC Active Status
49 */
50class Status : public Interface
51{
Gunnar Mills94df8c92018-09-14 14:50:03 -050052 public:
53 Status() = delete;
54 ~Status() = default;
55 Status(const Status&) = delete;
56 Status& operator=(const Status&) = delete;
57 Status(Status&&) = default;
58 Status& operator=(Status&&) = default;
Vishwanatha Subbanna307d80b2017-06-28 15:56:09 +053059
Gunnar Mills94df8c92018-09-14 14:50:03 -050060 /** @brief Constructs the Status object and
61 * the underlying device object
62 *
Gunnar Mills94df8c92018-09-14 14:50:03 -050063 * @param[in] event - sd_event unique pointer reference
64 * @param[in] path - DBus object path
65 * @param[in] manager - OCC manager instance
66 * @param[in] callBack - Callback handler to invoke during
67 * property change
Tom Joseph00325232020-07-29 17:51:48 +053068 * @param[in] resetCallBack - callback handler to invoke for resetting the
69 * OCC if PLDM is the host communication
70 * protocol
Gunnar Mills94df8c92018-09-14 14:50:03 -050071 */
George Liuf3b75142021-06-10 11:22:50 +080072 Status(EventPtr& event, const char* path, const Manager& manager,
73 std::function<void(bool)> callBack = nullptr
Tom Joseph00325232020-07-29 17:51:48 +053074#ifdef PLDM
75 ,
76 std::function<void(instanceID)> resetCallBack = nullptr
77#endif
78 ) :
79
George Liuf3b75142021-06-10 11:22:50 +080080 Interface(utils::getBus(), getDbusPath(path).c_str(), true),
81 path(path), callBack(callBack), instance(getInstance(path)),
Gunnar Mills94df8c92018-09-14 14:50:03 -050082 device(event,
Lei YU0ab90ca2017-07-13 17:02:23 +080083#ifdef I2C_OCC
Eddie James774f9af2019-03-19 20:58:53 +000084 fs::path(DEV_PATH) / i2c_occ::getI2cDeviceName(path),
Lei YU0ab90ca2017-07-13 17:02:23 +080085#else
Eddie James774f9af2019-03-19 20:58:53 +000086 fs::path(DEV_PATH) /
87 fs::path(sysfsName + "." + std::to_string(instance + 1)),
Lei YU0ab90ca2017-07-13 17:02:23 +080088#endif
Gunnar Mills94df8c92018-09-14 14:50:03 -050089 manager, *this,
90 std::bind(std::mem_fn(&Status::deviceErrorHandler), this,
91 std::placeholders::_1)),
92 hostControlSignal(
George Liuf3b75142021-06-10 11:22:50 +080093 utils::getBus(),
Gunnar Mills94df8c92018-09-14 14:50:03 -050094 sdbusRule::type::signal() + sdbusRule::member("CommandComplete") +
95 sdbusRule::path("/org/open_power/control/host0") +
96 sdbusRule::interface("org.open_power.Control.Host") +
97 sdbusRule::argN(0, Control::convertForMessage(
98 Control::Host::Command::OCCReset)),
99 std::bind(std::mem_fn(&Status::hostControlEvent), this,
Chris Caina8857c52021-01-27 11:53:05 -0600100 std::placeholders::_1)),
George Liuf3b75142021-06-10 11:22:50 +0800101 occCmd(instance, (fs::path(OCC_CONTROL_ROOT) /
102 (std::string(OCC_NAME) + std::to_string(instance)))
103 .c_str())
Tom Joseph00325232020-07-29 17:51:48 +0530104#ifdef PLDM
105 ,
106 resetCallBack(resetCallBack)
107#endif
Gunnar Mills94df8c92018-09-14 14:50:03 -0500108 {
109 // Check to see if we have OCC already bound. If so, just set it
110 if (device.bound())
Vishwanatha Subbanna307d80b2017-06-28 15:56:09 +0530111 {
Gunnar Mills94df8c92018-09-14 14:50:03 -0500112 this->occActive(true);
Vishwanatha Subbanna307d80b2017-06-28 15:56:09 +0530113 }
114
Gunnar Mills94df8c92018-09-14 14:50:03 -0500115 // Announce that we are ready
116 this->emit_object_added();
117 }
Vishwanatha Subbanna32e84e92017-06-28 19:17:28 +0530118
Gunnar Mills94df8c92018-09-14 14:50:03 -0500119 /** @brief Since we are overriding the setter-occActive but not the
120 * getter-occActive, we need to have this using in order to
121 * allow passthrough usage of the getter-occActive
122 */
123 using Base::Status::occActive;
Vishwanatha Subbanna32e84e92017-06-28 19:17:28 +0530124
Gunnar Mills94df8c92018-09-14 14:50:03 -0500125 /** @brief SET OccActive to True or False
126 *
127 * @param[in] value - Intended value
128 *
129 * @return - Updated value of the property
130 */
131 bool occActive(bool value) override;
Vishwanatha Subbanna2dc9b1a2017-08-18 18:29:41 +0530132
Gunnar Mills94df8c92018-09-14 14:50:03 -0500133 /** @brief Starts OCC error detection */
134 inline void addErrorWatch()
135 {
136 return device.addErrorWatch();
137 }
Vishwanatha Subbanna2dc9b1a2017-08-18 18:29:41 +0530138
Gunnar Mills94df8c92018-09-14 14:50:03 -0500139 /** @brief Stops OCC error detection */
140 inline void removeErrorWatch()
141 {
142 return device.removeErrorWatch();
143 }
Eddie Jamesdae2d942017-12-20 10:50:03 -0600144
Gunnar Mills94df8c92018-09-14 14:50:03 -0500145 /** @brief Starts to watch how many OCCs are present on the master */
146 inline void addPresenceWatchMaster()
147 {
148 return device.addPresenceWatchMaster();
149 }
Vishwanatha Subbanna30e329a2017-07-24 23:13:14 +0530150
Chicago Duanbb895cb2021-06-18 19:37:16 +0800151 /** @brief Gets the occ instance number */
152 unsigned int getOccInstanceID()
153 {
154 return instance;
155 }
156
157 /** @brief Is this OCC the master OCC */
158 bool isMasterOcc()
159 {
160 return device.master();
161 }
162
Chris Caina8857c52021-01-27 11:53:05 -0600163 /** @brief Read OCC state (will trigger kernel to poll the OCC) */
164 void readOccState();
165
Chris Cain78e86012021-03-04 16:15:31 -0600166#ifdef POWER10
167 /** @brief Handle additional tasks when the OCCs reach active state */
168 void occsWentActive();
169
170 /** @brief Send mode change command to the master OCC
171 * @return SUCCESS on success
172 */
173 CmdStatus sendModeChange();
Chris Cain1d51da22021-09-21 14:13:41 -0500174
175 /** @brief Send Idle Power Saver config data to the master OCC
176 * @return SUCCESS on success
177 */
178 CmdStatus sendIpsData();
Chris Cain78e86012021-03-04 16:15:31 -0600179#endif // POWER10
180
Gunnar Mills94df8c92018-09-14 14:50:03 -0500181 private:
Gunnar Mills94df8c92018-09-14 14:50:03 -0500182 /** @brief OCC dbus object path */
183 std::string path;
Vishwanatha Subbanna32e84e92017-06-28 19:17:28 +0530184
Gunnar Mills94df8c92018-09-14 14:50:03 -0500185 /** @brief Callback handler to be invoked during property change.
186 * This is a handler in Manager class
187 */
188 std::function<void(bool)> callBack;
Vishwanatha Subbanna2dc9b1a2017-08-18 18:29:41 +0530189
Gunnar Mills94df8c92018-09-14 14:50:03 -0500190 /** @brief OCC instance number. Ex, 0,1, etc */
Chris Caina8857c52021-01-27 11:53:05 -0600191 unsigned int instance;
192
193 /** @brief The last state read from the OCC */
194 unsigned int lastState = 0;
Vishwanatha Subbanna6add0b82017-07-21 19:02:37 +0530195
Alexander Filippov1d69e192019-03-21 18:12:07 +0300196 /** @brief OCC instance to Sensor definitions mapping */
197 static const std::map<instanceID, sensorDefs> sensorMap;
Vishwanatha Subbanna6add0b82017-07-21 19:02:37 +0530198
Gunnar Mills94df8c92018-09-14 14:50:03 -0500199 /** @brief OCC device object to do bind and unbind */
200 Device device;
Vishwanatha Subbannaee4d83d2017-06-29 18:35:00 +0530201
Gunnar Mills94df8c92018-09-14 14:50:03 -0500202 /** @brief Subscribe to host control signal
203 *
204 * Once the OCC reset is requested, BMC sends that message to host.
205 * If the host does not ack the message, then there would be a timeout
206 * and we need to catch that to log an error
207 **/
208 sdbusplus::bus::match_t hostControlSignal;
Vishwanatha Subbanna30e329a2017-07-24 23:13:14 +0530209
Chris Caina8857c52021-01-27 11:53:05 -0600210 /** @brief Command object to send commands to the OCC */
211 OccCommand occCmd;
212
Gunnar Mills94df8c92018-09-14 14:50:03 -0500213 /** @brief Callback handler when device errors are detected
214 *
215 * @param[in] error - True if an error is reported, false otherwise
216 */
217 void deviceErrorHandler(bool error);
Vishwanatha Subbanna30e329a2017-07-24 23:13:14 +0530218
Gunnar Mills94df8c92018-09-14 14:50:03 -0500219 /** @brief Callback function on host control signals
220 *
221 * @param[in] msg - Data associated with subscribed signal
222 */
223 void hostControlEvent(sdbusplus::message::message& msg);
Vishwanatha Subbanna30e329a2017-07-24 23:13:14 +0530224
Gunnar Mills94df8c92018-09-14 14:50:03 -0500225 /** @brief Sends a message to host control command handler to reset OCC
226 */
227 void resetOCC();
Alexander Filippov1d69e192019-03-21 18:12:07 +0300228
229 /** @brief Determines the instance ID by specified object path.
230 * @param[in] path Estimated OCC Dbus object path
231 * @return Instance number
232 */
233 static int getInstance(const std::string& path)
234 {
235 return (path.empty() ? 0 : path.back() - '0');
236 }
237
Chris Cain78e86012021-03-04 16:15:31 -0600238#ifdef POWER10
239 /** @brief Query the current Hypervisor target
240 * @return true if the current Hypervisor target is PowerVM
241 */
242 bool isPowerVM();
243
244 /** @brief Get the requested power mode property
245 * @return Power mode
246 */
247 SysPwrMode getMode();
248
Chris Cain1d51da22021-09-21 14:13:41 -0500249 /** @brief Get the Idle Power Saver properties
250 * @return true if IPS is enabled
Chris Cain78e86012021-03-04 16:15:31 -0600251 */
Chris Cain1d51da22021-09-21 14:13:41 -0500252 bool getIPSParms(uint8_t& enterUtil, uint16_t& enterTime, uint8_t& exitUtil,
253 uint16_t& exitTime);
Chris Cain78e86012021-03-04 16:15:31 -0600254#endif // POWER10
255
Alexander Filippov1d69e192019-03-21 18:12:07 +0300256 /** @brief Override the sensor name with name from the definition.
257 * @param[in] estimatedPath - Estimated OCC Dbus object path
258 * @return Fixed OCC DBus object path
259 */
260 static std::string getDbusPath(const std::string& estimatedPath)
261 {
262 if (!estimatedPath.empty())
263 {
264 auto it = sensorMap.find(getInstance(estimatedPath));
265 if (sensorMap.end() != it)
266 {
267 auto& name = std::get<1>(it->second);
268 if (!name.empty() && name != "None")
269 {
270 auto path = fs::path(estimatedPath);
271 path.replace_filename(name);
272 return path.string();
273 }
274 }
275 }
276
277 return estimatedPath;
278 }
Tom Joseph00325232020-07-29 17:51:48 +0530279#ifdef PLDM
280 std::function<void(instanceID)> resetCallBack = nullptr;
281#endif
Vishwanatha Subbanna307d80b2017-06-28 15:56:09 +0530282};
283
284} // namespace occ
285} // namespace open_power