Vishwanatha Subbanna | 307d80b | 2017-06-28 15:56:09 +0530 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 3 | #include "i2c_occ.hpp" |
| 4 | #include "occ_device.hpp" |
| 5 | #include "occ_events.hpp" |
| 6 | |
Vishwanatha Subbanna | 2dc9b1a | 2017-08-18 18:29:41 +0530 | [diff] [blame] | 7 | #include <functional> |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 8 | #include <org/open_power/Control/Host/server.hpp> |
| 9 | #include <org/open_power/OCC/Status/server.hpp> |
Vishwanatha Subbanna | 307d80b | 2017-06-28 15:56:09 +0530 | [diff] [blame] | 10 | #include <sdbusplus/bus.hpp> |
| 11 | #include <sdbusplus/server/object.hpp> |
Lei YU | 0ab90ca | 2017-07-13 17:02:23 +0800 | [diff] [blame] | 12 | |
Vishwanatha Subbanna | 307d80b | 2017-06-28 15:56:09 +0530 | [diff] [blame] | 13 | namespace open_power |
| 14 | { |
| 15 | namespace occ |
| 16 | { |
| 17 | |
Edward A. James | 636577f | 2017-10-06 10:53:55 -0500 | [diff] [blame] | 18 | class Manager; |
Vishwanatha Subbanna | 307d80b | 2017-06-28 15:56:09 +0530 | [diff] [blame] | 19 | namespace Base = sdbusplus::org::open_power::OCC::server; |
| 20 | using Interface = sdbusplus::server::object::object<Base::Status>; |
| 21 | |
Vishwanatha Subbanna | 30e329a | 2017-07-24 23:13:14 +0530 | [diff] [blame] | 22 | // IPMID's host control application |
| 23 | namespace Control = sdbusplus::org::open_power::Control::server; |
| 24 | |
| 25 | // For waiting on signals |
| 26 | namespace sdbusRule = sdbusplus::bus::match::rules; |
| 27 | |
Vishwanatha Subbanna | 6add0b8 | 2017-07-21 19:02:37 +0530 | [diff] [blame] | 28 | // OCC status instance. Ex. for "occ0", the instance is 0 |
| 29 | using instanceID = int; |
| 30 | |
| 31 | // IPMI sensor ID for a given OCC instance |
| 32 | using sensorID = uint8_t; |
| 33 | |
Alexander Filippov | 1d69e19 | 2019-03-21 18:12:07 +0300 | [diff] [blame] | 34 | // Human readable sensor name for DBus tree. E.g. "CPU0_OCC" |
| 35 | using sensorName = std::string; |
| 36 | |
| 37 | // OCC sensors definitions in the map |
| 38 | using sensorDefs = std::tuple<sensorID, sensorName>; |
| 39 | |
Eddie James | e7d976b | 2018-02-26 13:42:45 -0600 | [diff] [blame] | 40 | // OCC sysfs name prefix |
| 41 | const std::string sysfsName = "occ-hwmon"; |
| 42 | |
Vishwanatha Subbanna | 307d80b | 2017-06-28 15:56:09 +0530 | [diff] [blame] | 43 | /** @class Status |
| 44 | * @brief Implementation of OCC Active Status |
| 45 | */ |
| 46 | class Status : public Interface |
| 47 | { |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 48 | 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 Subbanna | 307d80b | 2017-06-28 15:56:09 +0530 | [diff] [blame] | 55 | |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 56 | /** @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 |
| 65 | */ |
| 66 | Status(sdbusplus::bus::bus& bus, EventPtr& event, const char* path, |
| 67 | const Manager& manager, |
| 68 | std::function<void(bool)> callBack = nullptr) : |
Alexander Filippov | 1d69e19 | 2019-03-21 18:12:07 +0300 | [diff] [blame] | 69 | Interface(bus, getDbusPath(path).c_str(), true), |
| 70 | bus(bus), path(path), callBack(callBack), instance(getInstance(path)), |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 71 | device(event, |
Lei YU | 0ab90ca | 2017-07-13 17:02:23 +0800 | [diff] [blame] | 72 | #ifdef I2C_OCC |
Eddie James | 774f9af | 2019-03-19 20:58:53 +0000 | [diff] [blame] | 73 | fs::path(DEV_PATH) / i2c_occ::getI2cDeviceName(path), |
Lei YU | 0ab90ca | 2017-07-13 17:02:23 +0800 | [diff] [blame] | 74 | #else |
Eddie James | 774f9af | 2019-03-19 20:58:53 +0000 | [diff] [blame] | 75 | fs::path(DEV_PATH) / |
| 76 | fs::path(sysfsName + "." + std::to_string(instance + 1)), |
Lei YU | 0ab90ca | 2017-07-13 17:02:23 +0800 | [diff] [blame] | 77 | #endif |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 78 | manager, *this, |
| 79 | std::bind(std::mem_fn(&Status::deviceErrorHandler), this, |
| 80 | std::placeholders::_1)), |
| 81 | hostControlSignal( |
| 82 | bus, |
| 83 | sdbusRule::type::signal() + sdbusRule::member("CommandComplete") + |
| 84 | sdbusRule::path("/org/open_power/control/host0") + |
| 85 | sdbusRule::interface("org.open_power.Control.Host") + |
| 86 | sdbusRule::argN(0, Control::convertForMessage( |
| 87 | Control::Host::Command::OCCReset)), |
| 88 | std::bind(std::mem_fn(&Status::hostControlEvent), this, |
| 89 | std::placeholders::_1)) |
| 90 | { |
| 91 | // Check to see if we have OCC already bound. If so, just set it |
| 92 | if (device.bound()) |
Vishwanatha Subbanna | 307d80b | 2017-06-28 15:56:09 +0530 | [diff] [blame] | 93 | { |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 94 | this->occActive(true); |
Vishwanatha Subbanna | 307d80b | 2017-06-28 15:56:09 +0530 | [diff] [blame] | 95 | } |
| 96 | |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 97 | // Announce that we are ready |
| 98 | this->emit_object_added(); |
| 99 | } |
Vishwanatha Subbanna | 32e84e9 | 2017-06-28 19:17:28 +0530 | [diff] [blame] | 100 | |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 101 | /** @brief Since we are overriding the setter-occActive but not the |
| 102 | * getter-occActive, we need to have this using in order to |
| 103 | * allow passthrough usage of the getter-occActive |
| 104 | */ |
| 105 | using Base::Status::occActive; |
Vishwanatha Subbanna | 32e84e9 | 2017-06-28 19:17:28 +0530 | [diff] [blame] | 106 | |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 107 | /** @brief SET OccActive to True or False |
| 108 | * |
| 109 | * @param[in] value - Intended value |
| 110 | * |
| 111 | * @return - Updated value of the property |
| 112 | */ |
| 113 | bool occActive(bool value) override; |
Vishwanatha Subbanna | 2dc9b1a | 2017-08-18 18:29:41 +0530 | [diff] [blame] | 114 | |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 115 | /** @brief Starts OCC error detection */ |
| 116 | inline void addErrorWatch() |
| 117 | { |
| 118 | return device.addErrorWatch(); |
| 119 | } |
Vishwanatha Subbanna | 2dc9b1a | 2017-08-18 18:29:41 +0530 | [diff] [blame] | 120 | |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 121 | /** @brief Stops OCC error detection */ |
| 122 | inline void removeErrorWatch() |
| 123 | { |
| 124 | return device.removeErrorWatch(); |
| 125 | } |
Eddie James | dae2d94 | 2017-12-20 10:50:03 -0600 | [diff] [blame] | 126 | |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 127 | /** @brief Starts to watch how many OCCs are present on the master */ |
| 128 | inline void addPresenceWatchMaster() |
| 129 | { |
| 130 | return device.addPresenceWatchMaster(); |
| 131 | } |
Vishwanatha Subbanna | 30e329a | 2017-07-24 23:13:14 +0530 | [diff] [blame] | 132 | |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 133 | private: |
| 134 | /** @brief sdbus handle */ |
| 135 | sdbusplus::bus::bus& bus; |
Vishwanatha Subbanna | 30e329a | 2017-07-24 23:13:14 +0530 | [diff] [blame] | 136 | |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 137 | /** @brief OCC dbus object path */ |
| 138 | std::string path; |
Vishwanatha Subbanna | 32e84e9 | 2017-06-28 19:17:28 +0530 | [diff] [blame] | 139 | |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 140 | /** @brief Callback handler to be invoked during property change. |
| 141 | * This is a handler in Manager class |
| 142 | */ |
| 143 | std::function<void(bool)> callBack; |
Vishwanatha Subbanna | 2dc9b1a | 2017-08-18 18:29:41 +0530 | [diff] [blame] | 144 | |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 145 | /** @brief OCC instance number. Ex, 0,1, etc */ |
| 146 | int instance; |
Vishwanatha Subbanna | 6add0b8 | 2017-07-21 19:02:37 +0530 | [diff] [blame] | 147 | |
Alexander Filippov | 1d69e19 | 2019-03-21 18:12:07 +0300 | [diff] [blame] | 148 | /** @brief OCC instance to Sensor definitions mapping */ |
| 149 | static const std::map<instanceID, sensorDefs> sensorMap; |
Vishwanatha Subbanna | 6add0b8 | 2017-07-21 19:02:37 +0530 | [diff] [blame] | 150 | |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 151 | /** @brief OCC device object to do bind and unbind */ |
| 152 | Device device; |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 153 | |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 154 | /** @brief Subscribe to host control signal |
| 155 | * |
| 156 | * Once the OCC reset is requested, BMC sends that message to host. |
| 157 | * If the host does not ack the message, then there would be a timeout |
| 158 | * and we need to catch that to log an error |
| 159 | **/ |
| 160 | sdbusplus::bus::match_t hostControlSignal; |
Vishwanatha Subbanna | 30e329a | 2017-07-24 23:13:14 +0530 | [diff] [blame] | 161 | |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 162 | /** @brief Callback handler when device errors are detected |
| 163 | * |
| 164 | * @param[in] error - True if an error is reported, false otherwise |
| 165 | */ |
| 166 | void deviceErrorHandler(bool error); |
Vishwanatha Subbanna | 30e329a | 2017-07-24 23:13:14 +0530 | [diff] [blame] | 167 | |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 168 | /** @brief Callback function on host control signals |
| 169 | * |
| 170 | * @param[in] msg - Data associated with subscribed signal |
| 171 | */ |
| 172 | void hostControlEvent(sdbusplus::message::message& msg); |
Vishwanatha Subbanna | 30e329a | 2017-07-24 23:13:14 +0530 | [diff] [blame] | 173 | |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 174 | /** @brief Sends a message to host control command handler to reset OCC |
| 175 | */ |
| 176 | void resetOCC(); |
Alexander Filippov | 1d69e19 | 2019-03-21 18:12:07 +0300 | [diff] [blame] | 177 | |
| 178 | /** @brief Determines the instance ID by specified object path. |
| 179 | * @param[in] path Estimated OCC Dbus object path |
| 180 | * @return Instance number |
| 181 | */ |
| 182 | static int getInstance(const std::string& path) |
| 183 | { |
| 184 | return (path.empty() ? 0 : path.back() - '0'); |
| 185 | } |
| 186 | |
| 187 | /** @brief Override the sensor name with name from the definition. |
| 188 | * @param[in] estimatedPath - Estimated OCC Dbus object path |
| 189 | * @return Fixed OCC DBus object path |
| 190 | */ |
| 191 | static std::string getDbusPath(const std::string& estimatedPath) |
| 192 | { |
| 193 | if (!estimatedPath.empty()) |
| 194 | { |
| 195 | auto it = sensorMap.find(getInstance(estimatedPath)); |
| 196 | if (sensorMap.end() != it) |
| 197 | { |
| 198 | auto& name = std::get<1>(it->second); |
| 199 | if (!name.empty() && name != "None") |
| 200 | { |
| 201 | auto path = fs::path(estimatedPath); |
| 202 | path.replace_filename(name); |
| 203 | return path.string(); |
| 204 | } |
| 205 | } |
| 206 | } |
| 207 | |
| 208 | return estimatedPath; |
| 209 | } |
Vishwanatha Subbanna | 307d80b | 2017-06-28 15:56:09 +0530 | [diff] [blame] | 210 | }; |
| 211 | |
| 212 | } // namespace occ |
| 213 | } // namespace open_power |