blob: 24dcb0e34b980df46981f2cc5cc21d763e5d5ef4 [file] [log] [blame]
Vishwanatha Subbanna307d80b2017-06-28 15:56:09 +05301#pragma once
2
Gunnar Mills94df8c92018-09-14 14:50:03 -05003#include "i2c_occ.hpp"
4#include "occ_device.hpp"
5#include "occ_events.hpp"
6
Vishwanatha Subbanna2dc9b1a2017-08-18 18:29:41 +05307#include <functional>
Gunnar Mills94df8c92018-09-14 14:50:03 -05008#include <org/open_power/Control/Host/server.hpp>
9#include <org/open_power/OCC/Status/server.hpp>
Vishwanatha Subbanna307d80b2017-06-28 15:56:09 +053010#include <sdbusplus/bus.hpp>
11#include <sdbusplus/server/object.hpp>
Lei YU0ab90ca2017-07-13 17:02:23 +080012
Vishwanatha Subbanna307d80b2017-06-28 15:56:09 +053013namespace open_power
14{
15namespace occ
16{
17
Edward A. James636577f2017-10-06 10:53:55 -050018class Manager;
Vishwanatha Subbanna307d80b2017-06-28 15:56:09 +053019namespace Base = sdbusplus::org::open_power::OCC::server;
20using Interface = sdbusplus::server::object::object<Base::Status>;
21
Vishwanatha Subbanna30e329a2017-07-24 23:13:14 +053022// IPMID's host control application
23namespace Control = sdbusplus::org::open_power::Control::server;
24
25// For waiting on signals
26namespace sdbusRule = sdbusplus::bus::match::rules;
27
Vishwanatha Subbanna6add0b82017-07-21 19:02:37 +053028// OCC status instance. Ex. for "occ0", the instance is 0
29using instanceID = int;
30
31// IPMI sensor ID for a given OCC instance
32using sensorID = uint8_t;
33
Alexander Filippov1d69e192019-03-21 18:12:07 +030034// Human readable sensor name for DBus tree. E.g. "CPU0_OCC"
35using sensorName = std::string;
36
37// OCC sensors definitions in the map
38using sensorDefs = std::tuple<sensorID, sensorName>;
39
Eddie Jamese7d976b2018-02-26 13:42:45 -060040// OCC sysfs name prefix
41const std::string sysfsName = "occ-hwmon";
42
Vishwanatha Subbanna307d80b2017-06-28 15:56:09 +053043/** @class Status
44 * @brief Implementation of OCC Active Status
45 */
46class Status : public Interface
47{
Gunnar Mills94df8c92018-09-14 14:50:03 -050048 public:
49 Status() = delete;
50 ~Status() = default;
51 Status(const Status&) = delete;
52 Status& operator=(const Status&) = delete;
53 Status(Status&&) = default;
54 Status& operator=(Status&&) = default;
Vishwanatha Subbanna307d80b2017-06-28 15:56:09 +053055
Gunnar Mills94df8c92018-09-14 14:50:03 -050056 /** @brief Constructs the Status object and
57 * the underlying device object
58 *
59 * @param[in] bus - DBus bus to attach to
60 * @param[in] event - sd_event unique pointer reference
61 * @param[in] path - DBus object path
62 * @param[in] manager - OCC manager instance
63 * @param[in] callBack - Callback handler to invoke during
64 * property change
Tom Joseph00325232020-07-29 17:51:48 +053065 * @param[in] resetCallBack - callback handler to invoke for resetting the
66 * OCC if PLDM is the host communication
67 * protocol
Gunnar Mills94df8c92018-09-14 14:50:03 -050068 */
69 Status(sdbusplus::bus::bus& bus, EventPtr& event, const char* path,
Tom Joseph00325232020-07-29 17:51:48 +053070 const Manager& manager, std::function<void(bool)> callBack = nullptr
71#ifdef PLDM
72 ,
73 std::function<void(instanceID)> resetCallBack = nullptr
74#endif
75 ) :
76
Alexander Filippov1d69e192019-03-21 18:12:07 +030077 Interface(bus, getDbusPath(path).c_str(), true),
78 bus(bus), path(path), callBack(callBack), instance(getInstance(path)),
Gunnar Mills94df8c92018-09-14 14:50:03 -050079 device(event,
Lei YU0ab90ca2017-07-13 17:02:23 +080080#ifdef I2C_OCC
Eddie James774f9af2019-03-19 20:58:53 +000081 fs::path(DEV_PATH) / i2c_occ::getI2cDeviceName(path),
Lei YU0ab90ca2017-07-13 17:02:23 +080082#else
Eddie James774f9af2019-03-19 20:58:53 +000083 fs::path(DEV_PATH) /
84 fs::path(sysfsName + "." + std::to_string(instance + 1)),
Lei YU0ab90ca2017-07-13 17:02:23 +080085#endif
Gunnar Mills94df8c92018-09-14 14:50:03 -050086 manager, *this,
87 std::bind(std::mem_fn(&Status::deviceErrorHandler), this,
88 std::placeholders::_1)),
89 hostControlSignal(
90 bus,
91 sdbusRule::type::signal() + sdbusRule::member("CommandComplete") +
92 sdbusRule::path("/org/open_power/control/host0") +
93 sdbusRule::interface("org.open_power.Control.Host") +
94 sdbusRule::argN(0, Control::convertForMessage(
95 Control::Host::Command::OCCReset)),
96 std::bind(std::mem_fn(&Status::hostControlEvent), this,
97 std::placeholders::_1))
Tom Joseph00325232020-07-29 17:51:48 +053098#ifdef PLDM
99 ,
100 resetCallBack(resetCallBack)
101#endif
Gunnar Mills94df8c92018-09-14 14:50:03 -0500102 {
103 // Check to see if we have OCC already bound. If so, just set it
104 if (device.bound())
Vishwanatha Subbanna307d80b2017-06-28 15:56:09 +0530105 {
Gunnar Mills94df8c92018-09-14 14:50:03 -0500106 this->occActive(true);
Vishwanatha Subbanna307d80b2017-06-28 15:56:09 +0530107 }
108
Gunnar Mills94df8c92018-09-14 14:50:03 -0500109 // Announce that we are ready
110 this->emit_object_added();
111 }
Vishwanatha Subbanna32e84e92017-06-28 19:17:28 +0530112
Gunnar Mills94df8c92018-09-14 14:50:03 -0500113 /** @brief Since we are overriding the setter-occActive but not the
114 * getter-occActive, we need to have this using in order to
115 * allow passthrough usage of the getter-occActive
116 */
117 using Base::Status::occActive;
Vishwanatha Subbanna32e84e92017-06-28 19:17:28 +0530118
Gunnar Mills94df8c92018-09-14 14:50:03 -0500119 /** @brief SET OccActive to True or False
120 *
121 * @param[in] value - Intended value
122 *
123 * @return - Updated value of the property
124 */
125 bool occActive(bool value) override;
Vishwanatha Subbanna2dc9b1a2017-08-18 18:29:41 +0530126
Gunnar Mills94df8c92018-09-14 14:50:03 -0500127 /** @brief Starts OCC error detection */
128 inline void addErrorWatch()
129 {
130 return device.addErrorWatch();
131 }
Vishwanatha Subbanna2dc9b1a2017-08-18 18:29:41 +0530132
Gunnar Mills94df8c92018-09-14 14:50:03 -0500133 /** @brief Stops OCC error detection */
134 inline void removeErrorWatch()
135 {
136 return device.removeErrorWatch();
137 }
Eddie Jamesdae2d942017-12-20 10:50:03 -0600138
Gunnar Mills94df8c92018-09-14 14:50:03 -0500139 /** @brief Starts to watch how many OCCs are present on the master */
140 inline void addPresenceWatchMaster()
141 {
142 return device.addPresenceWatchMaster();
143 }
Vishwanatha Subbanna30e329a2017-07-24 23:13:14 +0530144
Gunnar Mills94df8c92018-09-14 14:50:03 -0500145 private:
146 /** @brief sdbus handle */
147 sdbusplus::bus::bus& bus;
Vishwanatha Subbanna30e329a2017-07-24 23:13:14 +0530148
Gunnar Mills94df8c92018-09-14 14:50:03 -0500149 /** @brief OCC dbus object path */
150 std::string path;
Vishwanatha Subbanna32e84e92017-06-28 19:17:28 +0530151
Gunnar Mills94df8c92018-09-14 14:50:03 -0500152 /** @brief Callback handler to be invoked during property change.
153 * This is a handler in Manager class
154 */
155 std::function<void(bool)> callBack;
Vishwanatha Subbanna2dc9b1a2017-08-18 18:29:41 +0530156
Gunnar Mills94df8c92018-09-14 14:50:03 -0500157 /** @brief OCC instance number. Ex, 0,1, etc */
158 int instance;
Vishwanatha Subbanna6add0b82017-07-21 19:02:37 +0530159
Alexander Filippov1d69e192019-03-21 18:12:07 +0300160 /** @brief OCC instance to Sensor definitions mapping */
161 static const std::map<instanceID, sensorDefs> sensorMap;
Vishwanatha Subbanna6add0b82017-07-21 19:02:37 +0530162
Gunnar Mills94df8c92018-09-14 14:50:03 -0500163 /** @brief OCC device object to do bind and unbind */
164 Device device;
Vishwanatha Subbannaee4d83d2017-06-29 18:35:00 +0530165
Gunnar Mills94df8c92018-09-14 14:50:03 -0500166 /** @brief Subscribe to host control signal
167 *
168 * Once the OCC reset is requested, BMC sends that message to host.
169 * If the host does not ack the message, then there would be a timeout
170 * and we need to catch that to log an error
171 **/
172 sdbusplus::bus::match_t hostControlSignal;
Vishwanatha Subbanna30e329a2017-07-24 23:13:14 +0530173
Gunnar Mills94df8c92018-09-14 14:50:03 -0500174 /** @brief Callback handler when device errors are detected
175 *
176 * @param[in] error - True if an error is reported, false otherwise
177 */
178 void deviceErrorHandler(bool error);
Vishwanatha Subbanna30e329a2017-07-24 23:13:14 +0530179
Gunnar Mills94df8c92018-09-14 14:50:03 -0500180 /** @brief Callback function on host control signals
181 *
182 * @param[in] msg - Data associated with subscribed signal
183 */
184 void hostControlEvent(sdbusplus::message::message& msg);
Vishwanatha Subbanna30e329a2017-07-24 23:13:14 +0530185
Gunnar Mills94df8c92018-09-14 14:50:03 -0500186 /** @brief Sends a message to host control command handler to reset OCC
187 */
188 void resetOCC();
Alexander Filippov1d69e192019-03-21 18:12:07 +0300189
190 /** @brief Determines the instance ID by specified object path.
191 * @param[in] path Estimated OCC Dbus object path
192 * @return Instance number
193 */
194 static int getInstance(const std::string& path)
195 {
196 return (path.empty() ? 0 : path.back() - '0');
197 }
198
199 /** @brief Override the sensor name with name from the definition.
200 * @param[in] estimatedPath - Estimated OCC Dbus object path
201 * @return Fixed OCC DBus object path
202 */
203 static std::string getDbusPath(const std::string& estimatedPath)
204 {
205 if (!estimatedPath.empty())
206 {
207 auto it = sensorMap.find(getInstance(estimatedPath));
208 if (sensorMap.end() != it)
209 {
210 auto& name = std::get<1>(it->second);
211 if (!name.empty() && name != "None")
212 {
213 auto path = fs::path(estimatedPath);
214 path.replace_filename(name);
215 return path.string();
216 }
217 }
218 }
219
220 return estimatedPath;
221 }
Tom Joseph00325232020-07-29 17:51:48 +0530222#ifdef PLDM
223 std::function<void(instanceID)> resetCallBack = nullptr;
224#endif
Vishwanatha Subbanna307d80b2017-06-28 15:56:09 +0530225};
226
227} // namespace occ
228} // namespace open_power