blob: 9e6c68714feea21fb0793668643dc45863139ead [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
Eddie Jamese7d976b2018-02-26 13:42:45 -060034// OCC sysfs name prefix
35const std::string sysfsName = "occ-hwmon";
36
Vishwanatha Subbanna307d80b2017-06-28 15:56:09 +053037/** @class Status
38 * @brief Implementation of OCC Active Status
39 */
40class Status : public Interface
41{
Gunnar Mills94df8c92018-09-14 14:50:03 -050042 public:
43 Status() = delete;
44 ~Status() = default;
45 Status(const Status&) = delete;
46 Status& operator=(const Status&) = delete;
47 Status(Status&&) = default;
48 Status& operator=(Status&&) = default;
Vishwanatha Subbanna307d80b2017-06-28 15:56:09 +053049
Gunnar Mills94df8c92018-09-14 14:50:03 -050050 /** @brief Constructs the Status object and
51 * the underlying device object
52 *
53 * @param[in] bus - DBus bus to attach to
54 * @param[in] event - sd_event unique pointer reference
55 * @param[in] path - DBus object path
56 * @param[in] manager - OCC manager instance
57 * @param[in] callBack - Callback handler to invoke during
58 * property change
59 */
60 Status(sdbusplus::bus::bus& bus, EventPtr& event, const char* path,
61 const Manager& manager,
62 std::function<void(bool)> callBack = nullptr) :
63 Interface(bus, path, true),
64 bus(bus), path(path), callBack(callBack),
65 instance(((this->path.back() - '0'))),
66 device(event,
Lei YU0ab90ca2017-07-13 17:02:23 +080067#ifdef I2C_OCC
Gunnar Mills94df8c92018-09-14 14:50:03 -050068 i2c_occ::getI2cDeviceName(path),
Lei YU0ab90ca2017-07-13 17:02:23 +080069#else
Gunnar Mills94df8c92018-09-14 14:50:03 -050070 sysfsName + "." + std::to_string(instance + 1),
Lei YU0ab90ca2017-07-13 17:02:23 +080071#endif
Gunnar Mills94df8c92018-09-14 14:50:03 -050072 manager, *this,
73 std::bind(std::mem_fn(&Status::deviceErrorHandler), this,
74 std::placeholders::_1)),
75 hostControlSignal(
76 bus,
77 sdbusRule::type::signal() + sdbusRule::member("CommandComplete") +
78 sdbusRule::path("/org/open_power/control/host0") +
79 sdbusRule::interface("org.open_power.Control.Host") +
80 sdbusRule::argN(0, Control::convertForMessage(
81 Control::Host::Command::OCCReset)),
82 std::bind(std::mem_fn(&Status::hostControlEvent), this,
83 std::placeholders::_1))
84 {
85 // Check to see if we have OCC already bound. If so, just set it
86 if (device.bound())
Vishwanatha Subbanna307d80b2017-06-28 15:56:09 +053087 {
Gunnar Mills94df8c92018-09-14 14:50:03 -050088 this->occActive(true);
Vishwanatha Subbanna307d80b2017-06-28 15:56:09 +053089 }
90
Gunnar Mills94df8c92018-09-14 14:50:03 -050091 // Announce that we are ready
92 this->emit_object_added();
93 }
Vishwanatha Subbanna32e84e92017-06-28 19:17:28 +053094
Gunnar Mills94df8c92018-09-14 14:50:03 -050095 /** @brief Since we are overriding the setter-occActive but not the
96 * getter-occActive, we need to have this using in order to
97 * allow passthrough usage of the getter-occActive
98 */
99 using Base::Status::occActive;
Vishwanatha Subbanna32e84e92017-06-28 19:17:28 +0530100
Gunnar Mills94df8c92018-09-14 14:50:03 -0500101 /** @brief SET OccActive to True or False
102 *
103 * @param[in] value - Intended value
104 *
105 * @return - Updated value of the property
106 */
107 bool occActive(bool value) override;
Vishwanatha Subbanna2dc9b1a2017-08-18 18:29:41 +0530108
Gunnar Mills94df8c92018-09-14 14:50:03 -0500109 /** @brief Starts OCC error detection */
110 inline void addErrorWatch()
111 {
112 return device.addErrorWatch();
113 }
Vishwanatha Subbanna2dc9b1a2017-08-18 18:29:41 +0530114
Gunnar Mills94df8c92018-09-14 14:50:03 -0500115 /** @brief Stops OCC error detection */
116 inline void removeErrorWatch()
117 {
118 return device.removeErrorWatch();
119 }
Eddie Jamesdae2d942017-12-20 10:50:03 -0600120
Gunnar Mills94df8c92018-09-14 14:50:03 -0500121 /** @brief Starts to watch how many OCCs are present on the master */
122 inline void addPresenceWatchMaster()
123 {
124 return device.addPresenceWatchMaster();
125 }
Vishwanatha Subbanna30e329a2017-07-24 23:13:14 +0530126
Gunnar Mills94df8c92018-09-14 14:50:03 -0500127 private:
128 /** @brief sdbus handle */
129 sdbusplus::bus::bus& bus;
Vishwanatha Subbanna30e329a2017-07-24 23:13:14 +0530130
Gunnar Mills94df8c92018-09-14 14:50:03 -0500131 /** @brief OCC dbus object path */
132 std::string path;
Vishwanatha Subbanna32e84e92017-06-28 19:17:28 +0530133
Gunnar Mills94df8c92018-09-14 14:50:03 -0500134 /** @brief Callback handler to be invoked during property change.
135 * This is a handler in Manager class
136 */
137 std::function<void(bool)> callBack;
Vishwanatha Subbanna2dc9b1a2017-08-18 18:29:41 +0530138
Gunnar Mills94df8c92018-09-14 14:50:03 -0500139 /** @brief OCC instance number. Ex, 0,1, etc */
140 int instance;
Vishwanatha Subbanna6add0b82017-07-21 19:02:37 +0530141
Gunnar Mills94df8c92018-09-14 14:50:03 -0500142 /** @brief OCC instance to Sensor ID mapping */
143 static const std::map<instanceID, sensorID> sensorMap;
Vishwanatha Subbanna6add0b82017-07-21 19:02:37 +0530144
Gunnar Mills94df8c92018-09-14 14:50:03 -0500145 /** @brief OCC device object to do bind and unbind */
146 Device device;
Vishwanatha Subbannaee4d83d2017-06-29 18:35:00 +0530147
Gunnar Mills94df8c92018-09-14 14:50:03 -0500148 /** @brief Subscribe to host control signal
149 *
150 * Once the OCC reset is requested, BMC sends that message to host.
151 * If the host does not ack the message, then there would be a timeout
152 * and we need to catch that to log an error
153 **/
154 sdbusplus::bus::match_t hostControlSignal;
Vishwanatha Subbanna30e329a2017-07-24 23:13:14 +0530155
Gunnar Mills94df8c92018-09-14 14:50:03 -0500156 /** @brief Callback handler when device errors are detected
157 *
158 * @param[in] error - True if an error is reported, false otherwise
159 */
160 void deviceErrorHandler(bool error);
Vishwanatha Subbanna30e329a2017-07-24 23:13:14 +0530161
Gunnar Mills94df8c92018-09-14 14:50:03 -0500162 /** @brief Callback function on host control signals
163 *
164 * @param[in] msg - Data associated with subscribed signal
165 */
166 void hostControlEvent(sdbusplus::message::message& msg);
Vishwanatha Subbanna30e329a2017-07-24 23:13:14 +0530167
Gunnar Mills94df8c92018-09-14 14:50:03 -0500168 /** @brief Sends a message to host control command handler to reset OCC
169 */
170 void resetOCC();
Vishwanatha Subbanna307d80b2017-06-28 15:56:09 +0530171};
172
173} // namespace occ
174} // namespace open_power